diff --git a/.gitignore b/.gitignore index fdc5c45..5a5fbbb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ /.vscode /font-builder/src/*.otd /font-builder/out -/bin/merge-otd.exe -/bin32/merge-otd.exe +/bin-win*/merge-otd.exe /release diff --git a/README.md b/README.md index acd55ac..173d035 100644 --- a/README.md +++ b/README.md @@ -52,12 +52,12 @@ 用 GCC ```bash -g++ src/merge-otd.cpp src/iostream.cpp -Isrc/ -std=c++14 -O2 -o merge-otd +g++ src/merge-otd.cpp src/iostream.cpp -Isrc/ -std=c++17 -O2 -o merge-otd ``` 或者用 Visual C++ ```cmd -cl src\merge-otd.cpp src\iostream.cpp /Isrc\ /std:c++14 /EHsc /O2 /Fe:merge-otd.exe +cl src\merge-otd.cpp src\iostream.cpp /Isrc\ /std:c++17 /EHsc /O2 /Fe:merge-otd.exe ``` ### 运行(需要 [otfcc](https://github.com/caryll/otfcc)) @@ -66,7 +66,7 @@ cl src\merge-otd.cpp src\iostream.cpp /Isrc\ /std:c++14 /EHsc /O2 /Fe:merge-otd. ```bash otfccdump 西文字体.ttf -o base.otd otfccdump 中文字体.ttf -o cjk.otd -merge-otd base.otd cjk.otd +./merge-otd base.otd cjk.otd otfccbuild base.otd -O2 -o 合并之后的字体.ttf rm *.otd ``` @@ -76,7 +76,7 @@ rm *.otd otfccdump 需要补全的字体.ttf -o base.otd otfccdump 收字很全的西文字体.ttf -o latin.otd otfccdump 收字很全的中文字体.ttf -o cjk.otd -merge-otd base.otd latin.otd cjk.otd +./merge-otd base.otd latin.otd cjk.otd otfccbuild base.otd -O2 -o 补全之后的字体.ttf rm *.otd ``` @@ -92,7 +92,7 @@ otfccdump 基本汉字.ttf -o 5.otd otfccdump 扩展汉字.ttf -o 6.otd otfccdump 谚文.ttf -o 7.otd otfccdump 其他CJK符号.ttf -o 8.otd -merge-otd base.otd 1.otd 2.otd 3.otd 4.otd 5.otd 6.otd 7.otd 8.otd +./merge-otd base.otd 1.otd 2.otd 3.otd 4.otd 5.otd 6.otd 7.otd 8.otd otfccbuild base.otd -O2 -o 合并之后的字体.ttf rm *.otd ``` diff --git a/bin32/otfccbuild.exe b/bin-win32/otfccbuild.exe similarity index 100% rename from bin32/otfccbuild.exe rename to bin-win32/otfccbuild.exe diff --git a/bin32/otfccdump.exe b/bin-win32/otfccdump.exe similarity index 100% rename from bin32/otfccdump.exe rename to bin-win32/otfccdump.exe diff --git a/bin/otfccbuild.exe b/bin-win64/otfccbuild.exe similarity index 100% rename from bin/otfccbuild.exe rename to bin-win64/otfccbuild.exe diff --git a/bin/otfccdump.exe b/bin-win64/otfccdump.exe similarity index 100% rename from bin/otfccdump.exe rename to bin-win64/otfccdump.exe diff --git a/build-win32.bash b/build-win32.bash new file mode 100644 index 0000000..5d7f6b0 --- /dev/null +++ b/build-win32.bash @@ -0,0 +1,27 @@ +#! /bin/bash + +VERSION=0.2.3-32bit + +i686-w64-mingw32-g++ src/merge-otd.cpp src/iostream.cpp -Isrc/ -std=c++17 -O3 -static -Wl,--large-address-aware -o bin-win32/merge-otd.exe +strip bin-win32/merge-otd.exe + +mkdir -p release +cd release + + +R=字体合并补全工具-简体中文标准字库-$VERSION + +mkdir -p $R + +cp ../script-windows/link.url $R/主页-使用说明.url +cp ../script-windows/fonts.url $R/获取更多字体.url +cp ../bin-win32/{otfccbuild,otfccdump,merge-otd}.exe $R/ +cp ../script-windows/comp.bat $R/补全.bat +cp ../script-windows/merge.bat $R/合并.bat +cp ../script-windows/merge+comp.bat $R/合并补全.bat +cp ../script-windows/pack-zh.bat $R/打包.bat +cp ../font/Nowar-Sans-CJK-CN-Medium.ttf $R/cjk.ttf +cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf + +7z a -mx -myx -ms=on WarFontMerger-SC2-$VERSION.7z $R/ +rar a -ma5 -m5 -s $R.rar $R/ diff --git a/build-win64.bash b/build-win64.bash new file mode 100644 index 0000000..c070d4a --- /dev/null +++ b/build-win64.bash @@ -0,0 +1,99 @@ +#! /bin/bash + +VERSION=0.2.3 + +x86_64-w64-mingw32-g++ src/merge-otd.cpp src/iostream.cpp -Isrc/ -std=c++17 -O3 -static -o bin-win64/merge-otd.exe +strip bin-win64/merge-otd.exe + +mkdir -p release +cd release + + +R=字体合并补全工具-简体中文压缩字库-$VERSION + +mkdir -p $R + +cp ../script-windows/link.url $R/主页-使用说明.url +cp ../script-windows/fonts.url $R/获取更多字体.url +cp ../bin-win64/{otfccbuild,otfccdump,merge-otd}.exe $R/ +cp ../script-windows/comp.bat $R/补全.bat +cp ../script-windows/merge.bat $R/合并.bat +cp ../script-windows/merge+comp.bat $R/合并补全.bat +cp ../script-windows/pack-zh.bat $R/打包.bat +cp ../font/Nowar-Sans-CJK-XS-Regular.ttf $R/cjk.ttf +cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf + +7z a -mx -myx -ms=on WarFontMerger-SC1-$VERSION.7z $R/ +rar a -ma5 -m5 -s $R.rar $R/ + + +R=字体合并补全工具-简体中文标准字库-$VERSION + +mkdir -p $R + +cp ../script-windows/link.url $R/主页-使用说明.url +cp ../script-windows/fonts.url $R/获取更多字体.url +cp ../bin-win64/{otfccbuild,otfccdump,merge-otd}.exe $R/ +cp ../script-windows/comp.bat $R/补全.bat +cp ../script-windows/merge.bat $R/合并.bat +cp ../script-windows/merge+comp.bat $R/合并补全.bat +cp ../script-windows/pack-zh.bat $R/打包.bat +cp ../font/Nowar-Sans-CJK-CN-Medium.ttf $R/cjk.ttf +cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf + +7z a -mx -myx -ms=on WarFontMerger-SC2-$VERSION.7z $R/ +rar a -ma5 -m5 -s $R.rar $R/ + + +R=字体合并补全工具-简体中文大字库-$VERSION + +mkdir -p $R + +cp ../script-windows/link.url $R/主页-使用说明.url +cp ../script-windows/fonts.url $R/获取更多字体.url +cp ../bin-win64/{otfccbuild,otfccdump,merge-otd}.exe $R/ +cp ../script-windows/comp.bat $R/补全.bat +cp ../script-windows/merge.bat $R/合并.bat +cp ../script-windows/merge+comp.bat $R/合并补全.bat +cp ../script-windows/pack.bat $R/打包.bat +cp ../font/Nowar-Sans-CJK-SC-Medium.ttf $R/cjk.ttf +cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf + +7z a -mx -myx -ms=on WarFontMerger-SC3-$VERSION.7z $R/ +rar a -ma5 -m5 -s $R.rar $R/ + + +R=字型合併補全工具-繁體中文大字庫-$VERSION + +mkdir -p $R + +cp ../script-windows/link.url $R/主頁-使用說明\(簡體\).url +cp ../script-windows/fonts.url $R/獲取更多字型\(簡體\).url +cp ../bin-win64/{otfccbuild,otfccdump,merge-otd}.exe $R/ +cp ../script-windows/comp.bat $R/補全.bat +cp ../script-windows/merge.bat $R/合併.bat +cp ../script-windows/merge+comp.bat $R/合併補全.bat +cp ../script-windows/pack.bat $R/打包.bat +cp ../font/Nowar-Sans-CJK-TC-Medium.ttf $R/cjk.ttf +cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf + +7z a -mx -myx -ms=on WarFontMerger-TC-$VERSION.7z $R/ +rar a -ma5 -m5 -s $R.rar $R/ + + +R=字型合併補全工具-傳統字形大字庫-$VERSION + +mkdir -p $R + +cp ../script-windows/link.url $R/主頁-使用說明\(簡體\).url +cp ../script-windows/fonts.url $R/獲取更多字型\(簡體\).url +cp ../bin-win64/{otfccbuild,otfccdump,merge-otd}.exe $R/ +cp ../script-windows/comp.bat $R/補全.bat +cp ../script-windows/merge.bat $R/合併.bat +cp ../script-windows/merge+comp.bat $R/合併補全.bat +cp ../script-windows/pack.bat $R/打包.bat +cp ../font/Nowar-Sans-CJK-CL-Medium.ttf $R/cjk.ttf +cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf + +7z a -mx -myx -ms=on WarFontMerger-Classic-$VERSION.7z $R/ +rar a -ma5 -m5 -s $R.rar $R/ diff --git a/build.bash b/build.bash deleted file mode 100644 index 7629843..0000000 --- a/build.bash +++ /dev/null @@ -1,97 +0,0 @@ -VERSION=0.2.2 - -x86_64-w64-mingw32-g++ src/merge-otd.cpp src/iostream.cpp -Isrc/ -std=c++14 -O3 -static -o bin/merge-otd.exe -strip bin/merge-otd.exe - -mkdir -p release -cd release - - -R=字体合并补全工具-简体中文压缩字库-$VERSION - -mkdir -p $R - -cp ../script/link.url $R/主页-使用说明.url -cp ../script/fonts.url $R/获取更多字体.url -cp ../bin/{otfccbuild,otfccdump,merge-otd}.exe $R/ -cp ../script/comp.bat $R/补全.bat -cp ../script/merge.bat $R/合并.bat -cp ../script/merge+comp.bat $R/合并补全.bat -cp ../script/pack-zh.bat $R/打包.bat -cp ../font/Nowar-Sans-CJK-XS-Regular.ttf $R/cjk.ttf -cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf - -7z a -mx -myx -ms=on WarFontMerger-SC1-$VERSION.7z $R/ -rar a -ma5 -m5 -s $R.rar $R/ - - -R=字体合并补全工具-简体中文标准字库-$VERSION - -mkdir -p $R - -cp ../script/link.url $R/主页-使用说明.url -cp ../script/fonts.url $R/获取更多字体.url -cp ../bin/{otfccbuild,otfccdump,merge-otd}.exe $R/ -cp ../script/comp.bat $R/补全.bat -cp ../script/merge.bat $R/合并.bat -cp ../script/merge+comp.bat $R/合并补全.bat -cp ../script/pack-zh.bat $R/打包.bat -cp ../font/Nowar-Sans-CJK-CN-Medium.ttf $R/cjk.ttf -cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf - -7z a -mx -myx -ms=on WarFontMerger-SC2-$VERSION.7z $R/ -rar a -ma5 -m5 -s $R.rar $R/ - - -R=字体合并补全工具-简体中文大字库-$VERSION - -mkdir -p $R - -cp ../script/link.url $R/主页-使用说明.url -cp ../script/fonts.url $R/获取更多字体.url -cp ../bin/{otfccbuild,otfccdump,merge-otd}.exe $R/ -cp ../script/comp.bat $R/补全.bat -cp ../script/merge.bat $R/合并.bat -cp ../script/merge+comp.bat $R/合并补全.bat -cp ../script/pack.bat $R/打包.bat -cp ../font/Nowar-Sans-CJK-SC-Medium.ttf $R/cjk.ttf -cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf - -7z a -mx -myx -ms=on WarFontMerger-SC3-$VERSION.7z $R/ -rar a -ma5 -m5 -s $R.rar $R/ - - -R=字型合併補全工具-繁體中文大字庫-$VERSION - -mkdir -p $R - -cp ../script/link.url $R/主頁-使用說明\(簡體\).url -cp ../script/fonts.url $R/獲取更多字型\(簡體\).url -cp ../bin/{otfccbuild,otfccdump,merge-otd}.exe $R/ -cp ../script/comp.bat $R/補全.bat -cp ../script/merge.bat $R/合併.bat -cp ../script/merge+comp.bat $R/合併補全.bat -cp ../script/pack.bat $R/打包.bat -cp ../font/Nowar-Sans-CJK-TC-Medium.ttf $R/cjk.ttf -cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf - -7z a -mx -myx -ms=on WarFontMerger-TC-$VERSION.7z $R/ -rar a -ma5 -m5 -s $R.rar $R/ - - -R=字型合併補全工具-傳統字形大字庫-$VERSION - -mkdir -p $R - -cp ../script/link.url $R/主頁-使用說明\(簡體\).url -cp ../script/fonts.url $R/獲取更多字型\(簡體\).url -cp ../bin/{otfccbuild,otfccdump,merge-otd}.exe $R/ -cp ../script/comp.bat $R/補全.bat -cp ../script/merge.bat $R/合併.bat -cp ../script/merge+comp.bat $R/合併補全.bat -cp ../script/pack.bat $R/打包.bat -cp ../font/Nowar-Sans-CJK-CL-Medium.ttf $R/cjk.ttf -cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf - -7z a -mx -myx -ms=on WarFontMerger-Classic-$VERSION.7z $R/ -rar a -ma5 -m5 -s $R.rar $R/ diff --git a/build32.bash b/build32.bash deleted file mode 100644 index 80e62af..0000000 --- a/build32.bash +++ /dev/null @@ -1,25 +0,0 @@ -VERSION=0.2.2-32bit - -i686-w64-mingw32-g++ src/merge-otd.cpp src/iostream.cpp -Isrc/ -std=c++14 -O3 -static -Wl,--large-address-aware -o bin32/merge-otd.exe -strip bin32/merge-otd.exe - -mkdir -p release -cd release - - -R=字体合并补全工具-简体中文标准字库-$VERSION - -mkdir -p $R - -cp ../script/link.url $R/主页-使用说明.url -cp ../script/fonts.url $R/获取更多字体.url -cp ../bin32/{otfccbuild,otfccdump,merge-otd}.exe $R/ -cp ../script/comp.bat $R/补全.bat -cp ../script/merge.bat $R/合并.bat -cp ../script/merge+comp.bat $R/合并补全.bat -cp ../script/pack-zh.bat $R/打包.bat -cp ../font/Nowar-Sans-CJK-CN-Medium.ttf $R/cjk.ttf -cp ../font/Nowar-Sans-LCG-Medium.ttf $R/latin.ttf - -7z a -mx -myx -ms=on WarFontMerger-SC2-$VERSION.7z $R/ -rar a -ma5 -m5 -s $R.rar $R/ diff --git a/font/a.json b/font/a.json new file mode 100644 index 0000000..dbd8650 --- /dev/null +++ b/font/a.json @@ -0,0 +1,21847 @@ +{ + "head": { + "version": 1.0, + "fontRevision": 2.0, + "flags": { + "baselineAtY_0": true, + "lsbAtX_0": true, + "instrMayDependOnPointSize": true + }, + "unitsPerEm": 1000, + "created": 3540941439, + "modified": 3629645822, + "xMin": -664, + "xMax": 2802, + "yMin": -665, + "yMax": 1486, + "macStyle": {}, + "lowestRecPPEM": 6, + "fontDirectoryHint": 2, + "indexToLocFormat": 1, + "glyphDataFormat": 0 + }, + "hhea": { + "version": 1.0, + "ascender": 1069, + "descender": -293, + "lineGap": 0, + "advanceWidthMax": 2840, + "minLeftSideBearing": -664, + "minRightSideBearing": -995, + "xMaxExtent": 2802, + "caretSlopeRise": 1, + "caretSlopeRun": 0, + "caretOffset": 0 + }, + "maxp": { + "version": 1.0, + "numGlyphs": 2834, + "maxPoints": 202, + "maxContours": 24, + "maxCompositePoints": 273, + "maxCompositeContours": 21, + "maxZones": 2, + "maxTwilightPoints": 152, + "maxStorage": 170, + "maxFunctionDefs": 139, + "maxInstructionDefs": 0, + "maxStackElements": 393, + "maxSizeOfInstructions": 0, + "maxComponentElements": 8, + "maxComponentDepth": 2 + }, + "post": { + "version": 3.0, + "italicAngle": 0, + "underlinePosition": -100, + "underlineThickness": 50, + "isFixedPitch": false, + "minMemType42": 0, + "maxMemType42": 2834, + "minMemType1": 0, + "maxMemType1": 0 + }, + "OS_2": { + "version": 4, + "xAvgCharWidth": 496, + "usWeightClass": 500, + "usWidthClass": 4, + "fsType": {}, + "ySubscriptXSize": 650, + "ySubscriptYSize": 600, + "ySubscriptXOffset": 0, + "ySubscriptYOffset": 75, + "ySupscriptXSize": 650, + "ySupscriptYSize": 600, + "ySupscriptXOffset": 0, + "ySupscriptYOffset": 350, + "yStrikeoutSize": 50, + "yStrikeoutPosition": 322, + "sFamilyClass": 0, + "panose": [ + 2, + 11, + 6, + 2, + 4, + 5, + 4, + 2, + 2, + 4 + ], + "ulUnicodeRange1": { + "Basic_Latin": true, + "Latin_1_Supplement": true, + "Latin_Extended_A": true, + "Latin_Extended_B": true, + "Phonetics": true, + "Spacing_Modifiers": true, + "Combining_Diacritical_Marks": true, + "Greek_and_Coptic": true, + "Cyrillic": true, + "Latin_Extended_Additional": true, + "Greek_Extended": true, + "Punctuations": true + }, + "ulUnicodeRange2": { + "Superscripts_And_Subscripts": true, + "Currency_Symbols": true, + "Combining_Diacritical_Marks_For_Symbols": true, + "Letterlike_Symbols": true, + "Number_Forms": true, + "Alphabetic_Presentation_Forms": true + }, + "ulUnicodeRange3": { + "Combining_Half_Marks": true, + "Arabic_Presentation_Forms_B": true, + "Specials": true, + "Variation_Selectors": true + }, + "ulUnicodeRange4": { + "Kayah_Li": true + }, + "achVendID": "Cyan", + "fsSelection": { + "regular": true, + "wws": true + }, + "usFirstCharIndex": 13, + "usLastCharIndex": 65533, + "sTypoAscender": 1069, + "sTypoDescender": -293, + "sTypoLineGap": 0, + "usWinAscent": 1069, + "usWinDescent": 293, + "ulCodePageRange1": {}, + "ulCodePageRange2": {}, + "sxHeight": 536, + "sCapHeight": 714, + "usDefaultChar": 0, + "usBreakChar": 32, + "usMaxContext": 1, + "usLowerOpticalPointSize": 0, + "usUpperOpticalPointSize": 0 + }, + "name": [ + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 0, + "nameString": "Copyright © 2018—2019 Cyano Hao, with reserved font name “Nowar”, “有爱”, and “有愛”. Portions Copyright 2015 Google Inc." + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 1, + "nameString": "Nowar Sans (Latin, Кириллица and Ελληνικό) Medium" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 2, + "nameString": "Regular" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 3, + "nameString": "Nowar Sans (Latin, Кириллица and Ελληνικό) Medium 0.4.0" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 4, + "nameString": "Nowar Sans (Latin, Кириллица and Ελληνικό) Medium" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 5, + "nameString": "0.4.0" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 6, + "nameString": "Nowar-Sans-LCG-Medium" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 8, + "nameString": "Cyano Hao" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 9, + "nameString": "Monotype Design Team" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 11, + "nameString": "https://github.com/CyanoHao" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 13, + "nameString": "This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software." + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 14, + "nameString": "http://scripts.sil.org/OFL" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 16, + "nameString": "Nowar Sans (Latin, Кириллица and Ελληνικό)" + }, + { + "platformID": 3, + "encodingID": 1, + "languageID": 1033, + "nameID": 17, + "nameString": "Medium" + } + ], + "cmap": { + "13": ".notdef", + "32": "space", + "33": "exclam", + "34": "quotedbl", + "35": "numbersign", + "36": "dollar", + "37": "percent", + "38": "ampersand", + "39": "quotesingle", + "40": "parenleft", + "41": "parenright", + "42": "asterisk", + "43": "plus", + "44": "comma", + "45": "hyphen", + "46": "period", + "47": "slash", + "48": "zero", + "49": "one", + "50": "two", + "51": "three", + "52": "four", + "53": "five", + "54": "six", + "55": "seven", + "56": "eight", + "57": "nine", + "58": "colon", + "59": "semicolon", + "60": "less", + "61": "equal", + "62": "greater", + "63": "question", + "64": "at", + "65": "A", + "66": "B", + "67": "C", + "68": "D", + "69": "E", + "70": "F", + "71": "G", + "72": "H", + "73": "I", + "74": "J", + "75": "K", + "76": "L", + "77": "M", + "78": "N", + "79": "O", + "80": "P", + "81": "Q", + "82": "R", + "83": "S", + "84": "T", + "85": "U", + "86": "V", + "87": "W", + "88": "X", + "89": "Y", + "90": "Z", + "91": "bracketleft", + "92": "backslash", + "93": "bracketright", + "94": "asciicircum", + "95": "underscore", + "96": "grave", + "97": "a", + "98": "b", + "99": "c", + "100": "d", + "101": "e", + "102": "f", + "103": "g", + "104": "h", + "105": "i", + "106": "j", + "107": "k", + "108": "l", + "109": "m", + "110": "n", + "111": "o", + "112": "p", + "113": "q", + "114": "r", + "115": "s", + "116": "t", + "117": "u", + "118": "v", + "119": "w", + "120": "x", + "121": "y", + "122": "z", + "123": "braceleft", + "124": "bar", + "125": "braceright", + "126": "asciitilde", + "160": "uni00A0", + "161": "exclamdown", + "162": "cent", + "163": "sterling", + "164": "currency", + "165": "yen", + "166": "brokenbar", + "167": "section", + "168": "dieresis", + "169": "copyright", + "170": "ordfeminine", + "171": "guillemotleft", + "172": "logicalnot", + "173": "uni00AD", + "174": "registered", + "175": "macron", + "176": "degree", + "177": "plusminus", + "178": "uni00B2", + "179": "uni00B3", + "180": "acute", + "181": "mu", + "182": "paragraph", + "183": "periodcentered", + "184": "cedilla", + "185": "uni00B9", + "186": "ordmasculine", + "187": "guillemotright", + "188": "onequarter", + "189": "onehalf", + "190": "threequarters", + "191": "questiondown", + "192": "Agrave", + "193": "Aacute", + "194": "Acircumflex", + "195": "Atilde", + "196": "Adieresis", + "197": "Aring", + "198": "AE", + "199": "Ccedilla", + "200": "Egrave", + "201": "Eacute", + "202": "Ecircumflex", + "203": "Edieresis", + "204": "Igrave", + "205": "Iacute", + "206": "Icircumflex", + "207": "Idieresis", + "208": "Eth", + "209": "Ntilde", + "210": "Ograve", + "211": "Oacute", + "212": "Ocircumflex", + "213": "Otilde", + "214": "Odieresis", + "215": "multiply", + "216": "Oslash", + "217": "Ugrave", + "218": "Uacute", + "219": "Ucircumflex", + "220": "Udieresis", + "221": "Yacute", + "222": "Thorn", + "223": "germandbls", + "224": "agrave", + "225": "aacute", + "226": "acircumflex", + "227": "atilde", + "228": "adieresis", + "229": "aring", + "230": "ae", + "231": "ccedilla", + "232": "egrave", + "233": "eacute", + "234": "ecircumflex", + "235": "edieresis", + "236": "igrave", + "237": "iacute", + "238": "icircumflex", + "239": "idieresis", + "240": "eth", + "241": "ntilde", + "242": "ograve", + "243": "oacute", + "244": "ocircumflex", + "245": "otilde", + "246": "odieresis", + "247": "divide", + "248": "oslash", + "249": "ugrave", + "250": "uacute", + "251": "ucircumflex", + "252": "udieresis", + "253": "yacute", + "254": "thorn", + "255": "ydieresis", + "256": "Amacron", + "257": "amacron", + "258": "Abreve", + "259": "abreve", + "260": "Aogonek", + "261": "aogonek", + "262": "Cacute", + "263": "cacute", + "264": "Ccircumflex", + "265": "ccircumflex", + "266": "Cdotaccent", + "267": "cdotaccent", + "268": "Ccaron", + "269": "ccaron", + "270": "Dcaron", + "271": "dcaron", + "272": "Dcroat", + "273": "dcroat", + "274": "Emacron", + "275": "emacron", + "276": "Ebreve", + "277": "ebreve", + "278": "Edotaccent", + "279": "edotaccent", + "280": "Eogonek", + "281": "eogonek", + "282": "Ecaron", + "283": "ecaron", + "284": "Gcircumflex", + "285": "gcircumflex", + "286": "Gbreve", + "287": "gbreve", + "288": "Gdotaccent", + "289": "gdotaccent", + "290": "uni0122", + "291": "uni0123", + "292": "Hcircumflex", + "293": "hcircumflex", + "294": "Hbar", + "295": "hbar", + "296": "Itilde", + "297": "itilde", + "298": "Imacron", + "299": "imacron", + "300": "Ibreve", + "301": "ibreve", + "302": "Iogonek", + "303": "iogonek", + "304": "Idotaccent", + "305": "dotlessi", + "306": "IJ", + "307": "ij", + "308": "Jcircumflex", + "309": "jcircumflex", + "310": "uni0136", + "311": "uni0137", + "312": "kgreenlandic", + "313": "Lacute", + "314": "lacute", + "315": "uni013B", + "316": "uni013C", + "317": "Lcaron", + "318": "lcaron", + "319": "Ldot", + "320": "ldot", + "321": "Lslash", + "322": "lslash", + "323": "Nacute", + "324": "nacute", + "325": "uni0145", + "326": "uni0146", + "327": "Ncaron", + "328": "ncaron", + "329": "napostrophe", + "330": "Eng", + "331": "eng", + "332": "Omacron", + "333": "omacron", + "334": "Obreve", + "335": "obreve", + "336": "Ohungarumlaut", + "337": "ohungarumlaut", + "338": "OE", + "339": "oe", + "340": "Racute", + "341": "racute", + "342": "uni0156", + "343": "uni0157", + "344": "Rcaron", + "345": "rcaron", + "346": "Sacute", + "347": "sacute", + "348": "Scircumflex", + "349": "scircumflex", + "350": "Scedilla", + "351": "scedilla", + "352": "Scaron", + "353": "scaron", + "354": "uni0162", + "355": "uni0163", + "356": "Tcaron", + "357": "tcaron", + "358": "Tbar", + "359": "tbar", + "360": "Utilde", + "361": "utilde", + "362": "Umacron", + "363": "umacron", + "364": "Ubreve", + "365": "ubreve", + "366": "Uring", + "367": "uring", + "368": "Uhungarumlaut", + "369": "uhungarumlaut", + "370": "Uogonek", + "371": "uogonek", + "372": "Wcircumflex", + "373": "wcircumflex", + "374": "Ycircumflex", + "375": "ycircumflex", + "376": "Ydieresis", + "377": "Zacute", + "378": "zacute", + "379": "Zdotaccent", + "380": "zdotaccent", + "381": "Zcaron", + "382": "zcaron", + "383": "longs", + "384": "uni0180", + "385": "uni0181", + "386": "uni0182", + "387": "uni0183", + "388": "uni0184", + "389": "uni0185", + "390": "uni0186", + "391": "uni0187", + "392": "uni0188", + "393": "uni0189", + "394": "uni018A", + "395": "uni018B", + "396": "uni018C", + "397": "uni018D", + "398": "uni018E", + "399": "uni018F", + "400": "uni0190", + "401": "uni0191", + "402": "florin", + "403": "uni0193", + "404": "uni0194", + "405": "uni0195", + "406": "uni0196", + "407": "uni0197", + "408": "uni0198", + "409": "uni0199", + "410": "uni019A", + "411": "uni019B", + "412": "uni019C", + "413": "uni019D", + "414": "uni019E", + "415": "uni019F", + "416": "Ohorn", + "417": "ohorn", + "418": "uni01A2", + "419": "uni01A3", + "420": "uni01A4", + "421": "uni01A5", + "422": "uni01A6", + "423": "uni01A7", + "424": "uni01A8", + "425": "uni01A9", + "426": "uni01AA", + "427": "uni01AB", + "428": "uni01AC", + "429": "uni01AD", + "430": "uni01AE", + "431": "Uhorn", + "432": "uhorn", + "433": "uni01B1", + "434": "uni01B2", + "435": "uni01B3", + "436": "uni01B4", + "437": "uni01B5", + "438": "uni01B6", + "439": "uni01B7", + "440": "uni01B8", + "441": "uni01B9", + "442": "uni01BA", + "443": "uni01BB", + "444": "uni01BC", + "445": "uni01BD", + "446": "uni01BE", + "447": "uni01BF", + "448": "uni01C0", + "449": "uni01C1", + "450": "uni01C2", + "451": "uni01C3", + "452": "uni01C4", + "453": "uni01C5", + "454": "uni01C6", + "455": "uni01C7", + "456": "uni01C8", + "457": "uni01C9", + "458": "uni01CA", + "459": "uni01CB", + "460": "uni01CC", + "461": "uni01CD", + "462": "uni01CE", + "463": "uni01CF", + "464": "uni01D0", + "465": "uni01D1", + "466": "uni01D2", + "467": "uni01D3", + "468": "uni01D4", + "469": "uni01D5", + "470": "uni01D6", + "471": "uni01D7", + "472": "uni01D8", + "473": "uni01D9", + "474": "uni01DA", + "475": "uni01DB", + "476": "uni01DC", + "477": "uni01DD", + "478": "uni01DE", + "479": "uni01DF", + "480": "uni01E0", + "481": "uni01E1", + "482": "uni01E2", + "483": "uni01E3", + "484": "uni01E4", + "485": "uni01E5", + "486": "Gcaron", + "487": "gcaron", + "488": "uni01E8", + "489": "uni01E9", + "490": "uni01EA", + "491": "uni01EB", + "492": "uni01EC", + "493": "uni01ED", + "494": "uni01EE", + "495": "uni01EF", + "496": "uni01F0", + "497": "uni01F1", + "498": "uni01F2", + "499": "uni01F3", + "500": "uni01F4", + "501": "uni01F5", + "502": "uni01F6", + "503": "uni01F7", + "504": "uni01F8", + "505": "uni01F9", + "506": "Aringacute", + "507": "aringacute", + "508": "AEacute", + "509": "aeacute", + "510": "Oslashacute", + "511": "oslashacute", + "512": "uni0200", + "513": "uni0201", + "514": "uni0202", + "515": "uni0203", + "516": "uni0204", + "517": "uni0205", + "518": "uni0206", + "519": "uni0207", + "520": "uni0208", + "521": "uni0209", + "522": "uni020A", + "523": "uni020B", + "524": "uni020C", + "525": "uni020D", + "526": "uni020E", + "527": "uni020F", + "528": "uni0210", + "529": "uni0211", + "530": "uni0212", + "531": "uni0213", + "532": "uni0214", + "533": "uni0215", + "534": "uni0216", + "535": "uni0217", + "536": "uni0218", + "537": "uni0219", + "538": "uni021A", + "539": "uni021B", + "540": "uni021C", + "541": "uni021D", + "542": "uni021E", + "543": "uni021F", + "544": "uni0220", + "545": "uni0221", + "546": "uni0222", + "547": "uni0223", + "548": "uni0224", + "549": "uni0225", + "550": "uni0226", + "551": "uni0227", + "552": "uni0228", + "553": "uni0229", + "554": "uni022A", + "555": "uni022B", + "556": "uni022C", + "557": "uni022D", + "558": "uni022E", + "559": "uni022F", + "560": "uni0230", + "561": "uni0231", + "562": "uni0232", + "563": "uni0233", + "564": "uni0234", + "565": "uni0235", + "566": "uni0236", + "567": "uni0237", + "568": "uni0238", + "569": "uni0239", + "570": "uni023A", + "571": "uni023B", + "572": "uni023C", + "573": "uni023D", + "574": "uni023E", + "575": "uni023F", + "576": "uni0240", + "577": "uni0241", + "578": "uni0242", + "579": "uni0243", + "580": "uni0244", + "581": "uni0245", + "582": "uni0246", + "583": "uni0247", + "584": "uni0248", + "585": "uni0249", + "586": "uni024A", + "587": "uni024B", + "588": "uni024C", + "589": "uni024D", + "590": "uni024E", + "591": "uni024F", + "592": "uni0250", + "593": "uni0251", + "594": "uni0252", + "595": "uni0253", + "596": "uni0254", + "597": "uni0255", + "598": "uni0256", + "599": "uni0257", + "600": "uni0258", + "601": "uni0259", + "602": "uni025A", + "603": "uni025B", + "604": "uni025C", + "605": "uni025D", + "606": "uni025E", + "607": "uni025F", + "608": "uni0260", + "609": "uni0261", + "610": "uni0262", + "611": "uni0263", + "612": "uni0264", + "613": "uni0265", + "614": "uni0266", + "615": "uni0267", + "616": "uni0268", + "617": "uni0269", + "618": "uni026A", + "619": "uni026B", + "620": "uni026C", + "621": "uni026D", + "622": "uni026E", + "623": "uni026F", + "624": "uni0270", + "625": "uni0271", + "626": "uni0272", + "627": "uni0273", + "628": "uni0274", + "629": "uni0275", + "630": "uni0276", + "631": "uni0277", + "632": "uni0278", + "633": "uni0279", + "634": "uni027A", + "635": "uni027B", + "636": "uni027C", + "637": "uni027D", + "638": "uni027E", + "639": "uni027F", + "640": "uni0280", + "641": "uni0281", + "642": "uni0282", + "643": "uni0283", + "644": "uni0284", + "645": "uni0285", + "646": "uni0286", + "647": "uni0287", + "648": "uni0288", + "649": "uni0289", + "650": "uni028A", + "651": "uni028B", + "652": "uni028C", + "653": "uni028D", + "654": "uni028E", + "655": "uni028F", + "656": "uni0290", + "657": "uni0291", + "658": "uni0292", + "659": "uni0293", + "660": "uni0294", + "661": "uni0295", + "662": "uni0296", + "663": "uni0297", + "664": "uni0298", + "665": "uni0299", + "666": "uni029A", + "667": "uni029B", + "668": "uni029C", + "669": "uni029D", + "670": "uni029E", + "671": "uni029F", + "672": "uni02A0", + "673": "uni02A1", + "674": "uni02A2", + "675": "uni02A3", + "676": "uni02A4", + "677": "uni02A5", + "678": "uni02A6", + "679": "uni02A7", + "680": "uni02A8", + "681": "uni02A9", + "682": "uni02AA", + "683": "uni02AB", + "684": "uni02AC", + "685": "uni02AD", + "686": "uni02AE", + "687": "uni02AF", + "688": "uni02B0", + "689": "uni02B1", + "690": "uni02B2", + "691": "uni02B3", + "692": "uni02B4", + "693": "uni02B5", + "694": "uni02B6", + "695": "uni02B7", + "696": "uni02B8", + "697": "uni02B9", + "698": "uni02BA", + "699": "uni02BB", + "700": "uni02BC", + "701": "uni02BD", + "702": "uni02BE", + "703": "uni02BF", + "704": "uni02C0", + "705": "uni02C1", + "706": "uni02C2", + "707": "uni02C3", + "708": "uni02C4", + "709": "uni02C5", + "710": "circumflex", + "711": "caron", + "712": "uni02C8", + "713": "uni02C9", + "714": "uni02CA", + "715": "uni02CB", + "716": "uni02CC", + "717": "uni02CD", + "718": "uni02CE", + "719": "uni02CF", + "720": "uni02D0", + "721": "uni02D1", + "722": "uni02D2", + "723": "uni02D3", + "724": "uni02D4", + "725": "uni02D5", + "726": "uni02D6", + "727": "uni02D7", + "728": "breve", + "729": "dotaccent", + "730": "ring", + "731": "ogonek", + "732": "tilde", + "733": "hungarumlaut", + "734": "uni02DE", + "735": "uni02DF", + "736": "uni02E0", + "737": "uni02E1", + "738": "uni02E2", + "739": "uni02E3", + "740": "uni02E4", + "741": "uni02E5", + "742": "uni02E6", + "743": "uni02E7", + "744": "uni02E8", + "745": "uni02E9", + "746": "uni02EA", + "747": "uni02EB", + "748": "uni02EC", + "749": "uni02ED", + "750": "uni02EE", + "751": "uni02EF", + "752": "uni02F0", + "753": "uni02F1", + "754": "uni02F2", + "755": "uni02F3", + "756": "uni02F4", + "757": "uni02F5", + "758": "uni02F6", + "759": "uni02F7", + "760": "uni02F8", + "761": "uni02F9", + "762": "uni02FA", + "763": "uni02FB", + "764": "uni02FC", + "765": "uni02FD", + "766": "uni02FE", + "767": "uni02FF", + "768": "gravecomb", + "769": "acutecomb", + "770": "uni0302", + "771": "tildecomb", + "772": "uni0304", + "773": "uni0305", + "774": "uni0306", + "775": "uni0307", + "776": "uni0308", + "777": "hookabovecomb", + "778": "uni030A", + "779": "uni030B", + "780": "uni030C", + "781": "uni030D", + "782": "uni030E", + "783": "uni030F", + "784": "uni0310", + "785": "uni0311", + "786": "uni0312", + "787": "uni0313", + "788": "uni0314", + "789": "uni0315", + "790": "uni0316", + "791": "uni0317", + "792": "uni0318", + "793": "uni0319", + "794": "uni031A", + "795": "uni031B", + "796": "uni031C", + "797": "uni031D", + "798": "uni031E", + "799": "uni031F", + "800": "uni0320", + "801": "uni0321", + "802": "uni0322", + "803": "dotbelowcomb", + "804": "uni0324", + "805": "uni0325", + "806": "uni0326", + "807": "uni0327", + "808": "uni0328", + "809": "uni0329", + "810": "uni032A", + "811": "uni032B", + "812": "uni032C", + "813": "uni032D", + "814": "uni032E", + "815": "uni032F", + "816": "uni0330", + "817": "uni0331", + "818": "uni0332", + "819": "uni0333", + "820": "uni0334", + "821": "uni0335", + "822": "uni0336", + "823": "uni0337", + "824": "uni0338", + "825": "uni0339", + "826": "uni033A", + "827": "uni033B", + "828": "uni033C", + "829": "uni033D", + "830": "uni033E", + "831": "uni033F", + "832": "uni0340", + "833": "uni0341", + "834": "uni0342", + "835": "uni0343", + "836": "uni0344", + "837": "uni0345", + "838": "uni0346", + "839": "uni0347", + "840": "uni0348", + "841": "uni0349", + "842": "uni034A", + "843": "uni034B", + "844": "uni034C", + "845": "uni034D", + "846": "uni034E", + "847": "uni034F", + "848": "uni0350", + "849": "uni0351", + "850": "uni0352", + "851": "uni0353", + "852": "uni0354", + "853": "uni0355", + "854": "uni0356", + "855": "uni0357", + "856": "uni0358", + "857": "uni0359", + "858": "uni035A", + "859": "uni035B", + "860": "uni035C", + "861": "uni035D", + "862": "uni035E", + "863": "uni035F", + "864": "uni0360", + "865": "uni0361", + "866": "uni0362", + "867": "uni0363", + "868": "uni0364", + "869": "uni0365", + "870": "uni0366", + "871": "uni0367", + "872": "uni0368", + "873": "uni0369", + "874": "uni036A", + "875": "uni036B", + "876": "uni036C", + "877": "uni036D", + "878": "uni036E", + "879": "uni036F", + "880": "uni0370", + "881": "uni0371", + "882": "uni0372", + "883": "uni0373", + "884": "uni0374", + "885": "uni0375", + "886": "uni0376", + "887": "uni0377", + "890": "uni037A", + "891": "uni037B", + "892": "uni037C", + "893": "uni037D", + "894": "uni037E", + "895": "uni037F", + "900": "tonos", + "901": "dieresistonos", + "902": "Alphatonos", + "903": "anoteleia", + "904": "Epsilontonos", + "905": "Etatonos", + "906": "Iotatonos", + "908": "Omicrontonos", + "910": "Upsilontonos", + "911": "Omegatonos", + "912": "iotadieresistonos", + "913": "Alpha", + "914": "Beta", + "915": "Gamma", + "916": "uni0394", + "917": "Epsilon", + "918": "Zeta", + "919": "Eta", + "920": "Theta", + "921": "Iota", + "922": "Kappa", + "923": "Lambda", + "924": "Mu", + "925": "Nu", + "926": "Xi", + "927": "Omicron", + "928": "Pi", + "929": "Rho", + "931": "Sigma", + "932": "Tau", + "933": "Upsilon", + "934": "Phi", + "935": "Chi", + "936": "Psi", + "937": "uni03A9", + "938": "Iotadieresis", + "939": "Upsilondieresis", + "940": "alphatonos", + "941": "epsilontonos", + "942": "etatonos", + "943": "iotatonos", + "944": "upsilondieresistonos", + "945": "alpha", + "946": "beta", + "947": "gamma", + "948": "delta", + "949": "epsilon", + "950": "zeta", + "951": "eta", + "952": "theta", + "953": "iota", + "954": "kappa", + "955": "lambda", + "956": "uni03BC", + "957": "nu", + "958": "xi", + "959": "omicron", + "960": "pi", + "961": "rho", + "962": "sigma1", + "963": "sigma", + "964": "tau", + "965": "upsilon", + "966": "phi", + "967": "chi", + "968": "psi", + "969": "omega", + "970": "iotadieresis", + "971": "upsilondieresis", + "972": "omicrontonos", + "973": "upsilontonos", + "974": "omegatonos", + "975": "uni03CF", + "976": "uni03D0", + "977": "theta1", + "978": "Upsilon1", + "979": "uni03D3", + "980": "uni03D4", + "981": "phi1", + "982": "omega1", + "983": "uni03D7", + "984": "uni03D8", + "985": "uni03D9", + "986": "uni03DA", + "987": "uni03DB", + "988": "uni03DC", + "989": "uni03DD", + "990": "uni03DE", + "991": "uni03DF", + "992": "uni03E0", + "993": "uni03E1", + "1008": "uni03F0", + "1009": "uni03F1", + "1010": "uni03F2", + "1011": "uni03F3", + "1012": "uni03F4", + "1013": "uni03F5", + "1014": "uni03F6", + "1015": "uni03F7", + "1016": "uni03F8", + "1017": "uni03F9", + "1018": "uni03FA", + "1019": "uni03FB", + "1020": "uni03FC", + "1021": "uni03FD", + "1022": "uni03FE", + "1023": "uni03FF", + "1024": "uni0400", + "1025": "uni0401", + "1026": "uni0402", + "1027": "uni0403", + "1028": "uni0404", + "1029": "uni0405", + "1030": "uni0406", + "1031": "uni0407", + "1032": "uni0408", + "1033": "uni0409", + "1034": "uni040A", + "1035": "uni040B", + "1036": "uni040C", + "1037": "uni040D", + "1038": "uni040E", + "1039": "uni040F", + "1040": "uni0410", + "1041": "uni0411", + "1042": "uni0412", + "1043": "uni0413", + "1044": "uni0414", + "1045": "uni0415", + "1046": "uni0416", + "1047": "uni0417", + "1048": "uni0418", + "1049": "uni0419", + "1050": "uni041A", + "1051": "uni041B", + "1052": "uni041C", + "1053": "uni041D", + "1054": "uni041E", + "1055": "uni041F", + "1056": "uni0420", + "1057": "uni0421", + "1058": "uni0422", + "1059": "uni0423", + "1060": "uni0424", + "1061": "uni0425", + "1062": "uni0426", + "1063": "uni0427", + "1064": "uni0428", + "1065": "uni0429", + "1066": "uni042A", + "1067": "uni042B", + "1068": "uni042C", + "1069": "uni042D", + "1070": "uni042E", + "1071": "uni042F", + "1072": "uni0430", + "1073": "uni0431", + "1074": "uni0432", + "1075": "uni0433", + "1076": "uni0434", + "1077": "uni0435", + "1078": "uni0436", + "1079": "uni0437", + "1080": "uni0438", + "1081": "uni0439", + "1082": "uni043A", + "1083": "uni043B", + "1084": "uni043C", + "1085": "uni043D", + "1086": "uni043E", + "1087": "uni043F", + "1088": "uni0440", + "1089": "uni0441", + "1090": "uni0442", + "1091": "uni0443", + "1092": "uni0444", + "1093": "uni0445", + "1094": "uni0446", + "1095": "uni0447", + "1096": "uni0448", + "1097": "uni0449", + "1098": "uni044A", + "1099": "uni044B", + "1100": "uni044C", + "1101": "uni044D", + "1102": "uni044E", + "1103": "uni044F", + "1104": "uni0450", + "1105": "uni0451", + "1106": "uni0452", + "1107": "uni0453", + "1108": "uni0454", + "1109": "uni0455", + "1110": "uni0456", + "1111": "uni0457", + "1112": "uni0458", + "1113": "uni0459", + "1114": "uni045A", + "1115": "uni045B", + "1116": "uni045C", + "1117": "uni045D", + "1118": "uni045E", + "1119": "uni045F", + "1120": "uni0460", + "1121": "uni0461", + "1122": "uni0462", + "1123": "uni0463", + "1124": "uni0464", + "1125": "uni0465", + "1126": "uni0466", + "1127": "uni0467", + "1128": "uni0468", + "1129": "uni0469", + "1130": "uni046A", + "1131": "uni046B", + "1132": "uni046C", + "1133": "uni046D", + "1134": "uni046E", + "1135": "uni046F", + "1136": "uni0470", + "1137": "uni0471", + "1138": "uni0472", + "1139": "uni0473", + "1140": "uni0474", + "1141": "uni0475", + "1142": "uni0476", + "1143": "uni0477", + "1144": "uni0478", + "1145": "uni0479", + "1146": "uni047A", + "1147": "uni047B", + "1148": "uni047C", + "1149": "uni047D", + "1150": "uni047E", + "1151": "uni047F", + "1152": "uni0480", + "1153": "uni0481", + "1154": "uni0482", + "1155": "uni0483", + "1156": "uni0484", + "1157": "uni0485", + "1158": "uni0486", + "1159": "uni0487", + "1160": "uni0488", + "1161": "uni0489", + "1162": "uni048A", + "1163": "uni048B", + "1164": "uni048C", + "1165": "uni048D", + "1166": "uni048E", + "1167": "uni048F", + "1168": "uni0490", + "1169": "uni0491", + "1170": "uni0492", + "1171": "uni0493", + "1172": "uni0494", + "1173": "uni0495", + "1174": "uni0496", + "1175": "uni0497", + "1176": "uni0498", + "1177": "uni0499", + "1178": "uni049A", + "1179": "uni049B", + "1180": "uni049C", + "1181": "uni049D", + "1182": "uni049E", + "1183": "uni049F", + "1184": "uni04A0", + "1185": "uni04A1", + "1186": "uni04A2", + "1187": "uni04A3", + "1188": "uni04A4", + "1189": "uni04A5", + "1190": "uni04A6", + "1191": "uni04A7", + "1192": "uni04A8", + "1193": "uni04A9", + "1194": "uni04AA", + "1195": "uni04AB", + "1196": "uni04AC", + "1197": "uni04AD", + "1198": "uni04AE", + "1199": "uni04AF", + "1200": "uni04B0", + "1201": "uni04B1", + "1202": "uni04B2", + "1203": "uni04B3", + "1204": "uni04B4", + "1205": "uni04B5", + "1206": "uni04B6", + "1207": "uni04B7", + "1208": "uni04B8", + "1209": "uni04B9", + "1210": "uni04BA", + "1211": "uni04BB", + "1212": "uni04BC", + "1213": "uni04BD", + "1214": "uni04BE", + "1215": "uni04BF", + "1216": "uni04C0", + "1217": "uni04C1", + "1218": "uni04C2", + "1219": "uni04C3", + "1220": "uni04C4", + "1221": "uni04C5", + "1222": "uni04C6", + "1223": "uni04C7", + "1224": "uni04C8", + "1225": "uni04C9", + "1226": "uni04CA", + "1227": "uni04CB", + "1228": "uni04CC", + "1229": "uni04CD", + "1230": "uni04CE", + "1231": "uni04CF", + "1232": "uni04D0", + "1233": "uni04D1", + "1234": "uni04D2", + "1235": "uni04D3", + "1236": "uni04D4", + "1237": "uni04D5", + "1238": "uni04D6", + "1239": "uni04D7", + "1240": "uni04D8", + "1241": "uni04D9", + "1242": "uni04DA", + "1243": "uni04DB", + "1244": "uni04DC", + "1245": "uni04DD", + "1246": "uni04DE", + "1247": "uni04DF", + "1248": "uni04E0", + "1249": "uni04E1", + "1250": "uni04E2", + "1251": "uni04E3", + "1252": "uni04E4", + "1253": "uni04E5", + "1254": "uni04E6", + "1255": "uni04E7", + "1256": "uni04E8", + "1257": "uni04E9", + "1258": "uni04EA", + "1259": "uni04EB", + "1260": "uni04EC", + "1261": "uni04ED", + "1262": "uni04EE", + "1263": "uni04EF", + "1264": "uni04F0", + "1265": "uni04F1", + "1266": "uni04F2", + "1267": "uni04F3", + "1268": "uni04F4", + "1269": "uni04F5", + "1270": "uni04F6", + "1271": "uni04F7", + "1272": "uni04F8", + "1273": "uni04F9", + "1274": "uni04FA", + "1275": "uni04FB", + "1276": "uni04FC", + "1277": "uni04FD", + "1278": "uni04FE", + "1279": "uni04FF", + "1280": "uni0500", + "1281": "uni0501", + "1282": "uni0502", + "1283": "uni0503", + "1284": "uni0504", + "1285": "uni0505", + "1286": "uni0506", + "1287": "uni0507", + "1288": "uni0508", + "1289": "uni0509", + "1290": "uni050A", + "1291": "uni050B", + "1292": "uni050C", + "1293": "uni050D", + "1294": "uni050E", + "1295": "uni050F", + "1296": "uni0510", + "1297": "uni0511", + "1298": "uni0512", + "1299": "uni0513", + "1300": "uni0514", + "1301": "uni0515", + "1302": "uni0516", + "1303": "uni0517", + "1304": "uni0518", + "1305": "uni0519", + "1306": "uni051A", + "1307": "uni051B", + "1308": "uni051C", + "1309": "uni051D", + "1310": "uni051E", + "1311": "uni051F", + "1312": "uni0520", + "1313": "uni0521", + "1314": "uni0522", + "1315": "uni0523", + "1316": "uni0524", + "1317": "uni0525", + "1318": "uni0526", + "1319": "uni0527", + "1320": "uni0528", + "1321": "uni0529", + "1322": "uni052A", + "1323": "uni052B", + "1324": "uni052C", + "1325": "uni052D", + "1326": "uni052E", + "1327": "uni052F", + "6832": "uni1AB0", + "6833": "uni1AB1", + "6834": "uni1AB2", + "6835": "uni1AB3", + "6836": "uni1AB4", + "6837": "uni1AB5", + "6838": "uni1AB6", + "6839": "uni1AB7", + "6840": "uni1AB8", + "6841": "uni1AB9", + "6842": "uni1ABA", + "6843": "uni1ABB", + "6844": "uni1ABC", + "6845": "uni1ABD", + "6846": "uni1ABE", + "7296": "uni1C80", + "7297": "uni1C81", + "7298": "uni1C82", + "7299": "uni1C83", + "7300": "uni1C84", + "7301": "uni1C85", + "7302": "uni1C86", + "7303": "uni1C87", + "7304": "uni1C88", + "7424": "uni1D00", + "7425": "uni1D01", + "7426": "uni1D02", + "7427": "uni1D03", + "7428": "uni1D04", + "7429": "uni1D05", + "7430": "uni1D06", + "7431": "uni1D07", + "7432": "uni1D08", + "7433": "uni1D09", + "7434": "uni1D0A", + "7435": "uni1D0B", + "7436": "uni1D0C", + "7437": "uni1D0D", + "7438": "uni1D0E", + "7439": "uni1D0F", + "7440": "uni1D10", + "7441": "uni1D11", + "7442": "uni1D12", + "7443": "uni1D13", + "7444": "uni1D14", + "7445": "uni1D15", + "7446": "uni1D16", + "7447": "uni1D17", + "7448": "uni1D18", + "7449": "uni1D19", + "7450": "uni1D1A", + "7451": "uni1D1B", + "7452": "uni1D1C", + "7453": "uni1D1D", + "7454": "uni1D1E", + "7455": "uni1D1F", + "7456": "uni1D20", + "7457": "uni1D21", + "7458": "uni1D22", + "7459": "uni1D23", + "7460": "uni1D24", + "7461": "uni1D25", + "7462": "uni1D26", + "7463": "uni1D27", + "7464": "uni1D28", + "7465": "uni1D29", + "7466": "uni1D2A", + "7467": "uni1D2B", + "7468": "uni1D2C", + "7469": "uni1D2D", + "7470": "uni1D2E", + "7471": "uni1D2F", + "7472": "uni1D30", + "7473": "uni1D31", + "7474": "uni1D32", + "7475": "uni1D33", + "7476": "uni1D34", + "7477": "uni1D35", + "7478": "uni1D36", + "7479": "uni1D37", + "7480": "uni1D38", + "7481": "uni1D39", + "7482": "uni1D3A", + "7483": "uni1D3B", + "7484": "uni1D3C", + "7485": "uni1D3D", + "7486": "uni1D3E", + "7487": "uni1D3F", + "7488": "uni1D40", + "7489": "uni1D41", + "7490": "uni1D42", + "7491": "uni1D43", + "7492": "uni1D44", + "7493": "uni1D45", + "7494": "uni1D46", + "7495": "uni1D47", + "7496": "uni1D48", + "7497": "uni1D49", + "7498": "uni1D4A", + "7499": "uni1D4B", + "7500": "uni1D4C", + "7501": "uni1D4D", + "7502": "uni1D4E", + "7503": "uni1D4F", + "7504": "uni1D50", + "7505": "uni1D51", + "7506": "uni1D52", + "7507": "uni1D53", + "7508": "uni1D54", + "7509": "uni1D55", + "7510": "uni1D56", + "7511": "uni1D57", + "7512": "uni1D58", + "7513": "uni1D59", + "7514": "uni1D5A", + "7515": "uni1D5B", + "7516": "uni1D5C", + "7517": "uni1D5D", + "7518": "uni1D5E", + "7519": "uni1D5F", + "7520": "uni1D60", + "7521": "uni1D61", + "7522": "uni1D62", + "7523": "uni1D63", + "7524": "uni1D64", + "7525": "uni1D65", + "7526": "uni1D66", + "7527": "uni1D67", + "7528": "uni1D68", + "7529": "uni1D69", + "7530": "uni1D6A", + "7531": "uni1D6B", + "7532": "uni1D6C", + "7533": "uni1D6D", + "7534": "uni1D6E", + "7535": "uni1D6F", + "7536": "uni1D70", + "7537": "uni1D71", + "7538": "uni1D72", + "7539": "uni1D73", + "7540": "uni1D74", + "7541": "uni1D75", + "7542": "uni1D76", + "7543": "uni1D77", + "7544": "uni1D78", + "7545": "uni1D79", + "7546": "uni1D7A", + "7547": "uni1D7B", + "7548": "uni1D7C", + "7549": "uni1D7D", + "7550": "uni1D7E", + "7551": "uni1D7F", + "7552": "uni1D80", + "7553": "uni1D81", + "7554": "uni1D82", + "7555": "uni1D83", + "7556": "uni1D84", + "7557": "uni1D85", + "7558": "uni1D86", + "7559": "uni1D87", + "7560": "uni1D88", + "7561": "uni1D89", + "7562": "uni1D8A", + "7563": "uni1D8B", + "7564": "uni1D8C", + "7565": "uni1D8D", + "7566": "uni1D8E", + "7567": "uni1D8F", + "7568": "uni1D90", + "7569": "uni1D91", + "7570": "uni1D92", + "7571": "uni1D93", + "7572": "uni1D94", + "7573": "uni1D95", + "7574": "uni1D96", + "7575": "uni1D97", + "7576": "uni1D98", + "7577": "uni1D99", + "7578": "uni1D9A", + "7579": "uni1D9B", + "7580": "uni1D9C", + "7581": "uni1D9D", + "7582": "uni1D9E", + "7583": "uni1D9F", + "7584": "uni1DA0", + "7585": "uni1DA1", + "7586": "uni1DA2", + "7587": "uni1DA3", + "7588": "uni1DA4", + "7589": "uni1DA5", + "7590": "uni1DA6", + "7591": "uni1DA7", + "7592": "uni1DA8", + "7593": "uni1DA9", + "7594": "uni1DAA", + "7595": "uni1DAB", + "7596": "uni1DAC", + "7597": "uni1DAD", + "7598": "uni1DAE", + "7599": "uni1DAF", + "7600": "uni1DB0", + "7601": "uni1DB1", + "7602": "uni1DB2", + "7603": "uni1DB3", + "7604": "uni1DB4", + "7605": "uni1DB5", + "7606": "uni1DB6", + "7607": "uni1DB7", + "7608": "uni1DB8", + "7609": "uni1DB9", + "7610": "uni1DBA", + "7611": "uni1DBB", + "7612": "uni1DBC", + "7613": "uni1DBD", + "7614": "uni1DBE", + "7615": "uni1DBF", + "7616": "uni1DC0", + "7617": "uni1DC1", + "7618": "uni1DC2", + "7619": "uni1DC3", + "7620": "uni1DC4", + "7621": "uni1DC5", + "7622": "uni1DC6", + "7623": "uni1DC7", + "7624": "uni1DC8", + "7625": "uni1DC9", + "7626": "uni1DCA", + "7627": "uni1DCB", + "7628": "uni1DCC", + "7629": "uni1DCD", + "7630": "uni1DCE", + "7631": "uni1DCF", + "7632": "uni1DD0", + "7633": "uni1DD1", + "7634": "uni1DD2", + "7635": "uni1DD3", + "7636": "uni1DD4", + "7637": "uni1DD5", + "7638": "uni1DD6", + "7639": "uni1DD7", + "7640": "uni1DD8", + "7641": "uni1DD9", + "7642": "uni1DDA", + "7643": "uni1DDB", + "7644": "uni1DDC", + "7645": "uni1DDD", + "7646": "uni1DDE", + "7647": "uni1DDF", + "7648": "uni1DE0", + "7649": "uni1DE1", + "7650": "uni1DE2", + "7651": "uni1DE3", + "7652": "uni1DE4", + "7653": "uni1DE5", + "7654": "uni1DE6", + "7655": "uni1DE7", + "7656": "uni1DE8", + "7657": "uni1DE9", + "7658": "uni1DEA", + "7659": "uni1DEB", + "7660": "uni1DEC", + "7661": "uni1DED", + "7662": "uni1DEE", + "7663": "uni1DEF", + "7664": "uni1DF0", + "7665": "uni1DF1", + "7666": "uni1DF2", + "7667": "uni1DF3", + "7668": "uni1DF4", + "7669": "uni1DF5", + "7675": "uni1DFB", + "7676": "uni1DFC", + "7677": "uni1DFD", + "7678": "uni1DFE", + "7679": "uni1DFF", + "7680": "uni1E00", + "7681": "uni1E01", + "7682": "uni1E02", + "7683": "uni1E03", + "7684": "uni1E04", + "7685": "uni1E05", + "7686": "uni1E06", + "7687": "uni1E07", + "7688": "uni1E08", + "7689": "uni1E09", + "7690": "uni1E0A", + "7691": "uni1E0B", + "7692": "uni1E0C", + "7693": "uni1E0D", + "7694": "uni1E0E", + "7695": "uni1E0F", + "7696": "uni1E10", + "7697": "uni1E11", + "7698": "uni1E12", + "7699": "uni1E13", + "7700": "uni1E14", + "7701": "uni1E15", + "7702": "uni1E16", + "7703": "uni1E17", + "7704": "uni1E18", + "7705": "uni1E19", + "7706": "uni1E1A", + "7707": "uni1E1B", + "7708": "uni1E1C", + "7709": "uni1E1D", + "7710": "uni1E1E", + "7711": "uni1E1F", + "7712": "uni1E20", + "7713": "uni1E21", + "7714": "uni1E22", + "7715": "uni1E23", + "7716": "uni1E24", + "7717": "uni1E25", + "7718": "uni1E26", + "7719": "uni1E27", + "7720": "uni1E28", + "7721": "uni1E29", + "7722": "uni1E2A", + "7723": "uni1E2B", + "7724": "uni1E2C", + "7725": "uni1E2D", + "7726": "uni1E2E", + "7727": "uni1E2F", + "7728": "uni1E30", + "7729": "uni1E31", + "7730": "uni1E32", + "7731": "uni1E33", + "7732": "uni1E34", + "7733": "uni1E35", + "7734": "uni1E36", + "7735": "uni1E37", + "7736": "uni1E38", + "7737": "uni1E39", + "7738": "uni1E3A", + "7739": "uni1E3B", + "7740": "uni1E3C", + "7741": "uni1E3D", + "7742": "uni1E3E", + "7743": "uni1E3F", + "7744": "uni1E40", + "7745": "uni1E41", + "7746": "uni1E42", + "7747": "uni1E43", + "7748": "uni1E44", + "7749": "uni1E45", + "7750": "uni1E46", + "7751": "uni1E47", + "7752": "uni1E48", + "7753": "uni1E49", + "7754": "uni1E4A", + "7755": "uni1E4B", + "7756": "uni1E4C", + "7757": "uni1E4D", + "7758": "uni1E4E", + "7759": "uni1E4F", + "7760": "uni1E50", + "7761": "uni1E51", + "7762": "uni1E52", + "7763": "uni1E53", + "7764": "uni1E54", + "7765": "uni1E55", + "7766": "uni1E56", + "7767": "uni1E57", + "7768": "uni1E58", + "7769": "uni1E59", + "7770": "uni1E5A", + "7771": "uni1E5B", + "7772": "uni1E5C", + "7773": "uni1E5D", + "7774": "uni1E5E", + "7775": "uni1E5F", + "7776": "uni1E60", + "7777": "uni1E61", + "7778": "uni1E62", + "7779": "uni1E63", + "7780": "uni1E64", + "7781": "uni1E65", + "7782": "uni1E66", + "7783": "uni1E67", + "7784": "uni1E68", + "7785": "uni1E69", + "7786": "uni1E6A", + "7787": "uni1E6B", + "7788": "uni1E6C", + "7789": "uni1E6D", + "7790": "uni1E6E", + "7791": "uni1E6F", + "7792": "uni1E70", + "7793": "uni1E71", + "7794": "uni1E72", + "7795": "uni1E73", + "7796": "uni1E74", + "7797": "uni1E75", + "7798": "uni1E76", + "7799": "uni1E77", + "7800": "uni1E78", + "7801": "uni1E79", + "7802": "uni1E7A", + "7803": "uni1E7B", + "7804": "uni1E7C", + "7805": "uni1E7D", + "7806": "uni1E7E", + "7807": "uni1E7F", + "7808": "Wgrave", + "7809": "wgrave", + "7810": "Wacute", + "7811": "wacute", + "7812": "Wdieresis", + "7813": "wdieresis", + "7814": "uni1E86", + "7815": "uni1E87", + "7816": "uni1E88", + "7817": "uni1E89", + "7818": "uni1E8A", + "7819": "uni1E8B", + "7820": "uni1E8C", + "7821": "uni1E8D", + "7822": "uni1E8E", + "7823": "uni1E8F", + "7824": "uni1E90", + "7825": "uni1E91", + "7826": "uni1E92", + "7827": "uni1E93", + "7828": "uni1E94", + "7829": "uni1E95", + "7830": "uni1E96", + "7831": "uni1E97", + "7832": "uni1E98", + "7833": "uni1E99", + "7834": "uni1E9A", + "7835": "uni1E9B", + "7836": "uni1E9C", + "7837": "uni1E9D", + "7838": "uni1E9E", + "7839": "uni1E9F", + "7840": "uni1EA0", + "7841": "uni1EA1", + "7842": "uni1EA2", + "7843": "uni1EA3", + "7844": "uni1EA4", + "7845": "uni1EA5", + "7846": "uni1EA6", + "7847": "uni1EA7", + "7848": "uni1EA8", + "7849": "uni1EA9", + "7850": "uni1EAA", + "7851": "uni1EAB", + "7852": "uni1EAC", + "7853": "uni1EAD", + "7854": "uni1EAE", + "7855": "uni1EAF", + "7856": "uni1EB0", + "7857": "uni1EB1", + "7858": "uni1EB2", + "7859": "uni1EB3", + "7860": "uni1EB4", + "7861": "uni1EB5", + "7862": "uni1EB6", + "7863": "uni1EB7", + "7864": "uni1EB8", + "7865": "uni1EB9", + "7866": "uni1EBA", + "7867": "uni1EBB", + "7868": "uni1EBC", + "7869": "uni1EBD", + "7870": "uni1EBE", + "7871": "uni1EBF", + "7872": "uni1EC0", + "7873": "uni1EC1", + "7874": "uni1EC2", + "7875": "uni1EC3", + "7876": "uni1EC4", + "7877": "uni1EC5", + "7878": "uni1EC6", + "7879": "uni1EC7", + "7880": "uni1EC8", + "7881": "uni1EC9", + "7882": "uni1ECA", + "7883": "uni1ECB", + "7884": "uni1ECC", + "7885": "uni1ECD", + "7886": "uni1ECE", + "7887": "uni1ECF", + "7888": "uni1ED0", + "7889": "uni1ED1", + "7890": "uni1ED2", + "7891": "uni1ED3", + "7892": "uni1ED4", + "7893": "uni1ED5", + "7894": "uni1ED6", + "7895": "uni1ED7", + "7896": "uni1ED8", + "7897": "uni1ED9", + "7898": "uni1EDA", + "7899": "uni1EDB", + "7900": "uni1EDC", + "7901": "uni1EDD", + "7902": "uni1EDE", + "7903": "uni1EDF", + "7904": "uni1EE0", + "7905": "uni1EE1", + "7906": "uni1EE2", + "7907": "uni1EE3", + "7908": "uni1EE4", + "7909": "uni1EE5", + "7910": "uni1EE6", + "7911": "uni1EE7", + "7912": "uni1EE8", + "7913": "uni1EE9", + "7914": "uni1EEA", + "7915": "uni1EEB", + "7916": "uni1EEC", + "7917": "uni1EED", + "7918": "uni1EEE", + "7919": "uni1EEF", + "7920": "uni1EF0", + "7921": "uni1EF1", + "7922": "Ygrave", + "7923": "ygrave", + "7924": "uni1EF4", + "7925": "uni1EF5", + "7926": "uni1EF6", + "7927": "uni1EF7", + "7928": "uni1EF8", + "7929": "uni1EF9", + "7930": "uni1EFA", + "7931": "uni1EFB", + "7932": "uni1EFC", + "7933": "uni1EFD", + "7934": "uni1EFE", + "7935": "uni1EFF", + "7936": "uni1F00", + "7937": "uni1F01", + "7938": "uni1F02", + "7939": "uni1F03", + "7940": "uni1F04", + "7941": "uni1F05", + "7942": "uni1F06", + "7943": "uni1F07", + "7944": "uni1F08", + "7945": "uni1F09", + "7946": "uni1F0A", + "7947": "uni1F0B", + "7948": "uni1F0C", + "7949": "uni1F0D", + "7950": "uni1F0E", + "7951": "uni1F0F", + "7952": "uni1F10", + "7953": "uni1F11", + "7954": "uni1F12", + "7955": "uni1F13", + "7956": "uni1F14", + "7957": "uni1F15", + "7960": "uni1F18", + "7961": "uni1F19", + "7962": "uni1F1A", + "7963": "uni1F1B", + "7964": "uni1F1C", + "7965": "uni1F1D", + "7968": "uni1F20", + "7969": "uni1F21", + "7970": "uni1F22", + "7971": "uni1F23", + "7972": "uni1F24", + "7973": "uni1F25", + "7974": "uni1F26", + "7975": "uni1F27", + "7976": "uni1F28", + "7977": "uni1F29", + "7978": "uni1F2A", + "7979": "uni1F2B", + "7980": "uni1F2C", + "7981": "uni1F2D", + "7982": "uni1F2E", + "7983": "uni1F2F", + "7984": "uni1F30", + "7985": "uni1F31", + "7986": "uni1F32", + "7987": "uni1F33", + "7988": "uni1F34", + "7989": "uni1F35", + "7990": "uni1F36", + "7991": "uni1F37", + "7992": "uni1F38", + "7993": "uni1F39", + "7994": "uni1F3A", + "7995": "uni1F3B", + "7996": "uni1F3C", + "7997": "uni1F3D", + "7998": "uni1F3E", + "7999": "uni1F3F", + "8000": "uni1F40", + "8001": "uni1F41", + "8002": "uni1F42", + "8003": "uni1F43", + "8004": "uni1F44", + "8005": "uni1F45", + "8008": "uni1F48", + "8009": "uni1F49", + "8010": "uni1F4A", + "8011": "uni1F4B", + "8012": "uni1F4C", + "8013": "uni1F4D", + "8016": "uni1F50", + "8017": "uni1F51", + "8018": "uni1F52", + "8019": "uni1F53", + "8020": "uni1F54", + "8021": "uni1F55", + "8022": "uni1F56", + "8023": "uni1F57", + "8025": "uni1F59", + "8027": "uni1F5B", + "8029": "uni1F5D", + "8031": "uni1F5F", + "8032": "uni1F60", + "8033": "uni1F61", + "8034": "uni1F62", + "8035": "uni1F63", + "8036": "uni1F64", + "8037": "uni1F65", + "8038": "uni1F66", + "8039": "uni1F67", + "8040": "uni1F68", + "8041": "uni1F69", + "8042": "uni1F6A", + "8043": "uni1F6B", + "8044": "uni1F6C", + "8045": "uni1F6D", + "8046": "uni1F6E", + "8047": "uni1F6F", + "8048": "uni1F70", + "8049": "uni1F71", + "8050": "uni1F72", + "8051": "uni1F73", + "8052": "uni1F74", + "8053": "uni1F75", + "8054": "uni1F76", + "8055": "uni1F77", + "8056": "uni1F78", + "8057": "uni1F79", + "8058": "uni1F7A", + "8059": "uni1F7B", + "8060": "uni1F7C", + "8061": "uni1F7D", + "8064": "uni1F80", + "8065": "uni1F81", + "8066": "uni1F82", + "8067": "uni1F83", + "8068": "uni1F84", + "8069": "uni1F85", + "8070": "uni1F86", + "8071": "uni1F87", + "8072": "uni1F88", + "8073": "uni1F89", + "8074": "uni1F8A", + "8075": "uni1F8B", + "8076": "uni1F8C", + "8077": "uni1F8D", + "8078": "uni1F8E", + "8079": "uni1F8F", + "8080": "uni1F90", + "8081": "uni1F91", + "8082": "uni1F92", + "8083": "uni1F93", + "8084": "uni1F94", + "8085": "uni1F95", + "8086": "uni1F96", + "8087": "uni1F97", + "8088": "uni1F98", + "8089": "uni1F99", + "8090": "uni1F9A", + "8091": "uni1F9B", + "8092": "uni1F9C", + "8093": "uni1F9D", + "8094": "uni1F9E", + "8095": "uni1F9F", + "8096": "uni1FA0", + "8097": "uni1FA1", + "8098": "uni1FA2", + "8099": "uni1FA3", + "8100": "uni1FA4", + "8101": "uni1FA5", + "8102": "uni1FA6", + "8103": "uni1FA7", + "8104": "uni1FA8", + "8105": "uni1FA9", + "8106": "uni1FAA", + "8107": "uni1FAB", + "8108": "uni1FAC", + "8109": "uni1FAD", + "8110": "uni1FAE", + "8111": "uni1FAF", + "8112": "uni1FB0", + "8113": "uni1FB1", + "8114": "uni1FB2", + "8115": "uni1FB3", + "8116": "uni1FB4", + "8118": "uni1FB6", + "8119": "uni1FB7", + "8120": "uni1FB8", + "8121": "uni1FB9", + "8122": "uni1FBA", + "8123": "uni1FBB", + "8124": "uni1FBC", + "8125": "uni1FBD", + "8126": "uni1FBE", + "8127": "uni1FBF", + "8128": "uni1FC0", + "8129": "uni1FC1", + "8130": "uni1FC2", + "8131": "uni1FC3", + "8132": "uni1FC4", + "8134": "uni1FC6", + "8135": "uni1FC7", + "8136": "uni1FC8", + "8137": "uni1FC9", + "8138": "uni1FCA", + "8139": "uni1FCB", + "8140": "uni1FCC", + "8141": "uni1FCD", + "8142": "uni1FCE", + "8143": "uni1FCF", + "8144": "uni1FD0", + "8145": "uni1FD1", + "8146": "uni1FD2", + "8147": "uni1FD3", + "8150": "uni1FD6", + "8151": "uni1FD7", + "8152": "uni1FD8", + "8153": "uni1FD9", + "8154": "uni1FDA", + "8155": "uni1FDB", + "8157": "uni1FDD", + "8158": "uni1FDE", + "8159": "uni1FDF", + "8160": "uni1FE0", + "8161": "uni1FE1", + "8162": "uni1FE2", + "8163": "uni1FE3", + "8164": "uni1FE4", + "8165": "uni1FE5", + "8166": "uni1FE6", + "8167": "uni1FE7", + "8168": "uni1FE8", + "8169": "uni1FE9", + "8170": "uni1FEA", + "8171": "uni1FEB", + "8172": "uni1FEC", + "8173": "uni1FED", + "8174": "uni1FEE", + "8175": "uni1FEF", + "8178": "uni1FF2", + "8179": "uni1FF3", + "8180": "uni1FF4", + "8182": "uni1FF6", + "8183": "uni1FF7", + "8184": "uni1FF8", + "8185": "uni1FF9", + "8186": "uni1FFA", + "8187": "uni1FFB", + "8188": "uni1FFC", + "8189": "uni1FFD", + "8190": "uni1FFE", + "8192": "uni2000", + "8193": "uni2001", + "8194": "uni2002", + "8195": "uni2003", + "8196": "uni2004", + "8197": "uni2005", + "8198": "uni2006", + "8199": "uni2007", + "8200": "uni2008", + "8201": "uni2009", + "8202": "uni200A", + "8203": "uni200B", + "8204": "uni200C", + "8205": "uni200D", + "8206": "uni200E", + "8207": "uni200F", + "8208": "uni2010", + "8209": "uni2011", + "8210": "figuredash", + "8211": "endash", + "8213": "uni2015", + "8214": "uni2016", + "8215": "underscoredbl", + "8218": "quotesinglbase", + "8219": "quotereversed", + "8222": "quotedblbase", + "8223": "uni201F", + "8224": "dagger", + "8225": "daggerdbl", + "8226": "bullet", + "8227": "uni2023", + "8228": "onedotenleader", + "8229": "twodotenleader", + "8231": "uni2027", + "8232": "uni2028", + "8233": "uni2029", + "8234": "uni202A", + "8235": "uni202B", + "8236": "uni202C", + "8237": "uni202D", + "8238": "uni202E", + "8239": "uni202F", + "8240": "perthousand", + "8241": "uni2031", + "8242": "minute", + "8243": "second", + "8244": "uni2034", + "8245": "uni2035", + "8246": "uni2036", + "8247": "uni2037", + "8248": "uni2038", + "8249": "guilsinglleft", + "8250": "guilsinglright", + "8251": "uni203B", + "8252": "exclamdbl", + "8253": "uni203D", + "8254": "uni203E", + "8255": "uni203F", + "8256": "uni2040", + "8257": "uni2041", + "8258": "uni2042", + "8259": "uni2043", + "8260": "fraction", + "8261": "uni2045", + "8262": "uni2046", + "8263": "uni2047", + "8264": "uni2048", + "8265": "uni2049", + "8266": "uni204A", + "8267": "uni204B", + "8268": "uni204C", + "8269": "uni204D", + "8270": "uni204E", + "8271": "uni204F", + "8272": "uni2050", + "8273": "uni2051", + "8274": "uni2052", + "8275": "uni2053", + "8276": "uni2054", + "8277": "uni2055", + "8278": "uni2056", + "8279": "uni2057", + "8280": "uni2058", + "8281": "uni2059", + "8282": "uni205A", + "8283": "uni205B", + "8284": "uni205C", + "8285": "uni205D", + "8286": "uni205E", + "8287": "uni205F", + "8288": "uni2060", + "8289": "uni2061", + "8290": "uni2062", + "8291": "uni2063", + "8292": "uni2064", + "8294": "uni2066", + "8295": "uni2067", + "8296": "uni2068", + "8297": "uni2069", + "8298": "uni206A", + "8299": "uni206B", + "8300": "uni206C", + "8301": "uni206D", + "8302": "uni206E", + "8303": "uni206F", + "8304": "uni2070", + "8305": "uni2071", + "8308": "uni2074", + "8309": "uni2075", + "8310": "uni2076", + "8311": "uni2077", + "8312": "uni2078", + "8313": "uni2079", + "8314": "uni207A", + "8315": "uni207B", + "8316": "uni207C", + "8317": "uni207D", + "8318": "uni207E", + "8319": "uni207F", + "8320": "uni2080", + "8321": "uni2081", + "8322": "uni2082", + "8323": "uni2083", + "8324": "uni2084", + "8325": "uni2085", + "8326": "uni2086", + "8327": "uni2087", + "8328": "uni2088", + "8329": "uni2089", + "8330": "uni208A", + "8331": "uni208B", + "8332": "uni208C", + "8333": "uni208D", + "8334": "uni208E", + "8336": "uni2090", + "8337": "uni2091", + "8338": "uni2092", + "8339": "uni2093", + "8340": "uni2094", + "8341": "uni2095", + "8342": "uni2096", + "8343": "uni2097", + "8344": "uni2098", + "8345": "uni2099", + "8346": "uni209A", + "8347": "uni209B", + "8348": "uni209C", + "8352": "uni20A0", + "8353": "colonmonetary", + "8354": "uni20A2", + "8355": "franc", + "8356": "lira", + "8357": "uni20A5", + "8358": "uni20A6", + "8359": "peseta", + "8360": "uni20A8", + "8361": "uni20A9", + "8362": "uni20AA", + "8363": "dong", + "8364": "Euro", + "8365": "uni20AD", + "8366": "uni20AE", + "8367": "uni20AF", + "8368": "uni20B0", + "8369": "uni20B1", + "8370": "uni20B2", + "8371": "uni20B3", + "8372": "uni20B4", + "8373": "uni20B5", + "8374": "uni20B6", + "8375": "uni20B7", + "8376": "uni20B8", + "8377": "uni20B9", + "8378": "uni20BA", + "8379": "uni20BB", + "8380": "uni20BC", + "8381": "uni20BD", + "8382": "uni20BE", + "8383": "uni20BF", + "8432": "uni20F0", + "8448": "uni2100", + "8449": "uni2101", + "8450": "uni2102", + "8451": "uni2103", + "8452": "uni2104", + "8453": "uni2105", + "8454": "uni2106", + "8455": "uni2107", + "8456": "uni2108", + "8457": "uni2109", + "8458": "uni210A", + "8459": "uni210B", + "8460": "uni210C", + "8461": "uni210D", + "8462": "uni210E", + "8463": "uni210F", + "8464": "uni2110", + "8465": "Ifraktur", + "8466": "uni2112", + "8467": "uni2113", + "8468": "uni2114", + "8469": "uni2115", + "8470": "uni2116", + "8471": "uni2117", + "8472": "weierstrass", + "8473": "uni2119", + "8474": "uni211A", + "8475": "uni211B", + "8476": "Rfraktur", + "8477": "uni211D", + "8478": "prescription", + "8479": "uni211F", + "8480": "uni2120", + "8481": "uni2121", + "8482": "trademark", + "8483": "uni2123", + "8484": "uni2124", + "8485": "uni2125", + "8486": "Omega", + "8487": "uni2127", + "8488": "uni2128", + "8489": "uni2129", + "8490": "uni212A", + "8491": "uni212B", + "8492": "uni212C", + "8493": "uni212D", + "8494": "estimated", + "8495": "uni212F", + "8496": "uni2130", + "8497": "uni2131", + "8498": "uni2132", + "8499": "uni2133", + "8500": "uni2134", + "8501": "aleph", + "8502": "uni2136", + "8503": "uni2137", + "8504": "uni2138", + "8505": "uni2139", + "8506": "uni213A", + "8507": "uni213B", + "8508": "uni213C", + "8509": "uni213D", + "8510": "uni213E", + "8511": "uni213F", + "8512": "uni2140", + "8513": "uni2141", + "8514": "uni2142", + "8515": "uni2143", + "8516": "uni2144", + "8517": "uni2145", + "8518": "uni2146", + "8519": "uni2147", + "8520": "uni2148", + "8521": "uni2149", + "8522": "uni214A", + "8523": "uni214B", + "8524": "uni214C", + "8525": "uni214D", + "8526": "uni214E", + "8527": "uni214F", + "8528": "uni2150", + "8529": "uni2151", + "8530": "uni2152", + "8531": "onethird", + "8532": "twothirds", + "8533": "uni2155", + "8534": "uni2156", + "8535": "uni2157", + "8536": "uni2158", + "8537": "uni2159", + "8538": "uni215A", + "8539": "oneeighth", + "8540": "threeeighths", + "8541": "fiveeighths", + "8542": "seveneighths", + "8543": "uni215F", + "8580": "uni2184", + "8585": "uni2189", + "11360": "uni2C60", + "11361": "uni2C61", + "11362": "uni2C62", + "11363": "uni2C63", + "11364": "uni2C64", + "11365": "uni2C65", + "11366": "uni2C66", + "11367": "uni2C67", + "11368": "uni2C68", + "11369": "uni2C69", + "11370": "uni2C6A", + "11371": "uni2C6B", + "11372": "uni2C6C", + "11373": "uni2C6D", + "11374": "uni2C6E", + "11375": "uni2C6F", + "11376": "uni2C70", + "11377": "uni2C71", + "11378": "uni2C72", + "11379": "uni2C73", + "11380": "uni2C74", + "11381": "uni2C75", + "11382": "uni2C76", + "11383": "uni2C77", + "11384": "uni2C78", + "11385": "uni2C79", + "11386": "uni2C7A", + "11387": "uni2C7B", + "11388": "uni2C7C", + "11389": "uni2C7D", + "11390": "uni2C7E", + "11391": "uni2C7F", + "11744": "uni2DE0", + "11745": "uni2DE1", + "11746": "uni2DE2", + "11747": "uni2DE3", + "11748": "uni2DE4", + "11749": "uni2DE5", + "11750": "uni2DE6", + "11751": "uni2DE7", + "11752": "uni2DE8", + "11753": "uni2DE9", + "11754": "uni2DEA", + "11755": "uni2DEB", + "11756": "uni2DEC", + "11757": "uni2DED", + "11758": "uni2DEE", + "11759": "uni2DEF", + "11760": "uni2DF0", + "11761": "uni2DF1", + "11762": "uni2DF2", + "11763": "uni2DF3", + "11764": "uni2DF4", + "11765": "uni2DF5", + "11766": "uni2DF6", + "11767": "uni2DF7", + "11768": "uni2DF8", + "11769": "uni2DF9", + "11770": "uni2DFA", + "11771": "uni2DFB", + "11772": "uni2DFC", + "11773": "uni2DFD", + "11774": "uni2DFE", + "11775": "uni2DFF", + "11776": "uni2E00", + "11777": "uni2E01", + "11778": "uni2E02", + "11779": "uni2E03", + "11780": "uni2E04", + "11781": "uni2E05", + "11782": "uni2E06", + "11783": "uni2E07", + "11784": "uni2E08", + "11785": "uni2E09", + "11786": "uni2E0A", + "11787": "uni2E0B", + "11788": "uni2E0C", + "11789": "uni2E0D", + "11790": "uni2E0E", + "11791": "uni2E0F", + "11792": "uni2E10", + "11793": "uni2E11", + "11794": "uni2E12", + "11795": "uni2E13", + "11796": "uni2E14", + "11797": "uni2E15", + "11798": "uni2E16", + "11799": "uni2E17", + "11800": "uni2E18", + "11801": "uni2E19", + "11802": "uni2E1A", + "11803": "uni2E1B", + "11804": "uni2E1C", + "11805": "uni2E1D", + "11806": "uni2E1E", + "11807": "uni2E1F", + "11808": "uni2E20", + "11809": "uni2E21", + "11810": "uni2E22", + "11811": "uni2E23", + "11812": "uni2E24", + "11813": "uni2E25", + "11814": "uni2E26", + "11815": "uni2E27", + "11816": "uni2E28", + "11817": "uni2E29", + "11818": "uni2E2A", + "11819": "uni2E2B", + "11820": "uni2E2C", + "11821": "uni2E2D", + "11822": "uni2E2E", + "11823": "uni2E2F", + "11824": "uni2E30", + "11825": "uni2E31", + "11826": "uni2E32", + "11827": "uni2E33", + "11828": "uni2E34", + "11829": "uni2E35", + "11830": "uni2E36", + "11831": "uni2E37", + "11832": "uni2E38", + "11833": "uni2E39", + "11834": "uni2E3A", + "11835": "uni2E3B", + "11836": "uni2E3C", + "11837": "uni2E3D", + "11838": "uni2E3E", + "11839": "uni2E3F", + "11840": "uni2E40", + "11841": "uni2E41", + "11842": "uni2E42", + "11843": "uni2E43", + "11844": "uni2E44", + "42560": "uniA640", + "42561": "uniA641", + "42562": "uniA642", + "42563": "uniA643", + "42564": "uniA644", + "42565": "uniA645", + "42566": "uniA646", + "42567": "uniA647", + "42568": "uniA648", + "42569": "uniA649", + "42570": "uniA64A", + "42571": "uniA64B", + "42572": "uniA64C", + "42573": "uniA64D", + "42574": "uniA64E", + "42575": "uniA64F", + "42576": "uniA650", + "42577": "uniA651", + "42578": "uniA652", + "42579": "uniA653", + "42580": "uniA654", + "42581": "uniA655", + "42582": "uniA656", + "42583": "uniA657", + "42584": "uniA658", + "42585": "uniA659", + "42586": "uniA65A", + "42587": "uniA65B", + "42588": "uniA65C", + "42589": "uniA65D", + "42590": "uniA65E", + "42591": "uniA65F", + "42592": "uniA660", + "42593": "uniA661", + "42594": "uniA662", + "42595": "uniA663", + "42596": "uniA664", + "42597": "uniA665", + "42598": "uniA666", + "42599": "uniA667", + "42600": "uniA668", + "42601": "uniA669", + "42602": "uniA66A", + "42603": "uniA66B", + "42604": "uniA66C", + "42605": "uniA66D", + "42606": "uniA66E", + "42607": "uniA66F", + "42608": "uniA670", + "42609": "uniA671", + "42610": "uniA672", + "42611": "uniA673", + "42612": "uniA674", + "42613": "uniA675", + "42614": "uniA676", + "42615": "uniA677", + "42616": "uniA678", + "42617": "uniA679", + "42618": "uniA67A", + "42619": "uniA67B", + "42620": "uniA67C", + "42621": "uniA67D", + "42622": "uniA67E", + "42623": "uniA67F", + "42624": "uniA680", + "42625": "uniA681", + "42626": "uniA682", + "42627": "uniA683", + "42628": "uniA684", + "42629": "uniA685", + "42630": "uniA686", + "42631": "uniA687", + "42632": "uniA688", + "42633": "uniA689", + "42634": "uniA68A", + "42635": "uniA68B", + "42636": "uniA68C", + "42637": "uniA68D", + "42638": "uniA68E", + "42639": "uniA68F", + "42640": "uniA690", + "42641": "uniA691", + "42642": "uniA692", + "42643": "uniA693", + "42644": "uniA694", + "42645": "uniA695", + "42646": "uniA696", + "42647": "uniA697", + "42648": "uniA698", + "42649": "uniA699", + "42650": "uniA69A", + "42651": "uniA69B", + "42652": "uniA69C", + "42653": "uniA69D", + "42654": "uniA69E", + "42655": "uniA69F", + "42752": "uniA700", + "42753": "uniA701", + "42754": "uniA702", + "42755": "uniA703", + "42756": "uniA704", + "42757": "uniA705", + "42758": "uniA706", + "42759": "uniA707", + "42760": "uniA708", + "42761": "uniA709", + "42762": "uniA70A", + "42763": "uniA70B", + "42764": "uniA70C", + "42765": "uniA70D", + "42766": "uniA70E", + "42767": "uniA70F", + "42768": "uniA710", + "42769": "uniA711", + "42770": "uniA712", + "42771": "uniA713", + "42772": "uniA714", + "42773": "uniA715", + "42774": "uniA716", + "42775": "uniA717", + "42776": "uniA718", + "42777": "uniA719", + "42778": "uniA71A", + "42779": "uniA71B", + "42780": "uniA71C", + "42781": "uniA71D", + "42782": "uniA71E", + "42783": "uniA71F", + "42784": "uniA720", + "42785": "uniA721", + "42786": "uniA722", + "42787": "uniA723", + "42788": "uniA724", + "42789": "uniA725", + "42790": "uniA726", + "42791": "uniA727", + "42792": "uniA728", + "42793": "uniA729", + "42794": "uniA72A", + "42795": "uniA72B", + "42796": "uniA72C", + "42797": "uniA72D", + "42798": "uniA72E", + "42799": "uniA72F", + "42800": "uniA730", + "42801": "uniA731", + "42802": "uniA732", + "42803": "uniA733", + "42804": "uniA734", + "42805": "uniA735", + "42806": "uniA736", + "42807": "uniA737", + "42808": "uniA738", + "42809": "uniA739", + "42810": "uniA73A", + "42811": "uniA73B", + "42812": "uniA73C", + "42813": "uniA73D", + "42814": "uniA73E", + "42815": "uniA73F", + "42816": "uniA740", + "42817": "uniA741", + "42818": "uniA742", + "42819": "uniA743", + "42820": "uniA744", + "42821": "uniA745", + "42822": "uniA746", + "42823": "uniA747", + "42824": "uniA748", + "42825": "uniA749", + "42826": "uniA74A", + "42827": "uniA74B", + "42828": "uniA74C", + "42829": "uniA74D", + "42830": "uniA74E", + "42831": "uniA74F", + "42832": "uniA750", + "42833": "uniA751", + "42834": "uniA752", + "42835": "uniA753", + "42836": "uniA754", + "42837": "uniA755", + "42838": "uniA756", + "42839": "uniA757", + "42840": "uniA758", + "42841": "uniA759", + "42842": "uniA75A", + "42843": "uniA75B", + "42844": "uniA75C", + "42845": "uniA75D", + "42846": "uniA75E", + "42847": "uniA75F", + "42848": "uniA760", + "42849": "uniA761", + "42850": "uniA762", + "42851": "uniA763", + "42852": "uniA764", + "42853": "uniA765", + "42854": "uniA766", + "42855": "uniA767", + "42856": "uniA768", + "42857": "uniA769", + "42858": "uniA76A", + "42859": "uniA76B", + "42860": "uniA76C", + "42861": "uniA76D", + "42862": "uniA76E", + "42863": "uniA76F", + "42864": "uniA770", + "42865": "uniA771", + "42866": "uniA772", + "42867": "uniA773", + "42868": "uniA774", + "42869": "uniA775", + "42870": "uniA776", + "42871": "uniA777", + "42872": "uniA778", + "42873": "uniA779", + "42874": "uniA77A", + "42875": "uniA77B", + "42876": "uniA77C", + "42877": "uniA77D", + "42878": "uniA77E", + "42879": "uniA77F", + "42880": "uniA780", + "42881": "uniA781", + "42882": "uniA782", + "42883": "uniA783", + "42884": "uniA784", + "42885": "uniA785", + "42886": "uniA786", + "42887": "uniA787", + "42888": "uniA788", + "42889": "uniA789", + "42890": "uniA78A", + "42891": "uniA78B", + "42892": "uniA78C", + "42893": "uniA78D", + "42894": "uniA78E", + "42895": "uniA78F", + "42896": "uniA790", + "42897": "uniA791", + "42898": "uniA792", + "42899": "uniA793", + "42900": "uniA794", + "42901": "uniA795", + "42902": "uniA796", + "42903": "uniA797", + "42904": "uniA798", + "42905": "uniA799", + "42906": "uniA79A", + "42907": "uniA79B", + "42908": "uniA79C", + "42909": "uniA79D", + "42910": "uniA79E", + "42911": "uniA79F", + "42912": "uniA7A0", + "42913": "uniA7A1", + "42914": "uniA7A2", + "42915": "uniA7A3", + "42916": "uniA7A4", + "42917": "uniA7A5", + "42918": "uniA7A6", + "42919": "uniA7A7", + "42920": "uniA7A8", + "42921": "uniA7A9", + "42922": "uniA7AA", + "42923": "uniA7AB", + "42924": "uniA7AC", + "42925": "uniA7AD", + "42926": "uniA7AE", + "42928": "uniA7B0", + "42929": "uniA7B1", + "42930": "uniA7B2", + "42931": "uniA7B3", + "42932": "uniA7B4", + "42933": "uniA7B5", + "42934": "uniA7B6", + "42935": "uniA7B7", + "42999": "uniA7F7", + "43000": "uniA7F8", + "43001": "uniA7F9", + "43002": "uniA7FA", + "43003": "uniA7FB", + "43004": "uniA7FC", + "43005": "uniA7FD", + "43006": "uniA7FE", + "43007": "uniA7FF", + "43310": "uniA92E", + "43824": "uniAB30", + "43825": "uniAB31", + "43826": "uniAB32", + "43827": "uniAB33", + "43828": "uniAB34", + "43829": "uniAB35", + "43830": "uniAB36", + "43831": "uniAB37", + "43832": "uniAB38", + "43833": "uniAB39", + "43834": "uniAB3A", + "43835": "uniAB3B", + "43836": "uniAB3C", + "43837": "uniAB3D", + "43838": "uniAB3E", + "43839": "uniAB3F", + "43840": "uniAB40", + "43841": "uniAB41", + "43842": "uniAB42", + "43843": "uniAB43", + "43844": "uniAB44", + "43845": "uniAB45", + "43846": "uniAB46", + "43847": "uniAB47", + "43848": "uniAB48", + "43849": "uniAB49", + "43850": "uniAB4A", + "43851": "uniAB4B", + "43852": "uniAB4C", + "43853": "uniAB4D", + "43854": "uniAB4E", + "43855": "uniAB4F", + "43856": "uniAB50", + "43857": "uniAB51", + "43858": "uniAB52", + "43859": "uniAB53", + "43860": "uniAB54", + "43861": "uniAB55", + "43862": "uniAB56", + "43863": "uniAB57", + "43864": "uniAB58", + "43865": "uniAB59", + "43866": "uniAB5A", + "43867": "uniAB5B", + "43868": "uniAB5C", + "43869": "uniAB5D", + "43870": "uniAB5E", + "43871": "uniAB5F", + "43872": "uniAB60", + "43873": "uniAB61", + "43874": "uniAB62", + "43875": "uniAB63", + "43876": "uniAB64", + "43877": "uniAB65", + "64256": "uniFB00", + "64257": "uniFB01", + "64258": "uniFB02", + "64259": "uniFB03", + "64260": "uniFB04", + "64261": "uniFB05", + "64262": "uniFB06", + "65024": "uniFE00", + "65056": "uniFE20", + "65057": "uniFE21", + "65058": "uniFE22", + "65059": "uniFE23", + "65060": "uniFE24", + "65061": "uniFE25", + "65062": "uniFE26", + "65063": "uniFE27", + "65064": "uniFE28", + "65065": "uniFE29", + "65066": "uniFE2A", + "65067": "uniFE2B", + "65068": "uniFE2C", + "65069": "uniFE2D", + "65070": "uniFE2E", + "65071": "uniFE2F", + "65279": "uniFEFF", + "65532": "uniFFFC", + "65533": "uniFFFD" + }, + "glyf": { + ".notdef": { + "advanceWidth": 232 + }, + "space": { + "advanceWidth": 232 + }, + "exclam": { + "advanceWidth": 262, + "contours": [ + [{"x":169,"y":211,"on":true},{"x":94,"y":211,"on":true},{"x":70,"y":714,"on":true},{"x":192,"y":714,"on":true}], + [{"x":65,"y":59,"on":true},{"x":65,"y":96,"on":false},{"x":101,"y":130,"on":false},{"x":131,"y":130,"on":true},{"x":159,"y":130,"on":false},{"x":197,"y":97,"on":false},{"x":197,"y":59,"on":true},{"x":197,"y":22,"on":false},{"x":158,"y":-12,"on":false},{"x":131,"y":-12,"on":true},{"x":102,"y":-12,"on":false},{"x":65,"y":22,"on":false}] + ] + }, + "quotedbl": { + "advanceWidth": 416, + "contours": [ + [{"x":169,"y":714,"on":true},{"x":150,"y":456,"on":true},{"x":80,"y":456,"on":true},{"x":61,"y":714,"on":true}], + [{"x":355,"y":714,"on":true},{"x":337,"y":456,"on":true},{"x":267,"y":456,"on":true},{"x":248,"y":714,"on":true}] + ] + }, + "numbersign": { + "advanceWidth": 583, + "contours": [ + [{"x":440,"y":433,"on":true},{"x":415,"y":284,"on":true},{"x":532,"y":284,"on":true},{"x":532,"y":208,"on":true},{"x":402,"y":208,"on":true},{"x":367,"y":0,"on":true},{"x":288,"y":0,"on":true},{"x":324,"y":208,"on":true},{"x":208,"y":208,"on":true},{"x":174,"y":0,"on":true},{"x":97,"y":0,"on":true},{"x":131,"y":208,"on":true},{"x":22,"y":208,"on":true},{"x":22,"y":284,"on":true},{"x":144,"y":284,"on":true},{"x":169,"y":433,"on":true},{"x":54,"y":433,"on":true},{"x":54,"y":509,"on":true},{"x":181,"y":509,"on":true},{"x":215,"y":714,"on":true},{"x":294,"y":714,"on":true},{"x":260,"y":509,"on":true},{"x":376,"y":509,"on":true},{"x":410,"y":714,"on":true},{"x":487,"y":714,"on":true},{"x":452,"y":509,"on":true},{"x":562,"y":509,"on":true},{"x":562,"y":433,"on":true}], + [{"x":221,"y":284,"on":true},{"x":337,"y":284,"on":true},{"x":362,"y":433,"on":true},{"x":247,"y":433,"on":true}] + ] + }, + "dollar": { + "advanceWidth": 524, + "contours": [ + [{"x":232,"y":-58,"on":true},{"x":232,"y":47,"on":true},{"x":179,"y":48,"on":false},{"x":85,"y":67,"on":false},{"x":52,"y":82,"on":true},{"x":52,"y":178,"on":true},{"x":85,"y":160,"on":false},{"x":184,"y":132,"on":false},{"x":232,"y":131,"on":true},{"x":232,"y":325,"on":true},{"x":136,"y":357,"on":false},{"x":51,"y":440,"on":false},{"x":51,"y":510,"on":true},{"x":51,"y":583,"on":false},{"x":150,"y":669,"on":false},{"x":232,"y":676,"on":true},{"x":232,"y":759,"on":true},{"x":292,"y":759,"on":true},{"x":292,"y":677,"on":true},{"x":340,"y":676,"on":false},{"x":423,"y":656,"on":false},{"x":460,"y":639,"on":true},{"x":430,"y":557,"on":true},{"x":365,"y":586,"on":false},{"x":292,"y":591,"on":true},{"x":292,"y":401,"on":true},{"x":350,"y":381,"on":false},{"x":433,"y":336,"on":false},{"x":477,"y":272,"on":false},{"x":477,"y":222,"on":true},{"x":477,"y":153,"on":false},{"x":381,"y":62,"on":false},{"x":292,"y":51,"on":true},{"x":292,"y":-58,"on":true}], + [{"x":232,"y":424,"on":true},{"x":232,"y":590,"on":true},{"x":189,"y":586,"on":false},{"x":147,"y":544,"on":false},{"x":147,"y":513,"on":true},{"x":147,"y":478,"on":false},{"x":184,"y":440,"on":false}], + [{"x":292,"y":136,"on":true},{"x":338,"y":143,"on":false},{"x":382,"y":184,"on":false},{"x":382,"y":216,"on":true},{"x":382,"y":248,"on":false},{"x":342,"y":286,"on":false},{"x":292,"y":303,"on":true}] + ] + }, + "percent": { + "advanceWidth": 794, + "contours": [ + [{"x":183,"y":724,"on":true},{"x":253,"y":724,"on":false},{"x":328,"y":607,"on":false},{"x":328,"y":501,"on":true},{"x":328,"y":394,"on":false},{"x":256,"y":276,"on":false},{"x":183,"y":276,"on":true},{"x":114,"y":276,"on":false},{"x":41,"y":395,"on":false},{"x":41,"y":501,"on":true},{"x":41,"y":608,"on":false},{"x":111,"y":724,"on":false}], + [{"x":611,"y":714,"on":true},{"x":266,"y":0,"on":true},{"x":182,"y":0,"on":true},{"x":527,"y":714,"on":true}], + [{"x":183,"y":652,"on":true},{"x":152,"y":652,"on":false},{"x":125,"y":577,"on":false},{"x":125,"y":501,"on":true},{"x":125,"y":424,"on":false},{"x":152,"y":349,"on":false},{"x":183,"y":349,"on":true},{"x":244,"y":349,"on":false},{"x":244,"y":501,"on":true},{"x":244,"y":652,"on":false}], + [{"x":609,"y":439,"on":true},{"x":679,"y":439,"on":false},{"x":753,"y":322,"on":false},{"x":753,"y":216,"on":true},{"x":753,"y":109,"on":false},{"x":682,"y":-9,"on":false},{"x":609,"y":-9,"on":true},{"x":540,"y":-9,"on":false},{"x":467,"y":110,"on":false},{"x":467,"y":216,"on":true},{"x":467,"y":323,"on":false},{"x":537,"y":439,"on":false}], + [{"x":609,"y":366,"on":true},{"x":578,"y":366,"on":false},{"x":551,"y":291,"on":false},{"x":551,"y":215,"on":true},{"x":551,"y":139,"on":false},{"x":578,"y":63,"on":false},{"x":609,"y":63,"on":true},{"x":669,"y":63,"on":false},{"x":669,"y":215,"on":true},{"x":669,"y":366,"on":false}] + ] + }, + "ampersand": { + "advanceWidth": 653, + "contours": [ + [{"x":274,"y":724,"on":true},{"x":349,"y":724,"on":false},{"x":437,"y":644,"on":false},{"x":437,"y":570,"on":true},{"x":437,"y":508,"on":false},{"x":368,"y":416,"on":false},{"x":313,"y":379,"on":true},{"x":460,"y":214,"on":true},{"x":480,"y":243,"on":false},{"x":505,"y":317,"on":false},{"x":513,"y":360,"on":true},{"x":618,"y":360,"on":true},{"x":606,"y":302,"on":false},{"x":560,"y":186,"on":false},{"x":526,"y":140,"on":true},{"x":653,"y":0,"on":true},{"x":522,"y":0,"on":true},{"x":458,"y":72,"on":true},{"x":416,"y":34,"on":false},{"x":317,"y":-10,"on":false},{"x":249,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":41,"y":97,"on":false},{"x":41,"y":187,"on":true},{"x":41,"y":258,"on":false},{"x":112,"y":352,"on":false},{"x":176,"y":393,"on":true},{"x":143,"y":435,"on":false},{"x":103,"y":516,"on":false},{"x":103,"y":568,"on":true},{"x":103,"y":641,"on":false},{"x":195,"y":724,"on":false}], + [{"x":272,"y":643,"on":true},{"x":241,"y":643,"on":false},{"x":200,"y":604,"on":false},{"x":200,"y":567,"on":true},{"x":200,"y":535,"on":false},{"x":230,"y":472,"on":false},{"x":256,"y":441,"on":true},{"x":300,"y":470,"on":false},{"x":340,"y":530,"on":false},{"x":340,"y":568,"on":true},{"x":340,"y":604,"on":false},{"x":302,"y":643,"on":false}], + [{"x":232,"y":329,"on":true},{"x":191,"y":300,"on":false},{"x":148,"y":238,"on":false},{"x":148,"y":192,"on":true},{"x":148,"y":141,"on":false},{"x":208,"y":80,"on":false},{"x":257,"y":80,"on":true},{"x":303,"y":80,"on":false},{"x":371,"y":113,"on":false},{"x":397,"y":141,"on":true}] + ] + }, + "quotesingle": { + "advanceWidth": 229, + "contours": [ + [{"x":169,"y":714,"on":true},{"x":150,"y":456,"on":true},{"x":80,"y":456,"on":true},{"x":61,"y":714,"on":true}] + ] + }, + "parenleft": { + "advanceWidth": 306, + "contours": [ + [{"x":43,"y":276,"on":true},{"x":43,"y":400,"on":false},{"x":115,"y":628,"on":false},{"x":187,"y":717,"on":true},{"x":278,"y":717,"on":true},{"x":210,"y":622,"on":false},{"x":142,"y":396,"on":false},{"x":142,"y":277,"on":true},{"x":142,"y":159,"on":false},{"x":211,"y":-64,"on":false},{"x":277,"y":-158,"on":true},{"x":187,"y":-158,"on":true},{"x":114,"y":-71,"on":false},{"x":43,"y":152,"on":false}] + ] + }, + "parenright": { + "advanceWidth": 306, + "contours": [ + [{"x":264,"y":276,"on":true},{"x":264,"y":152,"on":false},{"x":192,"y":-71,"on":false},{"x":119,"y":-158,"on":true},{"x":29,"y":-158,"on":true},{"x":95,"y":-64,"on":false},{"x":165,"y":160,"on":false},{"x":165,"y":277,"on":true},{"x":165,"y":396,"on":false},{"x":96,"y":622,"on":false},{"x":28,"y":717,"on":true},{"x":119,"y":717,"on":true},{"x":191,"y":628,"on":false},{"x":264,"y":400,"on":false}] + ] + }, + "asterisk": { + "advanceWidth": 499, + "contours": [ + [{"x":300,"y":760,"on":true},{"x":281,"y":592,"on":true},{"x":446,"y":640,"on":true},{"x":462,"y":544,"on":true},{"x":304,"y":531,"on":true},{"x":410,"y":392,"on":true},{"x":322,"y":342,"on":true},{"x":247,"y":495,"on":true},{"x":177,"y":343,"on":true},{"x":88,"y":392,"on":true},{"x":192,"y":531,"on":true},{"x":36,"y":543,"on":true},{"x":53,"y":640,"on":true},{"x":215,"y":592,"on":true},{"x":197,"y":760,"on":true}] + ] + }, + "plus": { + "advanceWidth": 525, + "contours": [ + [{"x":303,"y":393,"on":true},{"x":481,"y":393,"on":true},{"x":481,"y":312,"on":true},{"x":303,"y":312,"on":true},{"x":303,"y":113,"on":true},{"x":221,"y":113,"on":true},{"x":221,"y":312,"on":true},{"x":42,"y":312,"on":true},{"x":42,"y":393,"on":true},{"x":221,"y":393,"on":true},{"x":221,"y":593,"on":true},{"x":303,"y":593,"on":true}] + ] + }, + "comma": { + "advanceWidth": 259, + "contours": [ + [{"x":188,"y":117,"on":true},{"x":195,"y":106,"on":true},{"x":182,"y":48,"on":false},{"x":137,"y":-76,"on":false},{"x":113,"y":-131,"on":true},{"x":37,"y":-131,"on":true},{"x":51,"y":-72,"on":false},{"x":78,"y":64,"on":false},{"x":84,"y":117,"on":true}] + ] + }, + "hyphen": { + "advanceWidth": 308, + "contours": [ + [{"x":33,"y":222,"on":true},{"x":33,"y":314,"on":true},{"x":274,"y":314,"on":true},{"x":274,"y":222,"on":true}] + ] + }, + "period": { + "advanceWidth": 259, + "contours": [ + [{"x":64,"y":59,"on":true},{"x":64,"y":96,"on":false},{"x":100,"y":130,"on":false},{"x":129,"y":130,"on":true},{"x":158,"y":130,"on":false},{"x":195,"y":97,"on":false},{"x":195,"y":59,"on":true},{"x":195,"y":22,"on":false},{"x":157,"y":-12,"on":false},{"x":129,"y":-12,"on":true},{"x":100,"y":-12,"on":false},{"x":64,"y":22,"on":false}] + ] + }, + "slash": { + "advanceWidth": 383, + "contours": [ + [{"x":373,"y":716,"on":true},{"x":108,"y":-2,"on":true},{"x":12,"y":-2,"on":true},{"x":278,"y":716,"on":true}] + ] + }, + "zero": { + "advanceWidth": 524, + "contours": [ + [{"x":480,"y":357,"on":true},{"x":480,"y":243,"on":false},{"x":437,"y":78,"on":false},{"x":340,"y":-10,"on":false},{"x":261,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":43,"y":171,"on":false},{"x":43,"y":357,"on":true},{"x":43,"y":536,"on":false},{"x":145,"y":725,"on":false},{"x":261,"y":725,"on":true},{"x":372,"y":725,"on":false},{"x":480,"y":535,"on":false}], + [{"x":147,"y":357,"on":true},{"x":147,"y":217,"on":false},{"x":198,"y":79,"on":false},{"x":261,"y":79,"on":true},{"x":323,"y":79,"on":false},{"x":376,"y":217,"on":false},{"x":376,"y":357,"on":true},{"x":376,"y":496,"on":false},{"x":323,"y":636,"on":false},{"x":261,"y":636,"on":true},{"x":198,"y":636,"on":false},{"x":147,"y":497,"on":false}] + ] + }, + "one": { + "advanceWidth": 524, + "contours": [ + [{"x":350,"y":0,"on":true},{"x":248,"y":0,"on":true},{"x":248,"y":469,"on":true},{"x":248,"y":505,"on":false},{"x":250,"y":568,"on":false},{"x":252,"y":599,"on":true},{"x":242,"y":588,"on":false},{"x":216,"y":564,"on":false},{"x":199,"y":548,"on":true},{"x":127,"y":486,"on":true},{"x":72,"y":551,"on":true},{"x":263,"y":714,"on":true},{"x":350,"y":714,"on":true}] + ] + }, + "two": { + "advanceWidth": 524, + "contours": [ + [{"x":477,"y":0,"on":true},{"x":41,"y":0,"on":true},{"x":41,"y":79,"on":true},{"x":209,"y":271,"on":true},{"x":258,"y":328,"on":false},{"x":321,"y":411,"on":false},{"x":351,"y":486,"on":false},{"x":351,"y":529,"on":true},{"x":351,"y":579,"on":false},{"x":295,"y":635,"on":false},{"x":246,"y":635,"on":true},{"x":204,"y":635,"on":false},{"x":136,"y":602,"on":false},{"x":99,"y":571,"on":true},{"x":45,"y":640,"on":true},{"x":87,"y":678,"on":false},{"x":185,"y":724,"on":false},{"x":252,"y":724,"on":true},{"x":346,"y":724,"on":false},{"x":455,"y":621,"on":false},{"x":455,"y":536,"on":true},{"x":455,"y":480,"on":false},{"x":417,"y":385,"on":false},{"x":344,"y":290,"on":false},{"x":292,"y":234,"on":true},{"x":168,"y":96,"on":true},{"x":168,"y":92,"on":true},{"x":477,"y":92,"on":true}] + ] + }, + "three": { + "advanceWidth": 524, + "contours": [ + [{"x":455,"y":549,"on":true},{"x":455,"y":480,"on":false},{"x":381,"y":392,"on":false},{"x":317,"y":376,"on":true},{"x":317,"y":372,"on":true},{"x":395,"y":360,"on":false},{"x":474,"y":272,"on":false},{"x":474,"y":202,"on":true},{"x":474,"y":108,"on":false},{"x":350,"y":-10,"on":false},{"x":222,"y":-10,"on":true},{"x":170,"y":-10,"on":false},{"x":82,"y":6,"on":false},{"x":41,"y":26,"on":true},{"x":41,"y":121,"on":true},{"x":82,"y":99,"on":false},{"x":173,"y":77,"on":false},{"x":216,"y":77,"on":true},{"x":296,"y":77,"on":false},{"x":365,"y":146,"on":false},{"x":365,"y":206,"on":true},{"x":365,"y":325,"on":false},{"x":192,"y":325,"on":true},{"x":138,"y":325,"on":true},{"x":138,"y":411,"on":true},{"x":194,"y":411,"on":true},{"x":274,"y":411,"on":false},{"x":352,"y":480,"on":false},{"x":352,"y":536,"on":true},{"x":352,"y":584,"on":false},{"x":294,"y":637,"on":false},{"x":242,"y":637,"on":true},{"x":194,"y":637,"on":false},{"x":124,"y":606,"on":false},{"x":91,"y":582,"on":true},{"x":42,"y":654,"on":true},{"x":82,"y":686,"on":false},{"x":183,"y":724,"on":false},{"x":249,"y":724,"on":true},{"x":349,"y":724,"on":false},{"x":455,"y":628,"on":false}] + ] + }, + "four": { + "advanceWidth": 524, + "contours": [ + [{"x":507,"y":156,"on":true},{"x":417,"y":156,"on":true},{"x":417,"y":0,"on":true},{"x":317,"y":0,"on":true},{"x":317,"y":156,"on":true},{"x":19,"y":156,"on":true},{"x":19,"y":238,"on":true},{"x":313,"y":718,"on":true},{"x":417,"y":718,"on":true},{"x":417,"y":243,"on":true},{"x":507,"y":243,"on":true}], + [{"x":316,"y":243,"on":true},{"x":316,"y":454,"on":true},{"x":316,"y":492,"on":false},{"x":320,"y":571,"on":false},{"x":321,"y":595,"on":true},{"x":317,"y":595,"on":true},{"x":299,"y":550,"on":false},{"x":278,"y":515,"on":true},{"x":113,"y":243,"on":true}] + ] + }, + "five": { + "advanceWidth": 524, + "contours": [ + [{"x":261,"y":444,"on":true},{"x":357,"y":444,"on":false},{"x":474,"y":330,"on":false},{"x":474,"y":231,"on":true},{"x":474,"y":120,"on":false},{"x":344,"y":-10,"on":false},{"x":223,"y":-10,"on":true},{"x":173,"y":-10,"on":false},{"x":86,"y":8,"on":false},{"x":55,"y":26,"on":true},{"x":55,"y":122,"on":true},{"x":89,"y":102,"on":false},{"x":179,"y":78,"on":false},{"x":220,"y":78,"on":true},{"x":290,"y":78,"on":false},{"x":368,"y":154,"on":false},{"x":368,"y":224,"on":true},{"x":368,"y":288,"on":false},{"x":295,"y":357,"on":false},{"x":220,"y":357,"on":true},{"x":194,"y":357,"on":false},{"x":134,"y":348,"on":false},{"x":112,"y":341,"on":true},{"x":68,"y":372,"on":true},{"x":93,"y":714,"on":true},{"x":428,"y":714,"on":true},{"x":428,"y":622,"on":true},{"x":181,"y":622,"on":true},{"x":166,"y":434,"on":true},{"x":185,"y":437,"on":false},{"x":232,"y":444,"on":false}] + ] + }, + "six": { + "advanceWidth": 524, + "contours": [ + [{"x":46,"y":304,"on":true},{"x":46,"y":388,"on":false},{"x":73,"y":539,"on":false},{"x":140,"y":657,"on":false},{"x":258,"y":724,"on":false},{"x":349,"y":724,"on":true},{"x":370,"y":724,"on":false},{"x":418,"y":720,"on":false},{"x":435,"y":715,"on":true},{"x":435,"y":627,"on":true},{"x":399,"y":638,"on":false},{"x":354,"y":638,"on":true},{"x":278,"y":638,"on":false},{"x":189,"y":571,"on":false},{"x":149,"y":450,"on":false},{"x":146,"y":371,"on":true},{"x":151,"y":371,"on":true},{"x":171,"y":407,"on":false},{"x":243,"y":454,"on":false},{"x":297,"y":454,"on":true},{"x":383,"y":454,"on":false},{"x":482,"y":333,"on":false},{"x":482,"y":231,"on":true},{"x":482,"y":122,"on":false},{"x":371,"y":-10,"on":false},{"x":272,"y":-10,"on":true},{"x":206,"y":-10,"on":false},{"x":104,"y":60,"on":false},{"x":46,"y":200,"on":false}], + [{"x":270,"y":78,"on":true},{"x":320,"y":78,"on":false},{"x":380,"y":153,"on":false},{"x":380,"y":230,"on":true},{"x":380,"y":296,"on":false},{"x":326,"y":370,"on":false},{"x":272,"y":370,"on":true},{"x":235,"y":370,"on":false},{"x":181,"y":335,"on":false},{"x":151,"y":280,"on":false},{"x":151,"y":250,"on":true},{"x":151,"y":210,"on":false},{"x":177,"y":131,"on":false},{"x":230,"y":78,"on":false}] + ] + }, + "seven": { + "advanceWidth": 524, + "contours": [ + [{"x":115,"y":0,"on":true},{"x":374,"y":622,"on":true},{"x":36,"y":622,"on":true},{"x":36,"y":714,"on":true},{"x":483,"y":714,"on":true},{"x":483,"y":640,"on":true},{"x":226,"y":0,"on":true}] + ] + }, + "eight": { + "advanceWidth": 524, + "contours": [ + [{"x":262,"y":724,"on":true},{"x":350,"y":724,"on":false},{"x":462,"y":636,"on":false},{"x":462,"y":554,"on":true},{"x":462,"y":492,"on":false},{"x":394,"y":406,"on":false},{"x":338,"y":376,"on":true},{"x":400,"y":342,"on":false},{"x":483,"y":253,"on":false},{"x":483,"y":184,"on":true},{"x":483,"y":125,"on":false},{"x":428,"y":38,"on":false},{"x":330,"y":-10,"on":false},{"x":264,"y":-10,"on":true},{"x":157,"y":-10,"on":false},{"x":41,"y":92,"on":false},{"x":41,"y":180,"on":true},{"x":41,"y":249,"on":false},{"x":116,"y":342,"on":false},{"x":174,"y":373,"on":true},{"x":124,"y":406,"on":false},{"x":61,"y":493,"on":false},{"x":61,"y":554,"on":true},{"x":61,"y":608,"on":false},{"x":114,"y":684,"on":false},{"x":204,"y":724,"on":false}], + [{"x":261,"y":642,"on":true},{"x":217,"y":642,"on":false},{"x":161,"y":592,"on":false},{"x":161,"y":548,"on":true},{"x":161,"y":501,"on":false},{"x":218,"y":444,"on":false},{"x":263,"y":421,"on":true},{"x":308,"y":444,"on":false},{"x":362,"y":502,"on":false},{"x":362,"y":548,"on":true},{"x":362,"y":592,"on":false},{"x":307,"y":642,"on":false}], + [{"x":140,"y":182,"on":true},{"x":140,"y":134,"on":false},{"x":200,"y":72,"on":false},{"x":262,"y":72,"on":true},{"x":321,"y":72,"on":false},{"x":383,"y":134,"on":false},{"x":383,"y":184,"on":true},{"x":383,"y":228,"on":false},{"x":320,"y":292,"on":false},{"x":267,"y":319,"on":true},{"x":251,"y":328,"on":true},{"x":196,"y":300,"on":false},{"x":140,"y":232,"on":false}] + ] + }, + "nine": { + "advanceWidth": 524, + "contours": [ + [{"x":477,"y":412,"on":true},{"x":477,"y":328,"on":false},{"x":449,"y":176,"on":false},{"x":382,"y":58,"on":false},{"x":264,"y":-10,"on":false},{"x":174,"y":-10,"on":true},{"x":154,"y":-10,"on":false},{"x":102,"y":-6,"on":false},{"x":86,"y":-1,"on":true},{"x":86,"y":88,"on":true},{"x":104,"y":82,"on":false},{"x":147,"y":76,"on":false},{"x":169,"y":76,"on":true},{"x":248,"y":76,"on":false},{"x":337,"y":148,"on":false},{"x":375,"y":269,"on":false},{"x":378,"y":342,"on":true},{"x":372,"y":342,"on":true},{"x":352,"y":306,"on":false},{"x":282,"y":260,"on":false},{"x":226,"y":260,"on":true},{"x":140,"y":260,"on":false},{"x":41,"y":380,"on":false},{"x":41,"y":482,"on":true},{"x":41,"y":592,"on":false},{"x":154,"y":724,"on":false},{"x":254,"y":724,"on":true},{"x":352,"y":724,"on":false},{"x":477,"y":567,"on":false}], + [{"x":255,"y":636,"on":true},{"x":205,"y":636,"on":false},{"x":144,"y":561,"on":false},{"x":144,"y":484,"on":true},{"x":144,"y":417,"on":false},{"x":197,"y":344,"on":false},{"x":252,"y":344,"on":true},{"x":290,"y":344,"on":false},{"x":344,"y":380,"on":false},{"x":373,"y":436,"on":false},{"x":373,"y":466,"on":true},{"x":373,"y":502,"on":false},{"x":349,"y":581,"on":false},{"x":296,"y":636,"on":false}] + ] + }, + "colon": { + "advanceWidth": 260, + "contours": [ + [{"x":64,"y":477,"on":true},{"x":64,"y":515,"on":false},{"x":101,"y":549,"on":false},{"x":130,"y":549,"on":true},{"x":158,"y":549,"on":false},{"x":196,"y":515,"on":false},{"x":196,"y":477,"on":true},{"x":196,"y":440,"on":false},{"x":158,"y":406,"on":false},{"x":130,"y":406,"on":true},{"x":101,"y":406,"on":false},{"x":64,"y":440,"on":false}], + [{"x":64,"y":59,"on":true},{"x":64,"y":96,"on":false},{"x":101,"y":130,"on":false},{"x":130,"y":130,"on":true},{"x":158,"y":130,"on":false},{"x":196,"y":97,"on":false},{"x":196,"y":59,"on":true},{"x":196,"y":22,"on":false},{"x":158,"y":-12,"on":false},{"x":130,"y":-12,"on":true},{"x":101,"y":-12,"on":false},{"x":64,"y":22,"on":false}] + ] + }, + "semicolon": { + "advanceWidth": 260, + "contours": [ + [{"x":63,"y":477,"on":true},{"x":63,"y":515,"on":false},{"x":100,"y":549,"on":false},{"x":129,"y":549,"on":true},{"x":158,"y":549,"on":false},{"x":195,"y":515,"on":false},{"x":195,"y":477,"on":true},{"x":195,"y":440,"on":false},{"x":157,"y":406,"on":false},{"x":129,"y":406,"on":true},{"x":100,"y":406,"on":false},{"x":63,"y":440,"on":false}], + [{"x":184,"y":117,"on":true},{"x":191,"y":106,"on":true},{"x":178,"y":48,"on":false},{"x":133,"y":-77,"on":false},{"x":109,"y":-131,"on":true},{"x":32,"y":-131,"on":true},{"x":47,"y":-72,"on":false},{"x":74,"y":64,"on":false},{"x":81,"y":117,"on":true}] + ] + }, + "less": { + "advanceWidth": 525, + "contours": [ + [{"x":482,"y":117,"on":true},{"x":41,"y":324,"on":true},{"x":41,"y":379,"on":true},{"x":482,"y":602,"on":true},{"x":482,"y":513,"on":true},{"x":151,"y":354,"on":true},{"x":482,"y":207,"on":true}] + ] + }, + "equal": { + "advanceWidth": 525, + "contours": [ + [{"x":44,"y":413,"on":true},{"x":44,"y":494,"on":true},{"x":479,"y":494,"on":true},{"x":479,"y":413,"on":true}], + [{"x":44,"y":210,"on":true},{"x":44,"y":291,"on":true},{"x":479,"y":291,"on":true},{"x":479,"y":210,"on":true}] + ] + }, + "greater": { + "advanceWidth": 525, + "contours": [ + [{"x":42,"y":207,"on":true},{"x":372,"y":353,"on":true},{"x":42,"y":513,"on":true},{"x":42,"y":602,"on":true},{"x":483,"y":379,"on":true},{"x":483,"y":324,"on":true},{"x":42,"y":117,"on":true}] + ] + }, + "question": { + "advanceWidth": 405, + "contours": [ + [{"x":124,"y":211,"on":true},{"x":124,"y":241,"on":true},{"x":124,"y":294,"on":false},{"x":156,"y":366,"on":false},{"x":200,"y":405,"on":true},{"x":231,"y":434,"on":false},{"x":267,"y":477,"on":false},{"x":283,"y":519,"on":false},{"x":283,"y":546,"on":true},{"x":283,"y":590,"on":false},{"x":232,"y":635,"on":false},{"x":186,"y":635,"on":true},{"x":146,"y":635,"on":false},{"x":79,"y":612,"on":false},{"x":46,"y":594,"on":true},{"x":10,"y":672,"on":true},{"x":49,"y":696,"on":false},{"x":140,"y":724,"on":false},{"x":193,"y":724,"on":true},{"x":284,"y":724,"on":false},{"x":382,"y":632,"on":false},{"x":382,"y":552,"on":true},{"x":382,"y":508,"on":false},{"x":357,"y":446,"on":false},{"x":310,"y":392,"on":false},{"x":276,"y":360,"on":true},{"x":248,"y":334,"on":false},{"x":219,"y":296,"on":false},{"x":208,"y":258,"on":false},{"x":208,"y":232,"on":true},{"x":208,"y":211,"on":true}], + [{"x":103,"y":59,"on":true},{"x":103,"y":96,"on":false},{"x":140,"y":130,"on":false},{"x":170,"y":130,"on":true},{"x":198,"y":130,"on":false},{"x":235,"y":97,"on":false},{"x":235,"y":59,"on":true},{"x":235,"y":22,"on":false},{"x":197,"y":-12,"on":false},{"x":170,"y":-12,"on":true},{"x":141,"y":-12,"on":false},{"x":103,"y":22,"on":false}] + ] + }, + "at": { + "advanceWidth": 815, + "contours": [ + [{"x":764,"y":359,"on":true},{"x":764,"y":292,"on":false},{"x":728,"y":178,"on":false},{"x":658,"y":110,"on":false},{"x":605,"y":110,"on":true},{"x":563,"y":110,"on":false},{"x":514,"y":156,"on":false},{"x":506,"y":192,"on":true},{"x":501,"y":192,"on":true},{"x":484,"y":154,"on":false},{"x":424,"y":110,"on":false},{"x":381,"y":110,"on":true},{"x":310,"y":110,"on":false},{"x":233,"y":211,"on":false},{"x":233,"y":297,"on":true},{"x":233,"y":400,"on":false},{"x":338,"y":525,"on":false},{"x":429,"y":525,"on":true},{"x":467,"y":525,"on":false},{"x":544,"y":511,"on":false},{"x":569,"y":501,"on":true},{"x":560,"y":296,"on":true},{"x":559,"y":281,"on":false},{"x":559,"y":259,"on":false},{"x":559,"y":253,"on":true},{"x":559,"y":210,"on":false},{"x":587,"y":179,"on":false},{"x":608,"y":179,"on":true},{"x":646,"y":179,"on":false},{"x":685,"y":278,"on":false},{"x":685,"y":361,"on":true},{"x":686,"y":449,"on":false},{"x":622,"y":577,"on":false},{"x":508,"y":646,"on":false},{"x":434,"y":646,"on":true},{"x":359,"y":646,"on":false},{"x":245,"y":590,"on":false},{"x":170,"y":491,"on":false},{"x":132,"y":362,"on":false},{"x":132,"y":289,"on":true},{"x":132,"y":149,"on":false},{"x":266,"y":-15,"on":false},{"x":398,"y":-15,"on":true},{"x":450,"y":-15,"on":false},{"x":552,"y":10,"on":false},{"x":593,"y":27,"on":true},{"x":593,"y":-47,"on":true},{"x":552,"y":-65,"on":false},{"x":456,"y":-86,"on":false},{"x":398,"y":-86,"on":true},{"x":234,"y":-86,"on":false},{"x":52,"y":108,"on":false},{"x":52,"y":284,"on":true},{"x":52,"y":410,"on":false},{"x":146,"y":606,"on":false},{"x":317,"y":716,"on":false},{"x":434,"y":716,"on":true},{"x":532,"y":716,"on":false},{"x":681,"y":627,"on":false},{"x":764,"y":466,"on":false}], + [{"x":317,"y":295,"on":true},{"x":317,"y":234,"on":false},{"x":358,"y":179,"on":false},{"x":393,"y":179,"on":true},{"x":435,"y":179,"on":false},{"x":474,"y":257,"on":false},{"x":478,"y":330,"on":true},{"x":484,"y":450,"on":true},{"x":474,"y":453,"on":false},{"x":445,"y":457,"on":false},{"x":429,"y":457,"on":true},{"x":390,"y":457,"on":false},{"x":340,"y":414,"on":false},{"x":317,"y":340,"on":false}] + ] + }, + "A": { + "advanceWidth": 587, + "contours": [ + [{"x":476,"y":0,"on":true},{"x":411,"y":207,"on":true},{"x":175,"y":207,"on":true},{"x":110,"y":0,"on":true},{"x":0,"y":0,"on":true},{"x":235,"y":716,"on":true},{"x":351,"y":716,"on":true},{"x":587,"y":0,"on":true}], + [{"x":385,"y":299,"on":true},{"x":322,"y":508,"on":true},{"x":318,"y":522,"on":false},{"x":307,"y":564,"on":false},{"x":296,"y":608,"on":false},{"x":293,"y":623,"on":true},{"x":287,"y":594,"on":false},{"x":271,"y":529,"on":false},{"x":264,"y":508,"on":true},{"x":201,"y":299,"on":true}] + ] + }, + "B": { + "advanceWidth": 596, + "contours": [ + [{"x":86,"y":714,"on":true},{"x":280,"y":714,"on":true},{"x":402,"y":714,"on":false},{"x":528,"y":632,"on":false},{"x":528,"y":538,"on":true},{"x":528,"y":474,"on":false},{"x":467,"y":390,"on":false},{"x":410,"y":379,"on":true},{"x":410,"y":374,"on":true},{"x":472,"y":361,"on":false},{"x":547,"y":284,"on":false},{"x":547,"y":205,"on":true},{"x":547,"y":109,"on":false},{"x":425,"y":0,"on":false},{"x":318,"y":0,"on":true},{"x":86,"y":0,"on":true}], + [{"x":191,"y":415,"on":true},{"x":291,"y":415,"on":true},{"x":363,"y":415,"on":false},{"x":421,"y":470,"on":false},{"x":421,"y":525,"on":true},{"x":421,"y":626,"on":false},{"x":283,"y":626,"on":true},{"x":191,"y":626,"on":true}], + [{"x":191,"y":329,"on":true},{"x":191,"y":89,"on":true},{"x":304,"y":89,"on":true},{"x":377,"y":89,"on":false},{"x":438,"y":154,"on":false},{"x":438,"y":213,"on":true},{"x":438,"y":267,"on":false},{"x":372,"y":329,"on":false},{"x":296,"y":329,"on":true}] + ] + }, + "C": { + "advanceWidth": 569, + "contours": [ + [{"x":362,"y":633,"on":true},{"x":298,"y":633,"on":false},{"x":211,"y":563,"on":false},{"x":165,"y":438,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":228,"on":false},{"x":266,"y":81,"on":false},{"x":364,"y":81,"on":true},{"x":404,"y":81,"on":false},{"x":478,"y":98,"on":false},{"x":515,"y":112,"on":true},{"x":515,"y":21,"on":true},{"x":479,"y":5,"on":false},{"x":401,"y":-10,"on":false},{"x":351,"y":-10,"on":true},{"x":254,"y":-10,"on":false},{"x":122,"y":79,"on":false},{"x":56,"y":244,"on":false},{"x":56,"y":357,"on":true},{"x":56,"y":464,"on":false},{"x":126,"y":629,"on":false},{"x":262,"y":724,"on":false},{"x":361,"y":724,"on":true},{"x":458,"y":724,"on":false},{"x":540,"y":682,"on":true},{"x":502,"y":595,"on":true},{"x":471,"y":611,"on":false},{"x":402,"y":633,"on":false}] + ] + }, + "D": { + "advanceWidth": 658, + "contours": [ + [{"x":603,"y":365,"on":true},{"x":603,"y":184,"on":false},{"x":428,"y":0,"on":false},{"x":268,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":284,"y":714,"on":true},{"x":432,"y":714,"on":false},{"x":603,"y":536,"on":false}], + [{"x":493,"y":361,"on":true},{"x":493,"y":496,"on":false},{"x":382,"y":624,"on":false},{"x":279,"y":624,"on":true},{"x":191,"y":624,"on":true},{"x":191,"y":90,"on":true},{"x":264,"y":90,"on":true},{"x":493,"y":90,"on":false}] + ] + }, + "E": { + "advanceWidth": 503, + "contours": [ + [{"x":449,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":449,"y":714,"on":true},{"x":449,"y":624,"on":true},{"x":191,"y":624,"on":true},{"x":191,"y":417,"on":true},{"x":433,"y":417,"on":true},{"x":433,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":91,"on":true},{"x":449,"y":91,"on":true}] + ] + }, + "F": { + "advanceWidth": 477, + "contours": [ + [{"x":190,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":448,"y":714,"on":true},{"x":448,"y":624,"on":true},{"x":190,"y":624,"on":true},{"x":190,"y":388,"on":true},{"x":432,"y":388,"on":true},{"x":432,"y":298,"on":true},{"x":190,"y":298,"on":true}] + ] + }, + "G": { + "advanceWidth": 663, + "contours": [ + [{"x":361,"y":384,"on":true},{"x":596,"y":384,"on":true},{"x":596,"y":28,"on":true},{"x":543,"y":9,"on":false},{"x":431,"y":-10,"on":false},{"x":365,"y":-10,"on":true},{"x":264,"y":-10,"on":false},{"x":126,"y":80,"on":false},{"x":56,"y":246,"on":false},{"x":56,"y":358,"on":true},{"x":56,"y":468,"on":false},{"x":134,"y":633,"on":false},{"x":284,"y":724,"on":false},{"x":392,"y":724,"on":true},{"x":447,"y":724,"on":false},{"x":546,"y":700,"on":false},{"x":588,"y":680,"on":true},{"x":551,"y":592,"on":true},{"x":516,"y":610,"on":false},{"x":434,"y":633,"on":false},{"x":391,"y":633,"on":true},{"x":283,"y":633,"on":false},{"x":165,"y":486,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":276,"on":false},{"x":209,"y":151,"on":false},{"x":303,"y":81,"on":false},{"x":379,"y":81,"on":true},{"x":415,"y":81,"on":false},{"x":470,"y":89,"on":false},{"x":492,"y":95,"on":true},{"x":492,"y":293,"on":true},{"x":361,"y":293,"on":true}] + ] + }, + "H": { + "advanceWidth": 674, + "contours": [ + [{"x":588,"y":0,"on":true},{"x":483,"y":0,"on":true},{"x":483,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":483,"y":418,"on":true},{"x":483,"y":714,"on":true},{"x":588,"y":714,"on":true}] + ] + }, + "I": { + "advanceWidth": 332, + "contours": [ + [{"x":296,"y":0,"on":true},{"x":36,"y":0,"on":true},{"x":36,"y":60,"on":true},{"x":113,"y":83,"on":true},{"x":113,"y":630,"on":true},{"x":36,"y":654,"on":true},{"x":36,"y":714,"on":true},{"x":296,"y":714,"on":true},{"x":296,"y":654,"on":true},{"x":218,"y":630,"on":true},{"x":218,"y":83,"on":true},{"x":296,"y":60,"on":true}] + ] + }, + "J": { + "advanceWidth": 270, + "contours": [ + [{"x":7,"y":-197,"on":true},{"x":-38,"y":-197,"on":false},{"x":-67,"y":-185,"on":true},{"x":-67,"y":-95,"on":true},{"x":-53,"y":-100,"on":false},{"x":-20,"y":-105,"on":false},{"x":-2,"y":-105,"on":true},{"x":35,"y":-105,"on":false},{"x":83,"y":-56,"on":false},{"x":83,"y":15,"on":true},{"x":83,"y":714,"on":true},{"x":188,"y":714,"on":true},{"x":188,"y":17,"on":true},{"x":188,"y":-97,"on":false},{"x":90,"y":-197,"on":false}] + ] + }, + "K": { + "advanceWidth": 571, + "contours": [ + [{"x":573,"y":0,"on":true},{"x":453,"y":0,"on":true},{"x":253,"y":325,"on":true},{"x":191,"y":268,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":368,"on":true},{"x":209,"y":393,"on":false},{"x":252,"y":449,"on":false},{"x":276,"y":481,"on":true},{"x":448,"y":714,"on":true},{"x":565,"y":714,"on":true},{"x":328,"y":400,"on":true}] + ] + }, + "L": { + "advanceWidth": 479, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":92,"on":true},{"x":456,"y":92,"on":true},{"x":456,"y":0,"on":true}] + ] + }, + "M": { + "advanceWidth": 850, + "contours": [ + [{"x":376,"y":0,"on":true},{"x":180,"y":596,"on":true},{"x":176,"y":596,"on":true},{"x":178,"y":558,"on":false},{"x":183,"y":458,"on":false},{"x":183,"y":414,"on":true},{"x":183,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":235,"y":714,"on":true},{"x":422,"y":147,"on":true},{"x":425,"y":147,"on":true},{"x":616,"y":714,"on":true},{"x":765,"y":714,"on":true},{"x":765,"y":0,"on":true},{"x":663,"y":0,"on":true},{"x":663,"y":417,"on":true},{"x":663,"y":459,"on":false},{"x":668,"y":558,"on":false},{"x":670,"y":595,"on":true},{"x":666,"y":595,"on":true},{"x":466,"y":0,"on":true}] + ] + }, + "N": { + "advanceWidth": 706, + "contours": [ + [{"x":620,"y":0,"on":true},{"x":493,"y":0,"on":true},{"x":179,"y":570,"on":true},{"x":175,"y":570,"on":true},{"x":178,"y":528,"on":false},{"x":182,"y":435,"on":false},{"x":183,"y":390,"on":true},{"x":183,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":212,"y":714,"on":true},{"x":525,"y":149,"on":true},{"x":529,"y":149,"on":true},{"x":527,"y":186,"on":false},{"x":523,"y":284,"on":false},{"x":522,"y":325,"on":true},{"x":522,"y":714,"on":true},{"x":620,"y":714,"on":true}] + ] + }, + "O": { + "advanceWidth": 704, + "contours": [ + [{"x":648,"y":358,"on":true},{"x":648,"y":249,"on":false},{"x":583,"y":83,"on":false},{"x":452,"y":-10,"on":false},{"x":352,"y":-10,"on":true},{"x":250,"y":-10,"on":false},{"x":119,"y":84,"on":false},{"x":56,"y":251,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":203,"y":725,"on":false},{"x":353,"y":725,"on":true},{"x":452,"y":725,"on":false},{"x":583,"y":632,"on":false},{"x":648,"y":467,"on":false}], + [{"x":166,"y":358,"on":true},{"x":166,"y":226,"on":false},{"x":257,"y":82,"on":false},{"x":352,"y":82,"on":true},{"x":448,"y":82,"on":false},{"x":538,"y":225,"on":false},{"x":538,"y":358,"on":true},{"x":538,"y":490,"on":false},{"x":448,"y":633,"on":false},{"x":353,"y":633,"on":true},{"x":257,"y":633,"on":false},{"x":166,"y":490,"on":false}] + ] + }, + "P": { + "advanceWidth": 555, + "contours": [ + [{"x":267,"y":714,"on":true},{"x":394,"y":714,"on":false},{"x":513,"y":604,"on":false},{"x":513,"y":500,"on":true},{"x":513,"y":436,"on":false},{"x":462,"y":332,"on":false},{"x":349,"y":271,"on":false},{"x":256,"y":271,"on":true},{"x":191,"y":271,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true}], + [{"x":260,"y":625,"on":true},{"x":191,"y":625,"on":true},{"x":191,"y":360,"on":true},{"x":245,"y":360,"on":true},{"x":325,"y":360,"on":false},{"x":405,"y":424,"on":false},{"x":405,"y":497,"on":true},{"x":405,"y":562,"on":false},{"x":335,"y":625,"on":false}] + ] + }, + "Q": { + "advanceWidth": 704, + "contours": [ + [{"x":648,"y":358,"on":true},{"x":648,"y":228,"on":false},{"x":560,"y":49,"on":false},{"x":475,"y":13,"on":true},{"x":624,"y":-170,"on":true},{"x":488,"y":-170,"on":true},{"x":369,"y":-9,"on":true},{"x":365,"y":-9,"on":false},{"x":354,"y":-10,"on":false},{"x":350,"y":-10,"on":true},{"x":248,"y":-10,"on":false},{"x":118,"y":85,"on":false},{"x":56,"y":252,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":203,"y":725,"on":false},{"x":353,"y":725,"on":true},{"x":498,"y":725,"on":false},{"x":648,"y":530,"on":false}], + [{"x":166,"y":358,"on":true},{"x":166,"y":226,"on":false},{"x":257,"y":82,"on":false},{"x":352,"y":82,"on":true},{"x":448,"y":82,"on":false},{"x":538,"y":225,"on":false},{"x":538,"y":358,"on":true},{"x":538,"y":490,"on":false},{"x":448,"y":633,"on":false},{"x":353,"y":633,"on":true},{"x":257,"y":633,"on":false},{"x":166,"y":490,"on":false}] + ] + }, + "R": { + "advanceWidth": 576, + "contours": [ + [{"x":263,"y":714,"on":true},{"x":391,"y":714,"on":false},{"x":513,"y":612,"on":false},{"x":513,"y":509,"on":true},{"x":513,"y":432,"on":false},{"x":440,"y":340,"on":false},{"x":385,"y":318,"on":true},{"x":565,"y":0,"on":true},{"x":447,"y":0,"on":true},{"x":292,"y":290,"on":true},{"x":191,"y":290,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true}], + [{"x":259,"y":624,"on":true},{"x":191,"y":624,"on":true},{"x":191,"y":377,"on":true},{"x":265,"y":377,"on":true},{"x":406,"y":377,"on":false},{"x":406,"y":505,"on":true},{"x":406,"y":569,"on":false},{"x":334,"y":624,"on":false}] + ] + }, + "S": { + "advanceWidth": 502, + "contours": [ + [{"x":461,"y":196,"on":true},{"x":461,"y":102,"on":false},{"x":334,"y":-10,"on":false},{"x":226,"y":-10,"on":true},{"x":117,"y":-10,"on":false},{"x":45,"y":25,"on":true},{"x":45,"y":128,"on":true},{"x":83,"y":108,"on":false},{"x":181,"y":82,"on":false},{"x":229,"y":82,"on":true},{"x":292,"y":82,"on":false},{"x":356,"y":141,"on":false},{"x":356,"y":187,"on":true},{"x":356,"y":219,"on":false},{"x":328,"y":264,"on":false},{"x":267,"y":302,"on":false},{"x":216,"y":325,"on":true},{"x":167,"y":346,"on":false},{"x":93,"y":399,"on":false},{"x":52,"y":476,"on":false},{"x":52,"y":534,"on":true},{"x":51,"y":622,"on":false},{"x":170,"y":724,"on":false},{"x":268,"y":724,"on":true},{"x":320,"y":724,"on":false},{"x":411,"y":702,"on":false},{"x":451,"y":683,"on":true},{"x":418,"y":593,"on":true},{"x":380,"y":611,"on":false},{"x":305,"y":631,"on":false},{"x":267,"y":631,"on":true},{"x":214,"y":631,"on":false},{"x":157,"y":579,"on":false},{"x":157,"y":537,"on":true},{"x":157,"y":504,"on":false},{"x":183,"y":460,"on":false},{"x":242,"y":423,"on":false},{"x":291,"y":401,"on":true},{"x":374,"y":364,"on":false},{"x":461,"y":274,"on":false}] + ] + }, + "T": { + "advanceWidth": 501, + "contours": [ + [{"x":303,"y":0,"on":true},{"x":198,"y":0,"on":true},{"x":198,"y":623,"on":true},{"x":12,"y":623,"on":true},{"x":12,"y":714,"on":true},{"x":488,"y":714,"on":true},{"x":488,"y":623,"on":true},{"x":303,"y":623,"on":true}] + ] + }, + "U": { + "advanceWidth": 663, + "contours": [ + [{"x":583,"y":714,"on":true},{"x":583,"y":243,"on":true},{"x":583,"y":128,"on":false},{"x":458,"y":-10,"on":false},{"x":330,"y":-10,"on":true},{"x":208,"y":-10,"on":false},{"x":80,"y":124,"on":false},{"x":80,"y":244,"on":true},{"x":80,"y":714,"on":true},{"x":185,"y":714,"on":true},{"x":185,"y":247,"on":true},{"x":185,"y":82,"on":false},{"x":333,"y":82,"on":true},{"x":409,"y":82,"on":false},{"x":478,"y":167,"on":false},{"x":478,"y":248,"on":true},{"x":478,"y":714,"on":true}] + ] + }, + "V": { + "advanceWidth": 559, + "contours": [ + [{"x":559,"y":714,"on":true},{"x":336,"y":0,"on":true},{"x":222,"y":0,"on":true},{"x":0,"y":714,"on":true},{"x":109,"y":714,"on":true},{"x":243,"y":262,"on":true},{"x":254,"y":227,"on":false},{"x":274,"y":144,"on":false},{"x":279,"y":110,"on":true},{"x":284,"y":144,"on":false},{"x":304,"y":227,"on":false},{"x":315,"y":263,"on":true},{"x":450,"y":714,"on":true}] + ] + }, + "W": { + "advanceWidth": 866, + "contours": [ + [{"x":859,"y":714,"on":true},{"x":687,"y":0,"on":true},{"x":571,"y":0,"on":true},{"x":461,"y":433,"on":true},{"x":453,"y":465,"on":false},{"x":435,"y":553,"on":false},{"x":431,"y":583,"on":true},{"x":428,"y":559,"on":false},{"x":412,"y":470,"on":false},{"x":402,"y":432,"on":true},{"x":293,"y":0,"on":true},{"x":178,"y":0,"on":true},{"x":6,"y":714,"on":true},{"x":113,"y":714,"on":true},{"x":209,"y":294,"on":true},{"x":219,"y":248,"on":false},{"x":236,"y":153,"on":false},{"x":240,"y":116,"on":true},{"x":246,"y":157,"on":false},{"x":264,"y":255,"on":false},{"x":274,"y":294,"on":true},{"x":381,"y":714,"on":true},{"x":482,"y":714,"on":true},{"x":590,"y":293,"on":true},{"x":600,"y":253,"on":false},{"x":619,"y":157,"on":false},{"x":624,"y":116,"on":true},{"x":628,"y":156,"on":false},{"x":646,"y":252,"on":false},{"x":656,"y":295,"on":true},{"x":752,"y":714,"on":true}] + ] + }, + "X": { + "advanceWidth": 541, + "contours": [ + [{"x":537,"y":0,"on":true},{"x":420,"y":0,"on":true},{"x":270,"y":290,"on":true},{"x":114,"y":0,"on":true},{"x":4,"y":0,"on":true},{"x":210,"y":371,"on":true},{"x":19,"y":714,"on":true},{"x":133,"y":714,"on":true},{"x":272,"y":448,"on":true},{"x":412,"y":714,"on":true},{"x":523,"y":714,"on":true},{"x":332,"y":368,"on":true}] + ] + }, + "Y": { + "advanceWidth": 522, + "contours": [ + [{"x":261,"y":384,"on":true},{"x":410,"y":714,"on":true},{"x":522,"y":714,"on":true},{"x":313,"y":277,"on":true},{"x":313,"y":0,"on":true},{"x":209,"y":0,"on":true},{"x":209,"y":274,"on":true},{"x":0,"y":714,"on":true},{"x":113,"y":714,"on":true}] + ] + }, + "Z": { + "advanceWidth": 503, + "contours": [ + [{"x":474,"y":0,"on":true},{"x":31,"y":0,"on":true},{"x":31,"y":76,"on":true},{"x":344,"y":623,"on":true},{"x":39,"y":623,"on":true},{"x":39,"y":714,"on":true},{"x":466,"y":714,"on":true},{"x":466,"y":638,"on":true},{"x":152,"y":92,"on":true},{"x":474,"y":92,"on":true}] + ] + }, + "bracketleft": { + "advanceWidth": 322, + "contours": [ + [{"x":296,"y":-160,"on":true},{"x":73,"y":-160,"on":true},{"x":73,"y":717,"on":true},{"x":296,"y":717,"on":true},{"x":296,"y":637,"on":true},{"x":168,"y":637,"on":true},{"x":168,"y":-80,"on":true},{"x":296,"y":-80,"on":true}] + ] + }, + "backslash": { + "advanceWidth": 383, + "contours": [ + [{"x":107,"y":716,"on":true},{"x":373,"y":-2,"on":true},{"x":277,"y":-2,"on":true},{"x":11,"y":716,"on":true}] + ] + }, + "bracketright": { + "advanceWidth": 322, + "contours": [ + [{"x":26,"y":-80,"on":true},{"x":154,"y":-80,"on":true},{"x":154,"y":637,"on":true},{"x":26,"y":637,"on":true},{"x":26,"y":717,"on":true},{"x":249,"y":717,"on":true},{"x":249,"y":-160,"on":true},{"x":26,"y":-160,"on":true}] + ] + }, + "asciicircum": { + "advanceWidth": 531, + "contours": [ + [{"x":26,"y":282,"on":true},{"x":230,"y":717,"on":true},{"x":285,"y":717,"on":true},{"x":505,"y":282,"on":true},{"x":415,"y":282,"on":true},{"x":259,"y":601,"on":true},{"x":116,"y":282,"on":true}] + ] + }, + "underscore": { + "advanceWidth": 439, + "contours": [ + [{"x":441,"y":-154,"on":true},{"x":-2,"y":-154,"on":true},{"x":-2,"y":-86,"on":true},{"x":441,"y":-86,"on":true}] + ] + }, + "grave": { + "advanceWidth": 296, + "contours": [ + [{"x":159,"y":766,"on":true},{"x":170,"y":744,"on":false},{"x":205,"y":688,"on":false},{"x":241,"y":636,"on":false},{"x":256,"y":618,"on":true},{"x":256,"y":606,"on":true},{"x":187,"y":606,"on":true},{"x":165,"y":624,"on":false},{"x":106,"y":680,"on":false},{"x":54,"y":737,"on":false},{"x":40,"y":756,"on":true},{"x":40,"y":766,"on":true}] + ] + }, + "a": { + "advanceWidth": 521, + "contours": [ + [{"x":267,"y":549,"on":true},{"x":449,"y":549,"on":false},{"x":449,"y":364,"on":true},{"x":449,"y":0,"on":true},{"x":374,"y":0,"on":true},{"x":356,"y":75,"on":true},{"x":353,"y":75,"on":true},{"x":322,"y":32,"on":false},{"x":251,"y":-10,"on":false},{"x":192,"y":-10,"on":true},{"x":122,"y":-10,"on":false},{"x":40,"y":76,"on":false},{"x":40,"y":153,"on":true},{"x":40,"y":317,"on":false},{"x":266,"y":326,"on":true},{"x":348,"y":329,"on":true},{"x":348,"y":359,"on":true},{"x":348,"y":418,"on":false},{"x":301,"y":468,"on":false},{"x":257,"y":468,"on":true},{"x":222,"y":468,"on":false},{"x":155,"y":446,"on":false},{"x":123,"y":430,"on":true},{"x":91,"y":504,"on":true},{"x":127,"y":524,"on":false},{"x":218,"y":549,"on":false}], + [{"x":347,"y":260,"on":true},{"x":285,"y":258,"on":true},{"x":208,"y":255,"on":false},{"x":145,"y":202,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":110,"on":false},{"x":188,"y":70,"on":false},{"x":224,"y":70,"on":true},{"x":278,"y":70,"on":false},{"x":347,"y":142,"on":false},{"x":347,"y":211,"on":true}] + ] + }, + "b": { + "advanceWidth": 566, + "contours": [ + [{"x":178,"y":760,"on":true},{"x":178,"y":568,"on":true},{"x":178,"y":541,"on":false},{"x":174,"y":488,"on":false},{"x":173,"y":468,"on":true},{"x":178,"y":468,"on":true},{"x":200,"y":505,"on":false},{"x":272,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":413,"y":549,"on":false},{"x":519,"y":407,"on":false},{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":413,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":271,"y":-10,"on":false},{"x":200,"y":32,"on":false},{"x":178,"y":66,"on":true},{"x":171,"y":66,"on":true},{"x":153,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true}], + [{"x":299,"y":463,"on":true},{"x":229,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":278,"on":true},{"x":178,"y":265,"on":true},{"x":178,"y":171,"on":false},{"x":232,"y":75,"on":false},{"x":301,"y":75,"on":true},{"x":414,"y":75,"on":false},{"x":414,"y":271,"on":true},{"x":414,"y":463,"on":false}] + ] + }, + "c": { + "advanceWidth": 443, + "contours": [ + [{"x":273,"y":-10,"on":true},{"x":168,"y":-10,"on":false},{"x":48,"y":125,"on":false},{"x":48,"y":267,"on":true},{"x":48,"y":409,"on":false},{"x":173,"y":549,"on":false},{"x":279,"y":549,"on":true},{"x":320,"y":549,"on":false},{"x":390,"y":532,"on":false},{"x":415,"y":519,"on":true},{"x":384,"y":436,"on":true},{"x":359,"y":447,"on":false},{"x":306,"y":462,"on":false},{"x":281,"y":462,"on":true},{"x":153,"y":462,"on":false},{"x":153,"y":267,"on":true},{"x":153,"y":77,"on":false},{"x":279,"y":77,"on":true},{"x":316,"y":77,"on":false},{"x":377,"y":95,"on":false},{"x":405,"y":110,"on":true},{"x":405,"y":22,"on":true},{"x":378,"y":6,"on":false},{"x":314,"y":-10,"on":false}] + ] + }, + "d": { + "advanceWidth": 566, + "contours": [ + [{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":488,"on":false},{"x":389,"y":536,"on":false},{"x":389,"y":555,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "e": { + "advanceWidth": 520, + "contours": [ + [{"x":268,"y":549,"on":true},{"x":366,"y":549,"on":false},{"x":475,"y":416,"on":false},{"x":475,"y":307,"on":true},{"x":475,"y":247,"on":true},{"x":151,"y":247,"on":true},{"x":156,"y":74,"on":false},{"x":295,"y":74,"on":true},{"x":339,"y":74,"on":false},{"x":412,"y":92,"on":false},{"x":451,"y":112,"on":true},{"x":451,"y":26,"on":true},{"x":414,"y":7,"on":false},{"x":338,"y":-10,"on":false},{"x":288,"y":-10,"on":true},{"x":175,"y":-10,"on":false},{"x":48,"y":136,"on":false},{"x":48,"y":266,"on":true},{"x":48,"y":402,"on":false},{"x":166,"y":549,"on":false}], + [{"x":268,"y":469,"on":true},{"x":218,"y":469,"on":false},{"x":158,"y":395,"on":false},{"x":153,"y":324,"on":true},{"x":375,"y":324,"on":true},{"x":375,"y":387,"on":false},{"x":323,"y":469,"on":false}] + ] + }, + "f": { + "advanceWidth": 324, + "contours": [ + [{"x":313,"y":459,"on":true},{"x":197,"y":459,"on":true},{"x":197,"y":0,"on":true},{"x":95,"y":0,"on":true},{"x":95,"y":459,"on":true},{"x":14,"y":459,"on":true},{"x":14,"y":509,"on":true},{"x":95,"y":541,"on":true},{"x":95,"y":573,"on":true},{"x":95,"y":674,"on":false},{"x":175,"y":765,"on":false},{"x":255,"y":765,"on":true},{"x":286,"y":765,"on":false},{"x":337,"y":754,"on":false},{"x":359,"y":746,"on":true},{"x":334,"y":668,"on":true},{"x":318,"y":672,"on":false},{"x":283,"y":681,"on":false},{"x":264,"y":681,"on":true},{"x":229,"y":681,"on":false},{"x":197,"y":630,"on":false},{"x":197,"y":574,"on":true},{"x":197,"y":539,"on":true},{"x":313,"y":539,"on":true}] + ] + }, + "g": { + "advanceWidth": 566, + "contours": [ + [{"x":243,"y":549,"on":true},{"x":339,"y":549,"on":false},{"x":391,"y":469,"on":true},{"x":396,"y":469,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":-3,"on":true},{"x":491,"y":-118,"on":false},{"x":376,"y":-240,"on":false},{"x":255,"y":-240,"on":true},{"x":204,"y":-240,"on":false},{"x":119,"y":-224,"on":false},{"x":82,"y":-207,"on":true},{"x":82,"y":-116,"on":true},{"x":122,"y":-136,"on":false},{"x":211,"y":-156,"on":false},{"x":258,"y":-156,"on":true},{"x":321,"y":-156,"on":false},{"x":390,"y":-87,"on":false},{"x":390,"y":-17,"on":true},{"x":390,"y":0,"on":true},{"x":390,"y":14,"on":false},{"x":392,"y":57,"on":false},{"x":393,"y":72,"on":true},{"x":389,"y":72,"on":true},{"x":339,"y":-10,"on":false},{"x":242,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":48,"y":135,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":402,"on":false},{"x":152,"y":549,"on":false}], + [{"x":266,"y":463,"on":true},{"x":210,"y":463,"on":false},{"x":152,"y":362,"on":false},{"x":152,"y":267,"on":true},{"x":152,"y":75,"on":false},{"x":268,"y":75,"on":true},{"x":332,"y":75,"on":false},{"x":392,"y":157,"on":false},{"x":392,"y":248,"on":true},{"x":392,"y":270,"on":true},{"x":392,"y":372,"on":false},{"x":331,"y":463,"on":false}] + ] + }, + "h": { + "advanceWidth": 571, + "contours": [ + [{"x":178,"y":760,"on":true},{"x":178,"y":558,"on":true},{"x":178,"y":532,"on":false},{"x":174,"y":484,"on":false},{"x":171,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":508,"on":false},{"x":278,"y":549,"on":false},{"x":325,"y":549,"on":true},{"x":410,"y":549,"on":false},{"x":498,"y":454,"on":false},{"x":498,"y":355,"on":true},{"x":498,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":402,"on":false},{"x":352,"y":463,"on":false},{"x":303,"y":463,"on":true},{"x":232,"y":463,"on":false},{"x":178,"y":366,"on":false},{"x":178,"y":272,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true}] + ] + }, + "i": { + "advanceWidth": 253, + "contours": [ + [{"x":127,"y":745,"on":true},{"x":152,"y":745,"on":false},{"x":185,"y":715,"on":false},{"x":185,"y":683,"on":true},{"x":185,"y":652,"on":false},{"x":152,"y":621,"on":false},{"x":127,"y":621,"on":true},{"x":102,"y":621,"on":false},{"x":69,"y":652,"on":false},{"x":69,"y":683,"on":true},{"x":69,"y":715,"on":false},{"x":102,"y":745,"on":false}], + [{"x":178,"y":539,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "j": { + "advanceWidth": 253, + "contours": [ + [{"x":69,"y":683,"on":true},{"x":69,"y":715,"on":false},{"x":102,"y":745,"on":false},{"x":127,"y":745,"on":true},{"x":152,"y":745,"on":false},{"x":185,"y":715,"on":false},{"x":185,"y":683,"on":true},{"x":185,"y":652,"on":false},{"x":152,"y":621,"on":false},{"x":127,"y":621,"on":true},{"x":102,"y":621,"on":false},{"x":69,"y":652,"on":false}], + [{"x":30,"y":-240,"on":true},{"x":-13,"y":-240,"on":false},{"x":-43,"y":-229,"on":true},{"x":-43,"y":-145,"on":true},{"x":-30,"y":-149,"on":false},{"x":-3,"y":-154,"on":false},{"x":13,"y":-154,"on":true},{"x":42,"y":-154,"on":false},{"x":75,"y":-118,"on":false},{"x":75,"y":-71,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":-74,"on":true},{"x":178,"y":-153,"on":false},{"x":106,"y":-240,"on":false}] + ] + }, + "k": { + "advanceWidth": 509, + "contours": [ + [{"x":177,"y":760,"on":true},{"x":177,"y":386,"on":true},{"x":177,"y":362,"on":false},{"x":174,"y":307,"on":false},{"x":172,"y":282,"on":true},{"x":175,"y":282,"on":true},{"x":186,"y":298,"on":false},{"x":216,"y":341,"on":false},{"x":229,"y":357,"on":true},{"x":377,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":305,"y":315,"on":true},{"x":504,"y":0,"on":true},{"x":386,"y":0,"on":true},{"x":236,"y":246,"on":true},{"x":177,"y":190,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true}] + ] + }, + "l": { + "advanceWidth": 253, + "contours": [ + [{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true}] + ] + }, + "m": { + "advanceWidth": 858, + "contours": [ + [{"x":622,"y":549,"on":true},{"x":704,"y":549,"on":false},{"x":786,"y":455,"on":false},{"x":786,"y":354,"on":true},{"x":786,"y":0,"on":true},{"x":684,"y":0,"on":true},{"x":684,"y":338,"on":true},{"x":684,"y":463,"on":false},{"x":597,"y":463,"on":true},{"x":534,"y":463,"on":false},{"x":481,"y":374,"on":false},{"x":481,"y":290,"on":true},{"x":481,"y":0,"on":true},{"x":380,"y":0,"on":true},{"x":380,"y":339,"on":true},{"x":380,"y":463,"on":false},{"x":292,"y":463,"on":true},{"x":226,"y":463,"on":false},{"x":178,"y":363,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":197,"y":509,"on":false},{"x":273,"y":549,"on":false},{"x":319,"y":549,"on":true},{"x":430,"y":549,"on":false},{"x":464,"y":464,"on":true},{"x":471,"y":464,"on":true},{"x":495,"y":508,"on":false},{"x":574,"y":549,"on":false}] + ] + }, + "n": { + "advanceWidth": 571, + "contours": [ + [{"x":326,"y":549,"on":true},{"x":409,"y":549,"on":false},{"x":498,"y":456,"on":false},{"x":498,"y":356,"on":true},{"x":498,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":400,"on":false},{"x":352,"y":463,"on":false},{"x":303,"y":463,"on":true},{"x":232,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":198,"y":508,"on":false},{"x":280,"y":549,"on":false}] + ] + }, + "o": { + "advanceWidth": 554, + "contours": [ + [{"x":506,"y":271,"on":true},{"x":506,"y":140,"on":false},{"x":386,"y":-10,"on":false},{"x":275,"y":-10,"on":true},{"x":206,"y":-10,"on":false},{"x":104,"y":58,"on":false},{"x":48,"y":184,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":403,"on":false},{"x":167,"y":549,"on":false},{"x":278,"y":549,"on":true},{"x":380,"y":549,"on":false},{"x":506,"y":405,"on":false}], + [{"x":152,"y":270,"on":true},{"x":152,"y":177,"on":false},{"x":212,"y":75,"on":false},{"x":277,"y":75,"on":true},{"x":342,"y":75,"on":false},{"x":402,"y":176,"on":false},{"x":402,"y":271,"on":true},{"x":402,"y":365,"on":false},{"x":342,"y":464,"on":false},{"x":277,"y":464,"on":true},{"x":212,"y":464,"on":false},{"x":152,"y":364,"on":false}] + ] + }, + "p": { + "advanceWidth": 566, + "contours": [ + [{"x":324,"y":549,"on":true},{"x":414,"y":549,"on":false},{"x":519,"y":409,"on":false},{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":413,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":199,"y":34,"on":false},{"x":178,"y":68,"on":true},{"x":172,"y":68,"on":true},{"x":174,"y":48,"on":false},{"x":178,"y":2,"on":false},{"x":178,"y":-15,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":539,"on":true},{"x":159,"y":539,"on":true},{"x":172,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":504,"on":false},{"x":271,"y":549,"on":false}], + [{"x":299,"y":464,"on":true},{"x":234,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":287,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":173,"on":false},{"x":232,"y":76,"on":false},{"x":300,"y":76,"on":true},{"x":358,"y":76,"on":false},{"x":414,"y":179,"on":false},{"x":414,"y":271,"on":true},{"x":414,"y":363,"on":false},{"x":359,"y":464,"on":false}] + ] + }, + "q": { + "advanceWidth": 566, + "contours": [ + [{"x":389,"y":-240,"on":true},{"x":389,"y":-15,"on":true},{"x":389,"y":3,"on":false},{"x":391,"y":50,"on":false},{"x":394,"y":73,"on":true},{"x":389,"y":73,"on":true},{"x":366,"y":36,"on":false},{"x":294,"y":-10,"on":false},{"x":240,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":407,"on":false},{"x":156,"y":549,"on":false},{"x":244,"y":549,"on":true},{"x":297,"y":549,"on":false},{"x":368,"y":506,"on":false},{"x":390,"y":468,"on":true},{"x":395,"y":468,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":-240,"on":true}], + [{"x":269,"y":75,"on":true},{"x":334,"y":75,"on":false},{"x":390,"y":161,"on":false},{"x":391,"y":249,"on":true},{"x":391,"y":269,"on":true},{"x":391,"y":366,"on":false},{"x":335,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":208,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":266,"on":true},{"x":152,"y":75,"on":false}] + ] + }, + "r": { + "advanceWidth": 385, + "contours": [ + [{"x":317,"y":549,"on":true},{"x":330,"y":549,"on":false},{"x":359,"y":546,"on":false},{"x":372,"y":543,"on":true},{"x":360,"y":444,"on":true},{"x":350,"y":447,"on":false},{"x":323,"y":451,"on":false},{"x":311,"y":451,"on":true},{"x":274,"y":451,"on":false},{"x":214,"y":410,"on":false},{"x":178,"y":334,"on":false},{"x":178,"y":282,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":169,"y":445,"on":true},{"x":174,"y":445,"on":true},{"x":196,"y":488,"on":false},{"x":268,"y":549,"on":false}] + ] + }, + "s": { + "advanceWidth": 435, + "contours": [ + [{"x":396,"y":151,"on":true},{"x":396,"y":72,"on":false},{"x":292,"y":-10,"on":false},{"x":199,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":74,"y":6,"on":false},{"x":43,"y":22,"on":true},{"x":43,"y":116,"on":true},{"x":74,"y":99,"on":false},{"x":158,"y":73,"on":false},{"x":199,"y":73,"on":true},{"x":249,"y":73,"on":false},{"x":296,"y":111,"on":false},{"x":296,"y":143,"on":true},{"x":296,"y":161,"on":false},{"x":278,"y":190,"on":false},{"x":230,"y":220,"on":false},{"x":185,"y":240,"on":true},{"x":140,"y":260,"on":false},{"x":76,"y":303,"on":false},{"x":43,"y":361,"on":false},{"x":43,"y":404,"on":true},{"x":43,"y":473,"on":false},{"x":145,"y":549,"on":false},{"x":230,"y":549,"on":true},{"x":274,"y":549,"on":false},{"x":352,"y":530,"on":false},{"x":389,"y":512,"on":true},{"x":356,"y":433,"on":true},{"x":325,"y":448,"on":false},{"x":262,"y":467,"on":false},{"x":228,"y":467,"on":true},{"x":186,"y":467,"on":false},{"x":142,"y":436,"on":false},{"x":142,"y":409,"on":true},{"x":142,"y":390,"on":false},{"x":162,"y":362,"on":false},{"x":212,"y":334,"on":false},{"x":255,"y":314,"on":true},{"x":298,"y":294,"on":false},{"x":362,"y":252,"on":false},{"x":396,"y":194,"on":false}] + ] + }, + "t": { + "advanceWidth": 344, + "contours": [ + [{"x":252,"y":75,"on":true},{"x":290,"y":75,"on":false},{"x":322,"y":88,"on":true},{"x":322,"y":9,"on":true},{"x":305,"y":1,"on":false},{"x":254,"y":-10,"on":false},{"x":226,"y":-10,"on":true},{"x":163,"y":-10,"on":false},{"x":83,"y":62,"on":false},{"x":83,"y":154,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":88,"y":543,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":539,"on":true},{"x":317,"y":539,"on":true},{"x":317,"y":459,"on":true},{"x":185,"y":459,"on":true},{"x":185,"y":158,"on":true},{"x":185,"y":75,"on":false}] + ] + }, + "u": { + "advanceWidth": 571, + "contours": [ + [{"x":495,"y":539,"on":true},{"x":495,"y":0,"on":true},{"x":414,"y":0,"on":true},{"x":401,"y":71,"on":true},{"x":395,"y":71,"on":true},{"x":372,"y":30,"on":false},{"x":292,"y":-10,"on":false},{"x":245,"y":-10,"on":true},{"x":72,"y":-10,"on":false},{"x":72,"y":187,"on":true},{"x":72,"y":539,"on":true},{"x":174,"y":539,"on":true},{"x":174,"y":205,"on":true},{"x":174,"y":76,"on":false},{"x":266,"y":76,"on":true},{"x":339,"y":76,"on":false},{"x":393,"y":172,"on":false},{"x":393,"y":263,"on":true},{"x":393,"y":539,"on":true}] + ] + }, + "v": { + "advanceWidth": 477, + "contours": [ + [{"x":182,"y":0,"on":true},{"x":1,"y":539,"on":true},{"x":109,"y":539,"on":true},{"x":204,"y":226,"on":true},{"x":214,"y":195,"on":false},{"x":231,"y":125,"on":false},{"x":235,"y":97,"on":true},{"x":239,"y":97,"on":true},{"x":243,"y":120,"on":false},{"x":261,"y":188,"on":false},{"x":270,"y":220,"on":true},{"x":368,"y":539,"on":true},{"x":475,"y":539,"on":true},{"x":294,"y":0,"on":true}] + ] + }, + "w": { + "advanceWidth": 741, + "contours": [ + [{"x":476,"y":0,"on":true},{"x":405,"y":285,"on":true},{"x":399,"y":308,"on":false},{"x":386,"y":367,"on":false},{"x":375,"y":422,"on":false},{"x":372,"y":439,"on":true},{"x":368,"y":439,"on":true},{"x":365,"y":421,"on":false},{"x":354,"y":366,"on":false},{"x":341,"y":308,"on":false},{"x":335,"y":284,"on":true},{"x":261,"y":0,"on":true},{"x":147,"y":0,"on":true},{"x":10,"y":540,"on":true},{"x":113,"y":540,"on":true},{"x":176,"y":275,"on":true},{"x":186,"y":233,"on":false},{"x":202,"y":140,"on":false},{"x":207,"y":106,"on":true},{"x":211,"y":106,"on":true},{"x":215,"y":136,"on":false},{"x":232,"y":227,"on":false},{"x":241,"y":262,"on":true},{"x":315,"y":540,"on":true},{"x":428,"y":540,"on":true},{"x":500,"y":261,"on":true},{"x":508,"y":230,"on":false},{"x":526,"y":143,"on":false},{"x":530,"y":106,"on":true},{"x":533,"y":106,"on":true},{"x":536,"y":131,"on":false},{"x":552,"y":217,"on":false},{"x":562,"y":258,"on":true},{"x":630,"y":540,"on":true},{"x":732,"y":540,"on":true},{"x":592,"y":0,"on":true}] + ] + }, + "x": { + "advanceWidth": 488, + "contours": [ + [{"x":181,"y":276,"on":true},{"x":22,"y":539,"on":true},{"x":136,"y":539,"on":true},{"x":244,"y":349,"on":true},{"x":353,"y":539,"on":true},{"x":467,"y":539,"on":true},{"x":307,"y":275,"on":true},{"x":474,"y":0,"on":true},{"x":361,"y":0,"on":true},{"x":244,"y":203,"on":true},{"x":126,"y":0,"on":true},{"x":13,"y":0,"on":true}] + ] + }, + "y": { + "advanceWidth": 478, + "contours": [ + [{"x":2,"y":539,"on":true},{"x":111,"y":539,"on":true},{"x":207,"y":239,"on":true},{"x":218,"y":206,"on":false},{"x":234,"y":143,"on":false},{"x":239,"y":113,"on":true},{"x":243,"y":113,"on":true},{"x":248,"y":138,"on":false},{"x":265,"y":204,"on":false},{"x":276,"y":239,"on":true},{"x":368,"y":539,"on":true},{"x":476,"y":539,"on":true},{"x":272,"y":-73,"on":true},{"x":244,"y":-155,"on":false},{"x":156,"y":-240,"on":false},{"x":85,"y":-240,"on":true},{"x":65,"y":-240,"on":false},{"x":32,"y":-235,"on":false},{"x":19,"y":-232,"on":true},{"x":19,"y":-148,"on":true},{"x":30,"y":-150,"on":false},{"x":57,"y":-154,"on":false},{"x":71,"y":-154,"on":true},{"x":111,"y":-154,"on":false},{"x":157,"y":-105,"on":false},{"x":173,"y":-57,"on":true},{"x":192,"y":1,"on":true}] + ] + }, + "z": { + "advanceWidth": 418, + "contours": [ + [{"x":388,"y":0,"on":true},{"x":31,"y":0,"on":true},{"x":31,"y":65,"on":true},{"x":267,"y":458,"on":true},{"x":45,"y":458,"on":true},{"x":45,"y":539,"on":true},{"x":380,"y":539,"on":true},{"x":380,"y":467,"on":true},{"x":149,"y":81,"on":true},{"x":388,"y":81,"on":true}] + ] + }, + "braceleft": { + "advanceWidth": 376, + "contours": [ + [{"x":341,"y":-160,"on":true},{"x":240,"y":-159,"on":false},{"x":143,"y":-84,"on":false},{"x":143,"y":-4,"on":true},{"x":143,"y":144,"on":true},{"x":143,"y":194,"on":false},{"x":87,"y":237,"on":false},{"x":28,"y":237,"on":true},{"x":28,"y":319,"on":true},{"x":85,"y":319,"on":false},{"x":143,"y":361,"on":false},{"x":143,"y":412,"on":true},{"x":143,"y":561,"on":true},{"x":143,"y":639,"on":false},{"x":240,"y":715,"on":false},{"x":341,"y":716,"on":true},{"x":341,"y":635,"on":true},{"x":293,"y":634,"on":false},{"x":240,"y":595,"on":false},{"x":240,"y":547,"on":true},{"x":240,"y":402,"on":true},{"x":240,"y":299,"on":false},{"x":136,"y":281,"on":true},{"x":136,"y":276,"on":true},{"x":190,"y":266,"on":false},{"x":240,"y":206,"on":false},{"x":240,"y":156,"on":true},{"x":240,"y":8,"on":true},{"x":240,"y":-38,"on":false},{"x":291,"y":-78,"on":false},{"x":341,"y":-79,"on":true}] + ] + }, + "bar": { + "advanceWidth": 498, + "contours": [ + [{"x":207,"y":761,"on":true},{"x":291,"y":761,"on":true},{"x":291,"y":-236,"on":true},{"x":207,"y":-236,"on":true}] + ] + }, + "braceright": { + "advanceWidth": 376, + "contours": [ + [{"x":35,"y":-160,"on":true},{"x":35,"y":-79,"on":true},{"x":84,"y":-78,"on":false},{"x":136,"y":-38,"on":false},{"x":136,"y":9,"on":true},{"x":136,"y":155,"on":true},{"x":136,"y":257,"on":false},{"x":240,"y":275,"on":true},{"x":240,"y":281,"on":true},{"x":186,"y":290,"on":false},{"x":136,"y":349,"on":false},{"x":136,"y":401,"on":true},{"x":136,"y":548,"on":true},{"x":136,"y":595,"on":false},{"x":83,"y":634,"on":false},{"x":35,"y":635,"on":true},{"x":35,"y":716,"on":true},{"x":136,"y":714,"on":false},{"x":233,"y":640,"on":false},{"x":233,"y":560,"on":true},{"x":233,"y":412,"on":true},{"x":233,"y":363,"on":false},{"x":288,"y":319,"on":false},{"x":348,"y":319,"on":true},{"x":348,"y":237,"on":true},{"x":290,"y":237,"on":false},{"x":233,"y":194,"on":false},{"x":233,"y":145,"on":true},{"x":233,"y":-4,"on":true},{"x":233,"y":-83,"on":false},{"x":136,"y":-159,"on":false}] + ] + }, + "asciitilde": { + "advanceWidth": 525, + "contours": [ + [{"x":247,"y":314,"on":true},{"x":216,"y":329,"on":false},{"x":169,"y":341,"on":false},{"x":148,"y":341,"on":true},{"x":122,"y":341,"on":false},{"x":65,"y":308,"on":false},{"x":41,"y":282,"on":true},{"x":41,"y":370,"on":true},{"x":87,"y":422,"on":false},{"x":155,"y":422,"on":true},{"x":184,"y":422,"on":false},{"x":237,"y":408,"on":false},{"x":277,"y":391,"on":true},{"x":309,"y":376,"on":false},{"x":355,"y":364,"on":false},{"x":376,"y":364,"on":true},{"x":403,"y":364,"on":false},{"x":460,"y":398,"on":false},{"x":483,"y":423,"on":true},{"x":483,"y":335,"on":true},{"x":437,"y":283,"on":false},{"x":370,"y":283,"on":true},{"x":340,"y":283,"on":false},{"x":287,"y":297,"on":false}] + ] + }, + "uni00A0": { + "advanceWidth": 232 + }, + "exclamdown": { + "advanceWidth": 262, + "contours": [ + [{"x":197,"y":474,"on":true},{"x":197,"y":436,"on":false},{"x":160,"y":403,"on":false},{"x":131,"y":403,"on":true},{"x":102,"y":403,"on":false},{"x":65,"y":436,"on":false},{"x":65,"y":474,"on":true},{"x":65,"y":511,"on":false},{"x":102,"y":546,"on":false},{"x":131,"y":546,"on":true},{"x":159,"y":546,"on":false},{"x":197,"y":512,"on":false}], + [{"x":92,"y":322,"on":true},{"x":168,"y":322,"on":true},{"x":191,"y":-183,"on":true},{"x":69,"y":-183,"on":true}] + ] + }, + "cent": { + "advanceWidth": 524, + "contours": [ + [{"x":327,"y":724,"on":true},{"x":327,"y":645,"on":true},{"x":398,"y":640,"on":false},{"x":447,"y":615,"on":true},{"x":417,"y":532,"on":true},{"x":392,"y":543,"on":false},{"x":336,"y":558,"on":false},{"x":313,"y":558,"on":true},{"x":184,"y":558,"on":false},{"x":184,"y":363,"on":true},{"x":184,"y":265,"on":false},{"x":248,"y":173,"on":false},{"x":311,"y":173,"on":true},{"x":347,"y":173,"on":false},{"x":407,"y":190,"on":false},{"x":437,"y":204,"on":true},{"x":437,"y":117,"on":true},{"x":413,"y":104,"on":false},{"x":360,"y":88,"on":false},{"x":327,"y":86,"on":true},{"x":327,"y":-10,"on":true},{"x":259,"y":-10,"on":true},{"x":259,"y":89,"on":true},{"x":174,"y":101,"on":false},{"x":80,"y":234,"on":false},{"x":80,"y":362,"on":true},{"x":80,"y":493,"on":false},{"x":175,"y":628,"on":false},{"x":259,"y":641,"on":true},{"x":259,"y":724,"on":true}] + ] + }, + "sterling": { + "advanceWidth": 524, + "contours": [ + [{"x":311,"y":724,"on":true},{"x":359,"y":724,"on":false},{"x":440,"y":701,"on":false},{"x":474,"y":682,"on":true},{"x":439,"y":602,"on":true},{"x":410,"y":617,"on":false},{"x":348,"y":636,"on":false},{"x":316,"y":636,"on":true},{"x":272,"y":636,"on":false},{"x":226,"y":584,"on":false},{"x":226,"y":526,"on":true},{"x":226,"y":398,"on":true},{"x":397,"y":398,"on":true},{"x":397,"y":321,"on":true},{"x":226,"y":321,"on":true},{"x":226,"y":223,"on":true},{"x":226,"y":170,"on":false},{"x":188,"y":109,"on":false},{"x":159,"y":92,"on":true},{"x":490,"y":92,"on":true},{"x":490,"y":0,"on":true},{"x":38,"y":0,"on":true},{"x":38,"y":86,"on":true},{"x":77,"y":100,"on":false},{"x":123,"y":163,"on":false},{"x":123,"y":222,"on":true},{"x":123,"y":321,"on":true},{"x":38,"y":321,"on":true},{"x":38,"y":398,"on":true},{"x":123,"y":398,"on":true},{"x":123,"y":530,"on":true},{"x":123,"y":626,"on":false},{"x":226,"y":724,"on":false}] + ] + }, + "currency": { + "advanceWidth": 564, + "contours": [ + [{"x":87,"y":353,"on":true},{"x":87,"y":411,"on":false},{"x":120,"y":460,"on":true},{"x":55,"y":526,"on":true},{"x":108,"y":578,"on":true},{"x":173,"y":514,"on":true},{"x":221,"y":548,"on":false},{"x":281,"y":548,"on":true},{"x":340,"y":548,"on":false},{"x":389,"y":514,"on":true},{"x":454,"y":578,"on":true},{"x":507,"y":527,"on":true},{"x":443,"y":461,"on":true},{"x":458,"y":438,"on":false},{"x":476,"y":383,"on":false},{"x":476,"y":353,"on":true},{"x":476,"y":293,"on":false},{"x":443,"y":244,"on":true},{"x":506,"y":179,"on":true},{"x":454,"y":128,"on":true},{"x":389,"y":192,"on":true},{"x":340,"y":159,"on":false},{"x":281,"y":159,"on":true},{"x":219,"y":159,"on":false},{"x":172,"y":192,"on":true},{"x":108,"y":129,"on":true},{"x":56,"y":181,"on":true},{"x":120,"y":245,"on":true},{"x":87,"y":294,"on":false}], + [{"x":160,"y":353,"on":true},{"x":160,"y":319,"on":false},{"x":192,"y":264,"on":false},{"x":247,"y":231,"on":false},{"x":281,"y":231,"on":true},{"x":316,"y":231,"on":false},{"x":372,"y":264,"on":false},{"x":405,"y":320,"on":false},{"x":405,"y":353,"on":true},{"x":405,"y":387,"on":false},{"x":371,"y":443,"on":false},{"x":315,"y":476,"on":false},{"x":281,"y":476,"on":true},{"x":248,"y":476,"on":false},{"x":192,"y":443,"on":false},{"x":160,"y":387,"on":false}] + ] + }, + "yen": { + "advanceWidth": 524, + "contours": [ + [{"x":261,"y":386,"on":true},{"x":397,"y":714,"on":true},{"x":504,"y":714,"on":true},{"x":334,"y":341,"on":true},{"x":443,"y":341,"on":true},{"x":443,"y":272,"on":true},{"x":311,"y":272,"on":true},{"x":311,"y":193,"on":true},{"x":443,"y":193,"on":true},{"x":443,"y":124,"on":true},{"x":311,"y":124,"on":true},{"x":311,"y":0,"on":true},{"x":211,"y":0,"on":true},{"x":211,"y":124,"on":true},{"x":79,"y":124,"on":true},{"x":79,"y":193,"on":true},{"x":211,"y":193,"on":true},{"x":211,"y":272,"on":true},{"x":79,"y":272,"on":true},{"x":79,"y":341,"on":true},{"x":185,"y":341,"on":true},{"x":18,"y":714,"on":true},{"x":125,"y":714,"on":true}] + ] + }, + "brokenbar": { + "advanceWidth": 498, + "contours": [ + [{"x":207,"y":759,"on":true},{"x":291,"y":759,"on":true},{"x":291,"y":371,"on":true},{"x":207,"y":371,"on":true}], + [{"x":207,"y":152,"on":true},{"x":291,"y":152,"on":true},{"x":291,"y":-236,"on":true},{"x":207,"y":-236,"on":true}] + ] + }, + "section": { + "advanceWidth": 460, + "contours": [ + [{"x":55,"y":397,"on":true},{"x":55,"y":441,"on":false},{"x":98,"y":502,"on":false},{"x":129,"y":518,"on":true},{"x":96,"y":539,"on":false},{"x":60,"y":594,"on":false},{"x":60,"y":631,"on":true},{"x":60,"y":692,"on":false},{"x":158,"y":763,"on":false},{"x":241,"y":763,"on":true},{"x":288,"y":763,"on":false},{"x":361,"y":744,"on":false},{"x":397,"y":728,"on":true},{"x":367,"y":656,"on":true},{"x":336,"y":671,"on":false},{"x":275,"y":690,"on":false},{"x":239,"y":690,"on":true},{"x":192,"y":690,"on":false},{"x":150,"y":660,"on":false},{"x":150,"y":634,"on":true},{"x":150,"y":606,"on":false},{"x":200,"y":568,"on":false},{"x":258,"y":544,"on":true},{"x":328,"y":515,"on":false},{"x":405,"y":444,"on":false},{"x":405,"y":387,"on":true},{"x":405,"y":340,"on":false},{"x":366,"y":278,"on":false},{"x":338,"y":260,"on":true},{"x":370,"y":239,"on":false},{"x":403,"y":186,"on":false},{"x":403,"y":150,"on":true},{"x":403,"y":82,"on":false},{"x":296,"y":3,"on":false},{"x":205,"y":3,"on":true},{"x":156,"y":3,"on":false},{"x":81,"y":21,"on":false},{"x":51,"y":38,"on":true},{"x":51,"y":119,"on":true},{"x":82,"y":102,"on":false},{"x":167,"y":76,"on":false},{"x":206,"y":76,"on":true},{"x":263,"y":76,"on":false},{"x":312,"y":116,"on":false},{"x":312,"y":144,"on":true},{"x":312,"y":163,"on":false},{"x":294,"y":191,"on":false},{"x":246,"y":219,"on":false},{"x":201,"y":239,"on":true},{"x":129,"y":270,"on":false},{"x":55,"y":338,"on":false}], + [{"x":138,"y":408,"on":true},{"x":138,"y":376,"on":false},{"x":190,"y":330,"on":false},{"x":249,"y":305,"on":true},{"x":273,"y":294,"on":true},{"x":292,"y":306,"on":false},{"x":321,"y":344,"on":false},{"x":321,"y":373,"on":true},{"x":321,"y":396,"on":false},{"x":300,"y":432,"on":false},{"x":246,"y":465,"on":false},{"x":196,"y":484,"on":true},{"x":172,"y":476,"on":false},{"x":138,"y":436,"on":false}] + ] + }, + "dieresis": { + "advanceWidth": 560, + "contours": [ + [{"x":137,"y":679,"on":true},{"x":137,"y":707,"on":false},{"x":167,"y":733,"on":false},{"x":188,"y":733,"on":true},{"x":210,"y":733,"on":false},{"x":240,"y":707,"on":false},{"x":240,"y":679,"on":true},{"x":240,"y":651,"on":false},{"x":210,"y":624,"on":false},{"x":188,"y":624,"on":true},{"x":167,"y":624,"on":false},{"x":137,"y":650,"on":false}], + [{"x":320,"y":679,"on":true},{"x":320,"y":707,"on":false},{"x":349,"y":733,"on":false},{"x":371,"y":733,"on":true},{"x":392,"y":733,"on":false},{"x":422,"y":707,"on":false},{"x":422,"y":679,"on":true},{"x":422,"y":651,"on":false},{"x":392,"y":624,"on":false},{"x":371,"y":624,"on":true},{"x":349,"y":624,"on":false},{"x":320,"y":651,"on":false}] + ] + }, + "copyright": { + "advanceWidth": 831, + "contours": [ + [{"x":415,"y":-10,"on":true},{"x":334,"y":-10,"on":false},{"x":199,"y":45,"on":false},{"x":101,"y":145,"on":false},{"x":48,"y":279,"on":false},{"x":48,"y":357,"on":true},{"x":48,"y":437,"on":false},{"x":103,"y":571,"on":false},{"x":203,"y":670,"on":false},{"x":337,"y":724,"on":false},{"x":416,"y":724,"on":true},{"x":494,"y":724,"on":false},{"x":627,"y":669,"on":false},{"x":727,"y":570,"on":false},{"x":783,"y":436,"on":false},{"x":783,"y":357,"on":true},{"x":783,"y":277,"on":false},{"x":728,"y":143,"on":false},{"x":629,"y":44,"on":false},{"x":495,"y":-10,"on":false}], + [{"x":416,"y":46,"on":true},{"x":502,"y":46,"on":false},{"x":641,"y":126,"on":false},{"x":721,"y":267,"on":false},{"x":721,"y":357,"on":true},{"x":721,"y":444,"on":false},{"x":642,"y":585,"on":false},{"x":504,"y":668,"on":false},{"x":415,"y":668,"on":true},{"x":326,"y":668,"on":false},{"x":187,"y":587,"on":false},{"x":108,"y":446,"on":false},{"x":108,"y":357,"on":true},{"x":108,"y":268,"on":false},{"x":188,"y":127,"on":false},{"x":328,"y":46,"on":false}], + [{"x":430,"y":132,"on":true},{"x":332,"y":132,"on":false},{"x":231,"y":252,"on":false},{"x":231,"y":356,"on":true},{"x":231,"y":456,"on":false},{"x":336,"y":581,"on":false},{"x":434,"y":581,"on":true},{"x":466,"y":581,"on":false},{"x":531,"y":566,"on":false},{"x":560,"y":551,"on":true},{"x":531,"y":489,"on":true},{"x":478,"y":514,"on":false},{"x":436,"y":514,"on":true},{"x":377,"y":514,"on":false},{"x":311,"y":431,"on":false},{"x":311,"y":357,"on":true},{"x":311,"y":279,"on":false},{"x":370,"y":199,"on":false},{"x":435,"y":199,"on":true},{"x":459,"y":199,"on":false},{"x":516,"y":212,"on":false},{"x":542,"y":223,"on":true},{"x":542,"y":157,"on":true},{"x":516,"y":145,"on":false},{"x":464,"y":132,"on":false}] + ] + }, + "ordfeminine": { + "advanceWidth": 345, + "contours": [ + [{"x":175,"y":722,"on":true},{"x":297,"y":722,"on":false},{"x":297,"y":603,"on":true},{"x":297,"y":384,"on":true},{"x":246,"y":384,"on":true},{"x":233,"y":431,"on":true},{"x":214,"y":406,"on":false},{"x":161,"y":378,"on":false},{"x":126,"y":378,"on":true},{"x":81,"y":378,"on":false},{"x":28,"y":431,"on":false},{"x":28,"y":480,"on":true},{"x":28,"y":532,"on":false},{"x":104,"y":582,"on":false},{"x":177,"y":586,"on":true},{"x":225,"y":588,"on":true},{"x":225,"y":607,"on":true},{"x":225,"y":637,"on":false},{"x":194,"y":663,"on":false},{"x":165,"y":663,"on":true},{"x":142,"y":663,"on":false},{"x":96,"y":649,"on":false},{"x":73,"y":637,"on":true},{"x":49,"y":691,"on":true},{"x":76,"y":704,"on":false},{"x":139,"y":722,"on":false}], + [{"x":225,"y":540,"on":true},{"x":184,"y":538,"on":true},{"x":136,"y":535,"on":false},{"x":101,"y":506,"on":false},{"x":101,"y":480,"on":true},{"x":101,"y":457,"on":false},{"x":126,"y":435,"on":false},{"x":147,"y":435,"on":true},{"x":186,"y":435,"on":false},{"x":225,"y":480,"on":false},{"x":225,"y":518,"on":true}] + ] + }, + "guillemotleft": { + "advanceWidth": 517, + "contours": [ + [{"x":37,"y":273,"on":true},{"x":200,"y":478,"on":true},{"x":273,"y":438,"on":true},{"x":146,"y":267,"on":true},{"x":273,"y":96,"on":true},{"x":200,"y":55,"on":true},{"x":37,"y":260,"on":true}], + [{"x":245,"y":273,"on":true},{"x":408,"y":478,"on":true},{"x":480,"y":438,"on":true},{"x":354,"y":267,"on":true},{"x":480,"y":96,"on":true},{"x":408,"y":55,"on":true},{"x":245,"y":260,"on":true}] + ] + }, + "logicalnot": { + "advanceWidth": 525, + "contours": [ + [{"x":479,"y":393,"on":true},{"x":479,"y":124,"on":true},{"x":398,"y":124,"on":true},{"x":398,"y":312,"on":true},{"x":42,"y":312,"on":true},{"x":42,"y":393,"on":true}] + ] + }, + "uni00AD": { + "advanceWidth": 308, + "references": [ + {"glyph":"hyphen","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "registered": { + "advanceWidth": 831, + "contours": [ + [{"x":415,"y":-10,"on":true},{"x":334,"y":-10,"on":false},{"x":199,"y":45,"on":false},{"x":101,"y":145,"on":false},{"x":48,"y":279,"on":false},{"x":48,"y":357,"on":true},{"x":48,"y":437,"on":false},{"x":103,"y":571,"on":false},{"x":203,"y":670,"on":false},{"x":337,"y":724,"on":false},{"x":416,"y":724,"on":true},{"x":494,"y":724,"on":false},{"x":627,"y":669,"on":false},{"x":727,"y":570,"on":false},{"x":783,"y":436,"on":false},{"x":783,"y":357,"on":true},{"x":783,"y":277,"on":false},{"x":728,"y":143,"on":false},{"x":629,"y":44,"on":false},{"x":495,"y":-10,"on":false}], + [{"x":416,"y":46,"on":true},{"x":502,"y":46,"on":false},{"x":641,"y":126,"on":false},{"x":721,"y":267,"on":false},{"x":721,"y":357,"on":true},{"x":721,"y":444,"on":false},{"x":642,"y":585,"on":false},{"x":504,"y":668,"on":false},{"x":415,"y":668,"on":true},{"x":326,"y":668,"on":false},{"x":187,"y":587,"on":false},{"x":108,"y":446,"on":false},{"x":108,"y":357,"on":true},{"x":108,"y":268,"on":false},{"x":188,"y":127,"on":false},{"x":328,"y":46,"on":false}], + [{"x":277,"y":141,"on":true},{"x":277,"y":576,"on":true},{"x":404,"y":576,"on":true},{"x":563,"y":576,"on":false},{"x":563,"y":447,"on":true},{"x":563,"y":401,"on":false},{"x":520,"y":346,"on":false},{"x":488,"y":332,"on":true},{"x":596,"y":141,"on":true},{"x":509,"y":141,"on":true},{"x":417,"y":311,"on":true},{"x":356,"y":311,"on":true},{"x":356,"y":141,"on":true}], + [{"x":356,"y":373,"on":true},{"x":401,"y":373,"on":true},{"x":440,"y":373,"on":false},{"x":483,"y":411,"on":false},{"x":483,"y":444,"on":true},{"x":483,"y":479,"on":false},{"x":444,"y":511,"on":false},{"x":401,"y":511,"on":true},{"x":356,"y":511,"on":true}] + ] + }, + "macron": { + "advanceWidth": 480, + "contours": [ + [{"x":483,"y":760,"on":true},{"x":-3,"y":760,"on":true},{"x":-3,"y":835,"on":true},{"x":483,"y":835,"on":true}] + ] + }, + "degree": { + "advanceWidth": 405, + "contours": [ + [{"x":202,"y":423,"on":true},{"x":133,"y":423,"on":false},{"x":47,"y":506,"on":false},{"x":47,"y":573,"on":true},{"x":47,"y":640,"on":false},{"x":133,"y":724,"on":false},{"x":202,"y":724,"on":true},{"x":270,"y":724,"on":false},{"x":358,"y":640,"on":false},{"x":358,"y":573,"on":true},{"x":358,"y":506,"on":false},{"x":270,"y":423,"on":false}], + [{"x":203,"y":488,"on":true},{"x":243,"y":488,"on":false},{"x":286,"y":535,"on":false},{"x":286,"y":573,"on":true},{"x":286,"y":612,"on":false},{"x":242,"y":659,"on":false},{"x":203,"y":659,"on":true},{"x":162,"y":659,"on":false},{"x":118,"y":611,"on":false},{"x":118,"y":573,"on":true},{"x":118,"y":535,"on":false},{"x":162,"y":488,"on":false}] + ] + }, + "plusminus": { + "advanceWidth": 525, + "contours": [ + [{"x":303,"y":409,"on":true},{"x":481,"y":409,"on":true},{"x":481,"y":328,"on":true},{"x":303,"y":328,"on":true},{"x":303,"y":129,"on":true},{"x":221,"y":129,"on":true},{"x":221,"y":328,"on":true},{"x":42,"y":328,"on":true},{"x":42,"y":409,"on":true},{"x":221,"y":409,"on":true},{"x":221,"y":609,"on":true},{"x":303,"y":609,"on":true}], + [{"x":42,"y":0,"on":true},{"x":42,"y":81,"on":true},{"x":482,"y":81,"on":true},{"x":482,"y":0,"on":true}] + ] + }, + "uni00B2": { + "advanceWidth": 344, + "contours": [ + [{"x":303,"y":416,"on":true},{"x":26,"y":416,"on":true},{"x":26,"y":479,"on":true},{"x":130,"y":588,"on":true},{"x":164,"y":622,"on":false},{"x":201,"y":669,"on":false},{"x":216,"y":708,"on":false},{"x":216,"y":730,"on":true},{"x":216,"y":756,"on":false},{"x":185,"y":786,"on":false},{"x":158,"y":786,"on":true},{"x":134,"y":786,"on":false},{"x":90,"y":764,"on":false},{"x":67,"y":743,"on":true},{"x":26,"y":796,"on":true},{"x":53,"y":822,"on":false},{"x":121,"y":853,"on":false},{"x":164,"y":853,"on":true},{"x":226,"y":853,"on":false},{"x":298,"y":790,"on":false},{"x":298,"y":736,"on":true},{"x":298,"y":702,"on":false},{"x":273,"y":646,"on":false},{"x":222,"y":586,"on":false},{"x":183,"y":547,"on":true},{"x":122,"y":485,"on":true},{"x":303,"y":485,"on":true}] + ] + }, + "uni00B3": { + "advanceWidth": 344, + "contours": [ + [{"x":161,"y":853,"on":true},{"x":225,"y":853,"on":false},{"x":296,"y":792,"on":false},{"x":296,"y":743,"on":true},{"x":296,"y":705,"on":false},{"x":257,"y":654,"on":false},{"x":224,"y":642,"on":true},{"x":224,"y":638,"on":true},{"x":264,"y":628,"on":false},{"x":309,"y":576,"on":false},{"x":309,"y":535,"on":true},{"x":309,"y":477,"on":false},{"x":226,"y":408,"on":false},{"x":146,"y":408,"on":true},{"x":112,"y":408,"on":false},{"x":52,"y":421,"on":false},{"x":24,"y":436,"on":true},{"x":24,"y":508,"on":true},{"x":84,"y":474,"on":false},{"x":146,"y":474,"on":true},{"x":190,"y":474,"on":false},{"x":230,"y":508,"on":false},{"x":230,"y":539,"on":true},{"x":230,"y":605,"on":false},{"x":135,"y":605,"on":true},{"x":87,"y":605,"on":true},{"x":87,"y":667,"on":true},{"x":132,"y":667,"on":true},{"x":178,"y":667,"on":false},{"x":218,"y":703,"on":false},{"x":218,"y":732,"on":true},{"x":218,"y":759,"on":false},{"x":184,"y":788,"on":false},{"x":156,"y":788,"on":true},{"x":130,"y":788,"on":false},{"x":86,"y":769,"on":false},{"x":61,"y":751,"on":true},{"x":23,"y":803,"on":true},{"x":52,"y":826,"on":false},{"x":119,"y":853,"on":false}] + ] + }, + "acute": { + "advanceWidth": 296, + "contours": [ + [{"x":256,"y":766,"on":true},{"x":256,"y":756,"on":true},{"x":242,"y":737,"on":false},{"x":189,"y":681,"on":false},{"x":131,"y":624,"on":false},{"x":108,"y":606,"on":true},{"x":40,"y":606,"on":true},{"x":40,"y":618,"on":true},{"x":65,"y":650,"on":false},{"x":118,"y":732,"on":false},{"x":136,"y":766,"on":true}] + ] + }, + "mu": { + "advanceWidth": 574, + "contours": [ + [{"x":499,"y":539,"on":true},{"x":499,"y":0,"on":true},{"x":418,"y":0,"on":true},{"x":404,"y":72,"on":true},{"x":398,"y":72,"on":true},{"x":356,"y":-10,"on":false},{"x":270,"y":-10,"on":true},{"x":238,"y":-10,"on":false},{"x":192,"y":14,"on":false},{"x":176,"y":36,"on":true},{"x":173,"y":36,"on":true},{"x":175,"y":15,"on":false},{"x":177,"y":-44,"on":false},{"x":177,"y":-76,"on":true},{"x":177,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":539,"on":true},{"x":177,"y":539,"on":true},{"x":177,"y":202,"on":true},{"x":177,"y":76,"on":false},{"x":270,"y":76,"on":true},{"x":342,"y":76,"on":false},{"x":397,"y":174,"on":false},{"x":397,"y":266,"on":true},{"x":397,"y":539,"on":true}] + ] + }, + "paragraph": { + "advanceWidth": 594, + "contours": [ + [{"x":503,"y":-127,"on":true},{"x":439,"y":-127,"on":true},{"x":439,"y":694,"on":true},{"x":355,"y":694,"on":true},{"x":355,"y":-127,"on":true},{"x":291,"y":-127,"on":true},{"x":291,"y":273,"on":true},{"x":266,"y":264,"on":false},{"x":231,"y":264,"on":true},{"x":148,"y":264,"on":false},{"x":55,"y":377,"on":false},{"x":55,"y":509,"on":true},{"x":55,"y":646,"on":false},{"x":158,"y":760,"on":false},{"x":248,"y":760,"on":true},{"x":503,"y":760,"on":true}] + ] + }, + "periodcentered": { + "advanceWidth": 259, + "references": [ + {"glyph":"period","x":0,"y":293,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "cedilla": { + "advanceWidth": 209, + "contours": [ + [{"x":200,"y":-134,"on":true},{"x":200,"y":-185,"on":false},{"x":131,"y":-240,"on":false},{"x":62,"y":-240,"on":true},{"x":24,"y":-240,"on":false},{"x":4,"y":-233,"on":true},{"x":4,"y":-171,"on":true},{"x":28,"y":-178,"on":false},{"x":57,"y":-178,"on":true},{"x":118,"y":-178,"on":false},{"x":118,"y":-136,"on":true},{"x":118,"y":-112,"on":false},{"x":73,"y":-87,"on":false},{"x":35,"y":-82,"on":true},{"x":74,"y":0,"on":true},{"x":137,"y":0,"on":true},{"x":115,"y":-47,"on":true},{"x":152,"y":-55,"on":false},{"x":200,"y":-98,"on":false}] + ] + }, + "uni00B9": { + "advanceWidth": 344, + "contours": [ + [{"x":243,"y":844,"on":true},{"x":243,"y":416,"on":true},{"x":163,"y":416,"on":true},{"x":163,"y":670,"on":true},{"x":163,"y":693,"on":false},{"x":165,"y":743,"on":false},{"x":167,"y":763,"on":true},{"x":149,"y":745,"on":false},{"x":129,"y":730,"on":true},{"x":78,"y":692,"on":true},{"x":38,"y":744,"on":true},{"x":171,"y":844,"on":true}] + ] + }, + "ordmasculine": { + "advanceWidth": 357, + "contours": [ + [{"x":328,"y":551,"on":true},{"x":328,"y":468,"on":false},{"x":248,"y":378,"on":false},{"x":178,"y":378,"on":true},{"x":111,"y":378,"on":false},{"x":30,"y":468,"on":false},{"x":30,"y":551,"on":true},{"x":30,"y":633,"on":false},{"x":110,"y":722,"on":false},{"x":180,"y":722,"on":true},{"x":247,"y":722,"on":false},{"x":328,"y":634,"on":false}], + [{"x":104,"y":551,"on":true},{"x":104,"y":494,"on":false},{"x":139,"y":439,"on":false},{"x":179,"y":439,"on":true},{"x":219,"y":439,"on":false},{"x":254,"y":494,"on":false},{"x":254,"y":551,"on":true},{"x":254,"y":661,"on":false},{"x":179,"y":661,"on":true},{"x":104,"y":661,"on":false}] + ] + }, + "guillemotright": { + "advanceWidth": 517, + "contours": [ + [{"x":480,"y":260,"on":true},{"x":317,"y":55,"on":true},{"x":245,"y":96,"on":true},{"x":371,"y":267,"on":true},{"x":245,"y":438,"on":true},{"x":317,"y":478,"on":true},{"x":480,"y":273,"on":true}], + [{"x":273,"y":260,"on":true},{"x":110,"y":55,"on":true},{"x":38,"y":96,"on":true},{"x":163,"y":267,"on":true},{"x":38,"y":438,"on":true},{"x":110,"y":478,"on":true},{"x":273,"y":273,"on":true}] + ] + }, + "onequarter": { + "advanceWidth": 759, + "contours": [ + [{"x":145,"y":0,"on":true},{"x":546,"y":714,"on":true},{"x":631,"y":714,"on":true},{"x":229,"y":0,"on":true}], + [{"x":154,"y":286,"on":true},{"x":154,"y":541,"on":true},{"x":154,"y":564,"on":false},{"x":156,"y":614,"on":false},{"x":158,"y":634,"on":true},{"x":150,"y":626,"on":false},{"x":129,"y":608,"on":false},{"x":121,"y":601,"on":true},{"x":69,"y":562,"on":true},{"x":30,"y":614,"on":true},{"x":162,"y":714,"on":true},{"x":235,"y":714,"on":true},{"x":235,"y":286,"on":true}], + [{"x":608,"y":0,"on":true},{"x":608,"y":89,"on":true},{"x":427,"y":89,"on":true},{"x":427,"y":146,"on":true},{"x":607,"y":431,"on":true},{"x":690,"y":431,"on":true},{"x":690,"y":154,"on":true},{"x":747,"y":154,"on":true},{"x":747,"y":89,"on":true},{"x":690,"y":89,"on":true},{"x":690,"y":0,"on":true}], + [{"x":499,"y":154,"on":true},{"x":608,"y":154,"on":true},{"x":608,"y":252,"on":true},{"x":608,"y":274,"on":false},{"x":610,"y":322,"on":false},{"x":611,"y":342,"on":true},{"x":606,"y":330,"on":false},{"x":583,"y":289,"on":false},{"x":574,"y":274,"on":true}] + ] + }, + "onehalf": { + "advanceWidth": 787, + "contours": [ + [{"x":126,"y":0,"on":true},{"x":528,"y":714,"on":true},{"x":613,"y":714,"on":true},{"x":211,"y":0,"on":true}], + [{"x":148,"y":286,"on":true},{"x":148,"y":541,"on":true},{"x":148,"y":564,"on":false},{"x":150,"y":614,"on":false},{"x":152,"y":634,"on":true},{"x":144,"y":626,"on":false},{"x":124,"y":608,"on":false},{"x":115,"y":601,"on":true},{"x":64,"y":562,"on":true},{"x":24,"y":614,"on":true},{"x":156,"y":714,"on":true},{"x":229,"y":714,"on":true},{"x":229,"y":286,"on":true}], + [{"x":468,"y":0,"on":true},{"x":468,"y":63,"on":true},{"x":572,"y":172,"on":true},{"x":606,"y":206,"on":false},{"x":644,"y":253,"on":false},{"x":659,"y":292,"on":false},{"x":659,"y":314,"on":true},{"x":659,"y":340,"on":false},{"x":627,"y":370,"on":false},{"x":601,"y":370,"on":true},{"x":576,"y":370,"on":false},{"x":532,"y":348,"on":false},{"x":510,"y":327,"on":true},{"x":469,"y":380,"on":true},{"x":496,"y":406,"on":false},{"x":564,"y":438,"on":false},{"x":607,"y":438,"on":true},{"x":669,"y":438,"on":false},{"x":740,"y":375,"on":false},{"x":740,"y":320,"on":true},{"x":740,"y":270,"on":false},{"x":686,"y":193,"on":false},{"x":635,"y":142,"on":true},{"x":564,"y":70,"on":true},{"x":745,"y":70,"on":true},{"x":745,"y":0,"on":true}] + ] + }, + "threequarters": { + "advanceWidth": 782, + "contours": [ + [{"x":148,"y":278,"on":true},{"x":80,"y":278,"on":false},{"x":26,"y":307,"on":true},{"x":26,"y":379,"on":true},{"x":85,"y":344,"on":false},{"x":148,"y":344,"on":true},{"x":192,"y":344,"on":false},{"x":232,"y":379,"on":false},{"x":232,"y":409,"on":true},{"x":232,"y":476,"on":false},{"x":137,"y":476,"on":true},{"x":89,"y":476,"on":true},{"x":89,"y":537,"on":true},{"x":134,"y":537,"on":true},{"x":180,"y":537,"on":false},{"x":220,"y":574,"on":false},{"x":220,"y":603,"on":true},{"x":220,"y":630,"on":false},{"x":186,"y":658,"on":false},{"x":158,"y":658,"on":true},{"x":132,"y":658,"on":false},{"x":88,"y":639,"on":false},{"x":63,"y":621,"on":true},{"x":25,"y":673,"on":true},{"x":54,"y":696,"on":false},{"x":121,"y":723,"on":false},{"x":163,"y":723,"on":true},{"x":227,"y":723,"on":false},{"x":298,"y":663,"on":false},{"x":298,"y":613,"on":true},{"x":298,"y":576,"on":false},{"x":259,"y":524,"on":false},{"x":226,"y":512,"on":true},{"x":226,"y":508,"on":true},{"x":266,"y":498,"on":false},{"x":311,"y":446,"on":false},{"x":311,"y":405,"on":true},{"x":311,"y":347,"on":false},{"x":228,"y":278,"on":false}], + [{"x":175,"y":0,"on":true},{"x":576,"y":714,"on":true},{"x":661,"y":714,"on":true},{"x":259,"y":0,"on":true}], + [{"x":631,"y":0,"on":true},{"x":631,"y":89,"on":true},{"x":450,"y":89,"on":true},{"x":450,"y":146,"on":true},{"x":630,"y":431,"on":true},{"x":713,"y":431,"on":true},{"x":713,"y":154,"on":true},{"x":770,"y":154,"on":true},{"x":770,"y":89,"on":true},{"x":713,"y":89,"on":true},{"x":713,"y":0,"on":true}], + [{"x":522,"y":154,"on":true},{"x":631,"y":154,"on":true},{"x":631,"y":252,"on":true},{"x":631,"y":274,"on":false},{"x":632,"y":322,"on":false},{"x":634,"y":342,"on":true},{"x":629,"y":330,"on":false},{"x":606,"y":289,"on":false},{"x":597,"y":274,"on":true}] + ] + }, + "questiondown": { + "advanceWidth": 405, + "references": [ + {"glyph":"question","x":405,"y":533,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "Agrave": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":102,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Aacute": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":198,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Acircumflex": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":88,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Atilde": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":77,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Adieresis": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":13,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Aring": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ring","x":141,"y":55,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "AE": { + "advanceWidth": 805, + "contours": [ + [{"x":751,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":207,"on":true},{"x":192,"y":207,"on":true},{"x":109,"y":0,"on":true},{"x":-1,"y":0,"on":true},{"x":289,"y":714,"on":true},{"x":751,"y":714,"on":true},{"x":751,"y":623,"on":true},{"x":502,"y":623,"on":true},{"x":502,"y":417,"on":true},{"x":734,"y":417,"on":true},{"x":734,"y":327,"on":true},{"x":502,"y":327,"on":true},{"x":502,"y":91,"on":true},{"x":751,"y":91,"on":true}], + [{"x":227,"y":299,"on":true},{"x":398,"y":299,"on":true},{"x":398,"y":622,"on":true},{"x":353,"y":622,"on":true}] + ] + }, + "Ccedilla": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":234,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Egrave": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":84,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Eacute": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":173,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ecircumflex": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":67,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Edieresis": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-9,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Igrave": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":-22,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Iacute": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":72,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Icircumflex": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":-38,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Idieresis": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-114,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Eth": { + "advanceWidth": 658, + "contours": [ + [{"x":284,"y":714,"on":true},{"x":432,"y":714,"on":false},{"x":602,"y":536,"on":false},{"x":602,"y":365,"on":true},{"x":602,"y":184,"on":false},{"x":428,"y":0,"on":false},{"x":267,"y":0,"on":true},{"x":89,"y":0,"on":true},{"x":89,"y":315,"on":true},{"x":24,"y":315,"on":true},{"x":24,"y":401,"on":true},{"x":89,"y":401,"on":true},{"x":89,"y":714,"on":true}], + [{"x":279,"y":624,"on":true},{"x":194,"y":624,"on":true},{"x":194,"y":401,"on":true},{"x":329,"y":401,"on":true},{"x":329,"y":315,"on":true},{"x":194,"y":315,"on":true},{"x":194,"y":90,"on":true},{"x":264,"y":90,"on":true},{"x":493,"y":90,"on":false},{"x":493,"y":361,"on":true},{"x":493,"y":496,"on":false},{"x":382,"y":624,"on":false}] + ] + }, + "Ntilde": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":138,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ograve": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":162,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Oacute": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":256,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ocircumflex": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":148,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Otilde": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":137,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Odieresis": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":73,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "multiply": { + "advanceWidth": 525, + "contours": [ + [{"x":415,"y":563,"on":true},{"x":471,"y":506,"on":true},{"x":318,"y":353,"on":true},{"x":470,"y":200,"on":true},{"x":414,"y":144,"on":true},{"x":261,"y":296,"on":true},{"x":109,"y":144,"on":true},{"x":53,"y":201,"on":true},{"x":204,"y":353,"on":true},{"x":52,"y":505,"on":true},{"x":109,"y":562,"on":true},{"x":261,"y":410,"on":true}] + ] + }, + "Oslash": { + "advanceWidth": 704, + "contours": [ + [{"x":648,"y":358,"on":true},{"x":648,"y":244,"on":false},{"x":582,"y":79,"on":false},{"x":450,"y":-10,"on":false},{"x":352,"y":-10,"on":true},{"x":305,"y":-10,"on":false},{"x":226,"y":12,"on":false},{"x":194,"y":32,"on":true},{"x":150,"y":-40,"on":true},{"x":87,"y":-3,"on":true},{"x":137,"y":80,"on":true},{"x":95,"y":130,"on":false},{"x":56,"y":270,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":203,"y":725,"on":false},{"x":353,"y":725,"on":true},{"x":400,"y":725,"on":false},{"x":478,"y":702,"on":false},{"x":511,"y":681,"on":true},{"x":553,"y":750,"on":true},{"x":616,"y":712,"on":true},{"x":567,"y":632,"on":true},{"x":608,"y":585,"on":false},{"x":648,"y":446,"on":false}], + [{"x":165,"y":358,"on":true},{"x":165,"y":246,"on":false},{"x":198,"y":180,"on":true},{"x":460,"y":596,"on":true},{"x":417,"y":634,"on":false},{"x":353,"y":634,"on":true},{"x":256,"y":634,"on":false},{"x":165,"y":490,"on":false}], + [{"x":539,"y":358,"on":true},{"x":539,"y":466,"on":false},{"x":506,"y":532,"on":true},{"x":245,"y":116,"on":true},{"x":287,"y":80,"on":false},{"x":352,"y":80,"on":true},{"x":449,"y":80,"on":false},{"x":539,"y":225,"on":false}] + ] + }, + "Ugrave": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":144,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Uacute": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":235,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ucircumflex": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":127,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Udieresis": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":52,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Yacute": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":165,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Thorn": { + "advanceWidth": 552, + "contours": [ + [{"x":511,"y":381,"on":true},{"x":511,"y":317,"on":false},{"x":462,"y":213,"on":false},{"x":350,"y":151,"on":false},{"x":257,"y":151,"on":true},{"x":191,"y":151,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":594,"on":true},{"x":267,"y":594,"on":true},{"x":394,"y":594,"on":false},{"x":511,"y":483,"on":false}], + [{"x":191,"y":240,"on":true},{"x":245,"y":240,"on":true},{"x":328,"y":240,"on":false},{"x":404,"y":304,"on":false},{"x":404,"y":378,"on":true},{"x":404,"y":442,"on":false},{"x":334,"y":504,"on":false},{"x":258,"y":504,"on":true},{"x":191,"y":504,"on":true}] + ] + }, + "germandbls": { + "advanceWidth": 591, + "contours": [ + [{"x":495,"y":613,"on":true},{"x":495,"y":571,"on":false},{"x":458,"y":512,"on":false},{"x":409,"y":469,"on":false},{"x":372,"y":432,"on":false},{"x":372,"y":410,"on":true},{"x":372,"y":389,"on":false},{"x":406,"y":354,"on":false},{"x":451,"y":321,"on":true},{"x":501,"y":282,"on":false},{"x":553,"y":210,"on":false},{"x":553,"y":155,"on":true},{"x":553,"y":72,"on":false},{"x":457,"y":-10,"on":false},{"x":373,"y":-10,"on":true},{"x":292,"y":-10,"on":false},{"x":242,"y":21,"on":true},{"x":242,"y":112,"on":true},{"x":266,"y":97,"on":false},{"x":332,"y":73,"on":false},{"x":366,"y":73,"on":true},{"x":410,"y":73,"on":false},{"x":451,"y":113,"on":false},{"x":451,"y":149,"on":true},{"x":451,"y":181,"on":false},{"x":416,"y":227,"on":false},{"x":368,"y":261,"on":true},{"x":312,"y":302,"on":false},{"x":272,"y":364,"on":false},{"x":272,"y":402,"on":true},{"x":272,"y":432,"on":false},{"x":296,"y":475,"on":false},{"x":332,"y":508,"on":false},{"x":368,"y":540,"on":false},{"x":392,"y":578,"on":false},{"x":392,"y":604,"on":true},{"x":392,"y":642,"on":false},{"x":336,"y":680,"on":false},{"x":289,"y":680,"on":true},{"x":241,"y":680,"on":false},{"x":178,"y":629,"on":false},{"x":178,"y":569,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":572,"on":true},{"x":75,"y":671,"on":false},{"x":195,"y":765,"on":false},{"x":289,"y":765,"on":true},{"x":381,"y":765,"on":false},{"x":495,"y":687,"on":false}] + ] + }, + "agrave": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":81,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "aacute": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":159,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "acircumflex": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":59,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "atilde": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":47,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "adieresis": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-17,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "aring": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ring","x":113,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ae": { + "advanceWidth": 800, + "contours": [ + [{"x":555,"y":549,"on":true},{"x":650,"y":549,"on":false},{"x":755,"y":416,"on":false},{"x":755,"y":307,"on":true},{"x":755,"y":248,"on":true},{"x":442,"y":248,"on":true},{"x":445,"y":73,"on":false},{"x":577,"y":73,"on":true},{"x":620,"y":73,"on":false},{"x":693,"y":92,"on":false},{"x":730,"y":111,"on":true},{"x":730,"y":26,"on":true},{"x":694,"y":7,"on":false},{"x":620,"y":-10,"on":false},{"x":571,"y":-10,"on":true},{"x":509,"y":-10,"on":false},{"x":410,"y":44,"on":false},{"x":382,"y":98,"on":true},{"x":348,"y":45,"on":false},{"x":264,"y":-10,"on":false},{"x":196,"y":-10,"on":true},{"x":126,"y":-10,"on":false},{"x":40,"y":76,"on":false},{"x":40,"y":153,"on":true},{"x":40,"y":317,"on":false},{"x":259,"y":326,"on":true},{"x":339,"y":329,"on":true},{"x":339,"y":363,"on":true},{"x":339,"y":418,"on":false},{"x":292,"y":468,"on":false},{"x":249,"y":468,"on":true},{"x":216,"y":468,"on":false},{"x":149,"y":447,"on":false},{"x":116,"y":430,"on":true},{"x":85,"y":504,"on":true},{"x":120,"y":524,"on":false},{"x":209,"y":549,"on":false},{"x":257,"y":549,"on":true},{"x":364,"y":549,"on":false},{"x":404,"y":474,"on":true},{"x":430,"y":510,"on":false},{"x":505,"y":549,"on":false}], + [{"x":554,"y":469,"on":true},{"x":505,"y":469,"on":false},{"x":448,"y":396,"on":false},{"x":443,"y":324,"on":true},{"x":654,"y":324,"on":true},{"x":654,"y":388,"on":false},{"x":605,"y":469,"on":false}], + [{"x":339,"y":260,"on":true},{"x":279,"y":258,"on":true},{"x":206,"y":255,"on":false},{"x":145,"y":203,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":110,"on":false},{"x":186,"y":70,"on":false},{"x":221,"y":70,"on":true},{"x":272,"y":70,"on":false},{"x":339,"y":142,"on":false},{"x":339,"y":211,"on":true}] + ] + }, + "ccedilla": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":162,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "egrave": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":81,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "eacute": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":158,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ecircumflex": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":58,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "edieresis": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-18,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "igrave": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":-55,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "iacute": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":22,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "icircumflex": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":-78,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "idieresis": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-154,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "eth": { + "advanceWidth": 554, + "contours": [ + [{"x":200,"y":764,"on":true},{"x":228,"y":750,"on":false},{"x":282,"y":718,"on":false},{"x":307,"y":699,"on":true},{"x":408,"y":762,"on":true},{"x":448,"y":705,"on":true},{"x":362,"y":653,"on":true},{"x":430,"y":585,"on":false},{"x":507,"y":396,"on":false},{"x":507,"y":271,"on":true},{"x":507,"y":133,"on":false},{"x":385,"y":-10,"on":false},{"x":276,"y":-10,"on":true},{"x":208,"y":-10,"on":false},{"x":105,"y":51,"on":false},{"x":48,"y":162,"on":false},{"x":48,"y":235,"on":true},{"x":48,"y":350,"on":false},{"x":165,"y":477,"on":false},{"x":260,"y":477,"on":true},{"x":303,"y":477,"on":false},{"x":368,"y":454,"on":false},{"x":387,"y":428,"on":true},{"x":391,"y":430,"on":true},{"x":377,"y":480,"on":false},{"x":323,"y":567,"on":false},{"x":287,"y":604,"on":true},{"x":181,"y":539,"on":true},{"x":142,"y":596,"on":true},{"x":233,"y":652,"on":true},{"x":216,"y":666,"on":false},{"x":178,"y":690,"on":false},{"x":159,"y":701,"on":true}], + [{"x":278,"y":395,"on":true},{"x":212,"y":395,"on":false},{"x":151,"y":312,"on":false},{"x":151,"y":232,"on":true},{"x":151,"y":163,"on":false},{"x":211,"y":73,"on":false},{"x":278,"y":73,"on":true},{"x":344,"y":73,"on":false},{"x":403,"y":162,"on":false},{"x":403,"y":248,"on":true},{"x":403,"y":309,"on":false},{"x":342,"y":395,"on":false}] + ] + }, + "ntilde": { + "advanceWidth": 571, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":72,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ograve": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "oacute": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":173,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ocircumflex": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":72,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "otilde": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":61,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "odieresis": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-3,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "divide": { + "advanceWidth": 525, + "contours": [ + [{"x":262,"y":462,"on":true},{"x":236,"y":462,"on":false},{"x":204,"y":493,"on":false},{"x":204,"y":527,"on":true},{"x":204,"y":562,"on":false},{"x":236,"y":592,"on":false},{"x":262,"y":592,"on":true},{"x":287,"y":592,"on":false},{"x":319,"y":562,"on":false},{"x":319,"y":527,"on":true},{"x":319,"y":493,"on":false},{"x":286,"y":462,"on":false}], + [{"x":42,"y":312,"on":true},{"x":42,"y":393,"on":true},{"x":482,"y":393,"on":true},{"x":482,"y":312,"on":true}], + [{"x":262,"y":112,"on":true},{"x":236,"y":112,"on":false},{"x":204,"y":144,"on":false},{"x":204,"y":178,"on":true},{"x":204,"y":212,"on":false},{"x":236,"y":243,"on":false},{"x":262,"y":243,"on":true},{"x":287,"y":243,"on":false},{"x":319,"y":212,"on":false},{"x":319,"y":178,"on":true},{"x":319,"y":144,"on":false},{"x":286,"y":112,"on":false}] + ] + }, + "oslash": { + "advanceWidth": 554, + "contours": [ + [{"x":506,"y":271,"on":true},{"x":506,"y":137,"on":false},{"x":383,"y":-10,"on":false},{"x":275,"y":-10,"on":true},{"x":213,"y":-10,"on":false},{"x":164,"y":19,"on":true},{"x":125,"y":-45,"on":true},{"x":66,"y":-9,"on":true},{"x":110,"y":64,"on":true},{"x":79,"y":102,"on":false},{"x":47,"y":204,"on":false},{"x":47,"y":271,"on":true},{"x":47,"y":405,"on":false},{"x":169,"y":549,"on":false},{"x":278,"y":549,"on":true},{"x":343,"y":549,"on":false},{"x":392,"y":517,"on":true},{"x":428,"y":575,"on":true},{"x":488,"y":539,"on":true},{"x":447,"y":471,"on":true},{"x":476,"y":435,"on":false},{"x":506,"y":334,"on":false}], + [{"x":151,"y":270,"on":true},{"x":151,"y":236,"on":false},{"x":159,"y":179,"on":false},{"x":168,"y":157,"on":true},{"x":347,"y":441,"on":true},{"x":320,"y":465,"on":false},{"x":276,"y":465,"on":true},{"x":211,"y":465,"on":false},{"x":151,"y":365,"on":false}], + [{"x":403,"y":271,"on":true},{"x":403,"y":335,"on":false},{"x":388,"y":377,"on":true},{"x":210,"y":94,"on":true},{"x":236,"y":74,"on":false},{"x":277,"y":74,"on":true},{"x":342,"y":74,"on":false},{"x":403,"y":176,"on":false}] + ] + }, + "ugrave": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":104,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uacute": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":182,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ucircumflex": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":81,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "udieresis": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":5,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "yacute": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":135,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "thorn": { + "advanceWidth": 566, + "contours": [ + [{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":414,"y":-10,"on":false},{"x":326,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":199,"y":33,"on":false},{"x":178,"y":67,"on":true},{"x":172,"y":67,"on":true},{"x":174,"y":50,"on":false},{"x":178,"y":3,"on":false},{"x":178,"y":-13,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":548,"on":true},{"x":178,"y":529,"on":false},{"x":176,"y":484,"on":false},{"x":174,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":201,"y":505,"on":false},{"x":271,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":413,"y":549,"on":false},{"x":519,"y":406,"on":false}], + [{"x":414,"y":271,"on":true},{"x":414,"y":368,"on":false},{"x":358,"y":464,"on":false},{"x":299,"y":464,"on":true},{"x":234,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":288,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":173,"on":false},{"x":232,"y":76,"on":false},{"x":300,"y":76,"on":true},{"x":361,"y":76,"on":false},{"x":414,"y":181,"on":false}] + ] + }, + "ydieresis": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-41,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Amacron": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":109,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "amacron": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":80,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Abreve": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":103,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "abreve": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Aogonek": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ogonek","x":369,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "aogonek": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ogonek","x":258,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Cacute": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":239,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "cacute": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":155,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ccircumflex": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":138,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ccircumflex": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":55,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Cdotaccent": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":249,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "cdotaccent": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":165,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ccaron": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":138,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ccaron": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":54,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Dcaron": { + "advanceWidth": 658, + "references": [ + {"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":120,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "dcaron": { + "advanceWidth": 566, + "references": [ + {"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2792","x":353,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Dcroat": { + "advanceWidth": 658, + "references": [ + {"glyph":"Eth","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "dcroat": { + "advanceWidth": 570, + "contours": [ + [{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":130,"on":false},{"x":48,"y":264,"on":true},{"x":48,"y":400,"on":false},{"x":153,"y":539,"on":false},{"x":242,"y":539,"on":true},{"x":294,"y":539,"on":false},{"x":368,"y":495,"on":false},{"x":390,"y":459,"on":true},{"x":395,"y":459,"on":true},{"x":394,"y":474,"on":false},{"x":389,"y":526,"on":false},{"x":389,"y":545,"on":true},{"x":389,"y":600,"on":true},{"x":226,"y":600,"on":true},{"x":226,"y":674,"on":true},{"x":389,"y":674,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":674,"on":true},{"x":561,"y":674,"on":true},{"x":561,"y":600,"on":true},{"x":491,"y":600,"on":true},{"x":491,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":70,"on":true},{"x":388,"y":70,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":160,"on":false},{"x":391,"y":248,"on":true},{"x":391,"y":266,"on":true},{"x":391,"y":359,"on":false},{"x":336,"y":452,"on":false},{"x":266,"y":452,"on":true},{"x":209,"y":452,"on":false},{"x":153,"y":354,"on":false},{"x":153,"y":263,"on":true},{"x":153,"y":171,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "Emacron": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":89,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "emacron": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":79,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ebreve": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":82,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ebreve": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":72,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Edotaccent": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":178,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "edotaccent": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":168,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Eogonek": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ogonek","x":238,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "eogonek": { + "advanceWidth": 520, + "contours": [ + [{"x":357,"y":-114,"on":true},{"x":357,"y":-136,"on":false},{"x":380,"y":-158,"on":false},{"x":400,"y":-158,"on":true},{"x":414,"y":-158,"on":false},{"x":438,"y":-153,"on":false},{"x":445,"y":-151,"on":true},{"x":445,"y":-217,"on":true},{"x":432,"y":-221,"on":false},{"x":401,"y":-226,"on":false},{"x":383,"y":-226,"on":true},{"x":330,"y":-226,"on":false},{"x":278,"y":-174,"on":false},{"x":278,"y":-127,"on":true},{"x":278,"y":-93,"on":false},{"x":317,"y":-30,"on":false},{"x":344,"y":-7,"on":true},{"x":319,"y":-10,"on":false},{"x":288,"y":-10,"on":true},{"x":175,"y":-10,"on":false},{"x":48,"y":136,"on":false},{"x":48,"y":266,"on":true},{"x":48,"y":402,"on":false},{"x":166,"y":549,"on":false},{"x":268,"y":549,"on":true},{"x":366,"y":549,"on":false},{"x":475,"y":416,"on":false},{"x":475,"y":307,"on":true},{"x":475,"y":247,"on":true},{"x":151,"y":247,"on":true},{"x":156,"y":74,"on":false},{"x":295,"y":74,"on":true},{"x":339,"y":74,"on":false},{"x":412,"y":92,"on":false},{"x":451,"y":112,"on":true},{"x":451,"y":26,"on":true},{"x":398,"y":-20,"on":false},{"x":357,"y":-86,"on":false}], + [{"x":268,"y":469,"on":true},{"x":218,"y":469,"on":false},{"x":158,"y":395,"on":false},{"x":153,"y":324,"on":true},{"x":375,"y":324,"on":true},{"x":375,"y":387,"on":false},{"x":323,"y":469,"on":false}] + ] + }, + "Ecaron": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":67,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ecaron": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":57,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Gcircumflex": { + "advanceWidth": 663, + "references": [ + {"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":165,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "gcircumflex": { + "advanceWidth": 566, + "references": [ + {"glyph":"g","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":76,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Gbreve": { + "advanceWidth": 663, + "references": [ + {"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":180,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "gbreve": { + "advanceWidth": 566, + "references": [ + {"glyph":"g","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":91,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Gdotaccent": { + "advanceWidth": 663, + "references": [ + {"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":276,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "gdotaccent": { + "advanceWidth": 566, + "references": [ + {"glyph":"g","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":187,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0122": { + "advanceWidth": 663, + "references": [ + {"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":128,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0123": { + "advanceWidth": 566, + "references": [ + {"glyph":"g","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2793","x":39,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Hcircumflex": { + "advanceWidth": 674, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":133,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "hcircumflex": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":-77,"y":221,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Hbar": { + "advanceWidth": 674, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":525,"on":true},{"x":-1,"y":525,"on":true},{"x":-1,"y":602,"on":true},{"x":86,"y":602,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":602,"on":true},{"x":483,"y":602,"on":true},{"x":483,"y":714,"on":true},{"x":588,"y":714,"on":true},{"x":588,"y":602,"on":true},{"x":674,"y":602,"on":true},{"x":674,"y":525,"on":true},{"x":588,"y":525,"on":true},{"x":588,"y":0,"on":true},{"x":483,"y":0,"on":true},{"x":483,"y":326,"on":true},{"x":191,"y":326,"on":true},{"x":191,"y":0,"on":true}], + [{"x":191,"y":418,"on":true},{"x":483,"y":418,"on":true},{"x":483,"y":525,"on":true},{"x":191,"y":525,"on":true}] + ] + }, + "hbar": { + "advanceWidth": 571, + "contours": [ + [{"x":178,"y":760,"on":true},{"x":178,"y":673,"on":true},{"x":341,"y":673,"on":true},{"x":341,"y":599,"on":true},{"x":178,"y":599,"on":true},{"x":178,"y":535,"on":true},{"x":178,"y":512,"on":false},{"x":174,"y":467,"on":false},{"x":171,"y":449,"on":true},{"x":178,"y":449,"on":true},{"x":200,"y":490,"on":false},{"x":278,"y":531,"on":false},{"x":325,"y":531,"on":true},{"x":410,"y":531,"on":false},{"x":498,"y":436,"on":false},{"x":498,"y":337,"on":true},{"x":498,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":320,"on":true},{"x":397,"y":444,"on":false},{"x":303,"y":444,"on":true},{"x":232,"y":444,"on":false},{"x":177,"y":350,"on":false},{"x":177,"y":255,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":599,"on":true},{"x":6,"y":599,"on":true},{"x":6,"y":673,"on":true},{"x":75,"y":673,"on":true},{"x":75,"y":760,"on":true}] + ] + }, + "Itilde": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":-50,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "itilde": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":-90,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Imacron": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":-17,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "imacron": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":-57,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ibreve": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":-24,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ibreve": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":-64,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Iogonek": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ogonek","x":85,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "iogonek": { + "advanceWidth": 253, + "references": [ + {"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ogonek","x":-16,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Idotaccent": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":72,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "dotlessi": { + "advanceWidth": 253, + "contours": [ + [{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true}] + ] + }, + "IJ": { + "advanceWidth": 598, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"J","x":327,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ij": { + "advanceWidth": 506, + "references": [ + {"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"j","x":253,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Jcircumflex": { + "advanceWidth": 270, + "references": [ + {"glyph":"J","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":-69,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "jcircumflex": { + "advanceWidth": 253, + "references": [ + {"glyph":"uni0237","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":-78,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0136": { + "advanceWidth": 571, + "references": [ + {"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":69,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0137": { + "advanceWidth": 509, + "references": [ + {"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":21,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "kgreenlandic": { + "advanceWidth": 509, + "contours": [ + [{"x":491,"y":539,"on":true},{"x":311,"y":309,"on":true},{"x":504,"y":0,"on":true},{"x":387,"y":0,"on":true},{"x":242,"y":240,"on":true},{"x":180,"y":185,"on":true},{"x":180,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":180,"y":539,"on":true},{"x":180,"y":398,"on":true},{"x":180,"y":363,"on":false},{"x":177,"y":297,"on":false},{"x":175,"y":273,"on":true},{"x":177,"y":273,"on":true},{"x":188,"y":288,"on":false},{"x":208,"y":318,"on":false},{"x":218,"y":332,"on":true},{"x":376,"y":539,"on":true}] + ] + }, + "Lacute": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":33,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "lacute": { + "advanceWidth": 253, + "references": [ + {"glyph":"l","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":23,"y":221,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni013B": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":33,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni013C": { + "advanceWidth": 253, + "references": [ + {"glyph":"l","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":-112,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Lcaron": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2792","x":166,"y":-46,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "lcaron": { + "advanceWidth": 253, + "references": [ + {"glyph":"l","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2792","x":40,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ldot": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":269,"y":-307,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ldot": { + "advanceWidth": 294, + "references": [ + {"glyph":"l","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"dotaccent","x":175,"y":-298,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Lslash": { + "advanceWidth": 483, + "contours": [ + [{"x":89,"y":0,"on":true},{"x":89,"y":244,"on":true},{"x":45,"y":217,"on":true},{"x":2,"y":285,"on":true},{"x":89,"y":341,"on":true},{"x":89,"y":714,"on":true},{"x":194,"y":714,"on":true},{"x":194,"y":407,"on":true},{"x":306,"y":475,"on":true},{"x":349,"y":406,"on":true},{"x":194,"y":311,"on":true},{"x":194,"y":92,"on":true},{"x":459,"y":92,"on":true},{"x":459,"y":0,"on":true}] + ] + }, + "lslash": { + "advanceWidth": 262, + "contours": [ + [{"x":77,"y":0,"on":true},{"x":77,"y":276,"on":true},{"x":29,"y":244,"on":true},{"x":-14,"y":311,"on":true},{"x":77,"y":374,"on":true},{"x":77,"y":760,"on":true},{"x":179,"y":760,"on":true},{"x":179,"y":442,"on":true},{"x":232,"y":479,"on":true},{"x":277,"y":413,"on":true},{"x":179,"y":344,"on":true},{"x":179,"y":0,"on":true}] + ] + }, + "Nacute": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":249,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "nacute": { + "advanceWidth": 571, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":184,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0145": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":114,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0146": { + "advanceWidth": 571, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":47,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ncaron": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":148,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ncaron": { + "advanceWidth": 571, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":83,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "napostrophe": { + "advanceWidth": 653, + "references": [ + {"glyph":"n","x":83,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2789","x":-16,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Eng": { + "advanceWidth": 706, + "contours": [ + [{"x":440,"y":-197,"on":true},{"x":393,"y":-197,"on":false},{"x":363,"y":-185,"on":true},{"x":363,"y":-97,"on":true},{"x":378,"y":-102,"on":false},{"x":413,"y":-107,"on":false},{"x":433,"y":-107,"on":true},{"x":473,"y":-107,"on":false},{"x":522,"y":-59,"on":false},{"x":523,"y":1,"on":true},{"x":179,"y":574,"on":true},{"x":175,"y":574,"on":true},{"x":176,"y":554,"on":false},{"x":180,"y":491,"on":false},{"x":183,"y":419,"on":false},{"x":183,"y":388,"on":true},{"x":183,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":212,"y":714,"on":true},{"x":525,"y":190,"on":true},{"x":529,"y":190,"on":true},{"x":528,"y":210,"on":false},{"x":524,"y":272,"on":false},{"x":522,"y":340,"on":false},{"x":522,"y":370,"on":true},{"x":522,"y":714,"on":true},{"x":620,"y":714,"on":true},{"x":620,"y":6,"on":true},{"x":620,"y":-98,"on":false},{"x":525,"y":-197,"on":false}] + ] + }, + "eng": { + "advanceWidth": 571, + "contours": [ + [{"x":357,"y":-240,"on":true},{"x":317,"y":-240,"on":false},{"x":289,"y":-229,"on":true},{"x":289,"y":-145,"on":true},{"x":301,"y":-149,"on":false},{"x":326,"y":-154,"on":false},{"x":340,"y":-154,"on":true},{"x":366,"y":-154,"on":false},{"x":397,"y":-118,"on":false},{"x":397,"y":-71,"on":true},{"x":397,"y":340,"on":true},{"x":397,"y":462,"on":false},{"x":303,"y":462,"on":true},{"x":233,"y":462,"on":false},{"x":178,"y":370,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":199,"y":508,"on":false},{"x":279,"y":549,"on":false},{"x":326,"y":549,"on":true},{"x":499,"y":549,"on":false},{"x":499,"y":352,"on":true},{"x":499,"y":-74,"on":true},{"x":499,"y":-149,"on":false},{"x":431,"y":-240,"on":false}] + ] + }, + "Omacron": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":169,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "omacron": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":93,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Obreve": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":162,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "obreve": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":87,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ohungarumlaut": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"hungarumlaut","x":187,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ohungarumlaut": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"hungarumlaut","x":111,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "OE": { + "advanceWidth": 840, + "contours": [ + [{"x":351,"y":723,"on":true},{"x":399,"y":723,"on":false},{"x":438,"y":714,"on":true},{"x":786,"y":714,"on":true},{"x":786,"y":624,"on":true},{"x":535,"y":624,"on":true},{"x":535,"y":417,"on":true},{"x":769,"y":417,"on":true},{"x":769,"y":327,"on":true},{"x":535,"y":327,"on":true},{"x":535,"y":91,"on":true},{"x":786,"y":91,"on":true},{"x":786,"y":0,"on":true},{"x":440,"y":0,"on":true},{"x":398,"y":-8,"on":false},{"x":353,"y":-8,"on":true},{"x":252,"y":-8,"on":false},{"x":120,"y":82,"on":false},{"x":56,"y":247,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":470,"on":false},{"x":121,"y":634,"on":false},{"x":252,"y":723,"on":false}], + [{"x":356,"y":632,"on":true},{"x":254,"y":631,"on":false},{"x":165,"y":485,"on":false},{"x":165,"y":358,"on":true},{"x":165,"y":230,"on":false},{"x":255,"y":84,"on":false},{"x":356,"y":83,"on":true},{"x":377,"y":83,"on":false},{"x":416,"y":90,"on":false},{"x":431,"y":95,"on":true},{"x":431,"y":619,"on":true},{"x":416,"y":626,"on":false},{"x":377,"y":632,"on":false}] + ] + }, + "oe": { + "advanceWidth": 865, + "contours": [ + [{"x":613,"y":549,"on":true},{"x":712,"y":549,"on":false},{"x":819,"y":416,"on":false},{"x":819,"y":307,"on":true},{"x":819,"y":247,"on":true},{"x":498,"y":247,"on":true},{"x":502,"y":73,"on":false},{"x":638,"y":73,"on":true},{"x":684,"y":73,"on":false},{"x":757,"y":92,"on":false},{"x":795,"y":111,"on":true},{"x":795,"y":26,"on":true},{"x":758,"y":7,"on":false},{"x":683,"y":-10,"on":false},{"x":633,"y":-10,"on":true},{"x":509,"y":-10,"on":false},{"x":449,"y":87,"on":true},{"x":393,"y":-10,"on":false},{"x":273,"y":-10,"on":true},{"x":171,"y":-10,"on":false},{"x":47,"y":138,"on":false},{"x":47,"y":271,"on":true},{"x":47,"y":404,"on":false},{"x":166,"y":549,"on":false},{"x":275,"y":549,"on":true},{"x":390,"y":549,"on":false},{"x":446,"y":453,"on":true},{"x":502,"y":549,"on":false}], + [{"x":613,"y":468,"on":true},{"x":564,"y":468,"on":false},{"x":504,"y":396,"on":false},{"x":500,"y":324,"on":true},{"x":719,"y":324,"on":true},{"x":719,"y":388,"on":false},{"x":667,"y":468,"on":false}], + [{"x":273,"y":464,"on":true},{"x":209,"y":464,"on":false},{"x":152,"y":367,"on":false},{"x":152,"y":270,"on":true},{"x":152,"y":174,"on":false},{"x":211,"y":75,"on":false},{"x":275,"y":75,"on":true},{"x":338,"y":75,"on":false},{"x":396,"y":172,"on":false},{"x":396,"y":269,"on":true},{"x":396,"y":366,"on":false},{"x":337,"y":464,"on":false}] + ] + }, + "Racute": { + "advanceWidth": 576, + "references": [ + {"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":186,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "racute": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":117,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0156": { + "advanceWidth": 576, + "references": [ + {"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":65,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0157": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":-111,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Rcaron": { + "advanceWidth": 576, + "references": [ + {"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":85,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "rcaron": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":16,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Sacute": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":157,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "sacute": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":117,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Scircumflex": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":57,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "scircumflex": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":16,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Scedilla": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":138,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "scedilla": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":113,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Scaron": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":56,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "scaron": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":16,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0162": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":150,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0163": { + "advanceWidth": 344, + "references": [ + {"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":102,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Tcaron": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":46,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "tcaron": { + "advanceWidth": 344, + "references": [ + {"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2792","x":154,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Tbar": { + "advanceWidth": 501, + "contours": [ + [{"x":198,"y":0,"on":true},{"x":198,"y":316,"on":true},{"x":73,"y":316,"on":true},{"x":73,"y":401,"on":true},{"x":198,"y":401,"on":true},{"x":198,"y":622,"on":true},{"x":12,"y":622,"on":true},{"x":12,"y":714,"on":true},{"x":488,"y":714,"on":true},{"x":488,"y":622,"on":true},{"x":302,"y":622,"on":true},{"x":302,"y":401,"on":true},{"x":427,"y":401,"on":true},{"x":427,"y":316,"on":true},{"x":302,"y":316,"on":true},{"x":302,"y":0,"on":true}] + ] + }, + "tbar": { + "advanceWidth": 344, + "contours": [ + [{"x":252,"y":75,"on":true},{"x":290,"y":75,"on":false},{"x":322,"y":88,"on":true},{"x":322,"y":9,"on":true},{"x":305,"y":1,"on":false},{"x":254,"y":-10,"on":false},{"x":226,"y":-10,"on":true},{"x":163,"y":-10,"on":false},{"x":83,"y":62,"on":false},{"x":83,"y":154,"on":true},{"x":83,"y":267,"on":true},{"x":23,"y":267,"on":true},{"x":23,"y":341,"on":true},{"x":83,"y":341,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":88,"y":543,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":539,"on":true},{"x":317,"y":539,"on":true},{"x":317,"y":459,"on":true},{"x":185,"y":459,"on":true},{"x":185,"y":341,"on":true},{"x":308,"y":341,"on":true},{"x":308,"y":267,"on":true},{"x":185,"y":267,"on":true},{"x":185,"y":158,"on":true},{"x":185,"y":75,"on":false}] + ] + }, + "Utilde": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":116,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "utilde": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":70,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Umacron": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":148,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "umacron": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":102,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ubreve": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":142,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ubreve": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":96,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Uring": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ring","x":181,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uring": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ring","x":135,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Uhungarumlaut": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"hungarumlaut","x":166,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uhungarumlaut": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"hungarumlaut","x":120,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Uogonek": { + "advanceWidth": 663, + "contours": [ + [{"x":414,"y":-108,"on":true},{"x":414,"y":-134,"on":false},{"x":438,"y":-158,"on":false},{"x":457,"y":-158,"on":true},{"x":471,"y":-158,"on":false},{"x":494,"y":-153,"on":false},{"x":502,"y":-151,"on":true},{"x":502,"y":-217,"on":true},{"x":475,"y":-226,"on":false},{"x":439,"y":-226,"on":true},{"x":386,"y":-226,"on":false},{"x":334,"y":-172,"on":false},{"x":334,"y":-123,"on":true},{"x":334,"y":-91,"on":false},{"x":367,"y":-30,"on":false},{"x":390,"y":-5,"on":true},{"x":362,"y":-10,"on":false},{"x":330,"y":-10,"on":true},{"x":208,"y":-10,"on":false},{"x":80,"y":124,"on":false},{"x":80,"y":244,"on":true},{"x":80,"y":714,"on":true},{"x":185,"y":714,"on":true},{"x":185,"y":247,"on":true},{"x":185,"y":82,"on":false},{"x":333,"y":82,"on":true},{"x":409,"y":82,"on":false},{"x":478,"y":167,"on":false},{"x":478,"y":248,"on":true},{"x":478,"y":714,"on":true},{"x":583,"y":714,"on":true},{"x":583,"y":243,"on":true},{"x":583,"y":176,"on":false},{"x":540,"y":71,"on":false},{"x":497,"y":38,"on":true},{"x":452,"y":-11,"on":false},{"x":414,"y":-77,"on":false}] + ] + }, + "uogonek": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ogonek","x":293,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Wcircumflex": { + "advanceWidth": 866, + "references": [ + {"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":228,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "wcircumflex": { + "advanceWidth": 741, + "references": [ + {"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":166,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ycircumflex": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":56,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ycircumflex": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":34,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ydieresis": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-19,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Zacute": { + "advanceWidth": 503, + "references": [ + {"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":151,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "zacute": { + "advanceWidth": 418, + "references": [ + {"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":107,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Zdotaccent": { + "advanceWidth": 503, + "references": [ + {"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":161,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "zdotaccent": { + "advanceWidth": 418, + "references": [ + {"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":117,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Zcaron": { + "advanceWidth": 503, + "references": [ + {"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":49,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "zcaron": { + "advanceWidth": 418, + "references": [ + {"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":6,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "longs": { + "advanceWidth": 306, + "contours": [ + [{"x":249,"y":680,"on":true},{"x":214,"y":680,"on":false},{"x":180,"y":632,"on":false},{"x":180,"y":576,"on":true},{"x":180,"y":0,"on":true},{"x":78,"y":0,"on":true},{"x":78,"y":576,"on":true},{"x":78,"y":676,"on":false},{"x":161,"y":765,"on":false},{"x":240,"y":765,"on":true},{"x":271,"y":765,"on":false},{"x":320,"y":754,"on":false},{"x":342,"y":746,"on":true},{"x":317,"y":667,"on":true},{"x":302,"y":672,"on":false},{"x":266,"y":680,"on":false}] + ] + }, + "uni0180": { + "advanceWidth": 566, + "contours": [ + [{"x":324,"y":-10,"on":true},{"x":271,"y":-10,"on":false},{"x":200,"y":32,"on":false},{"x":178,"y":66,"on":true},{"x":171,"y":66,"on":true},{"x":153,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":599,"on":true},{"x":6,"y":599,"on":true},{"x":6,"y":673,"on":true},{"x":75,"y":673,"on":true},{"x":75,"y":760,"on":true},{"x":177,"y":760,"on":true},{"x":177,"y":673,"on":true},{"x":342,"y":673,"on":true},{"x":342,"y":599,"on":true},{"x":177,"y":599,"on":true},{"x":177,"y":559,"on":true},{"x":177,"y":534,"on":false},{"x":174,"y":483,"on":false},{"x":173,"y":463,"on":true},{"x":178,"y":463,"on":true},{"x":200,"y":500,"on":false},{"x":272,"y":543,"on":false},{"x":324,"y":543,"on":true},{"x":413,"y":543,"on":false},{"x":519,"y":405,"on":false},{"x":519,"y":268,"on":true},{"x":519,"y":132,"on":false},{"x":413,"y":-10,"on":false}], + [{"x":301,"y":75,"on":true},{"x":414,"y":75,"on":false},{"x":414,"y":269,"on":true},{"x":414,"y":457,"on":false},{"x":299,"y":457,"on":true},{"x":231,"y":457,"on":false},{"x":178,"y":362,"on":false},{"x":178,"y":272,"on":true},{"x":178,"y":263,"on":true},{"x":178,"y":169,"on":false},{"x":232,"y":75,"on":false}] + ] + }, + "uni0181": { + "advanceWidth": 686, + "contours": [ + [{"x":176,"y":0,"on":true},{"x":176,"y":626,"on":true},{"x":153,"y":626,"on":true},{"x":124,"y":626,"on":false},{"x":97,"y":593,"on":false},{"x":97,"y":569,"on":true},{"x":97,"y":551,"on":false},{"x":103,"y":522,"on":false},{"x":106,"y":515,"on":true},{"x":18,"y":515,"on":true},{"x":14,"y":524,"on":false},{"x":8,"y":557,"on":false},{"x":8,"y":574,"on":true},{"x":8,"y":637,"on":false},{"x":78,"y":714,"on":false},{"x":158,"y":714,"on":true},{"x":370,"y":714,"on":true},{"x":493,"y":714,"on":false},{"x":619,"y":632,"on":false},{"x":619,"y":538,"on":true},{"x":619,"y":474,"on":false},{"x":557,"y":390,"on":false},{"x":501,"y":379,"on":true},{"x":501,"y":374,"on":true},{"x":562,"y":361,"on":false},{"x":638,"y":284,"on":false},{"x":638,"y":205,"on":true},{"x":638,"y":109,"on":false},{"x":515,"y":0,"on":false},{"x":408,"y":0,"on":true}], + [{"x":281,"y":415,"on":true},{"x":381,"y":415,"on":true},{"x":453,"y":415,"on":false},{"x":511,"y":470,"on":false},{"x":511,"y":525,"on":true},{"x":511,"y":626,"on":false},{"x":373,"y":626,"on":true},{"x":281,"y":626,"on":true}], + [{"x":281,"y":89,"on":true},{"x":394,"y":89,"on":true},{"x":467,"y":89,"on":false},{"x":528,"y":154,"on":false},{"x":528,"y":213,"on":true},{"x":528,"y":267,"on":false},{"x":463,"y":329,"on":false},{"x":387,"y":329,"on":true},{"x":281,"y":329,"on":true}] + ] + }, + "uni0182": { + "advanceWidth": 563, + "references": [ + {"glyph":"uni0411","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0183": { + "advanceWidth": 566, + "contours": [ + [{"x":324,"y":-10,"on":true},{"x":271,"y":-10,"on":false},{"x":200,"y":32,"on":false},{"x":178,"y":66,"on":true},{"x":171,"y":66,"on":true},{"x":153,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":466,"y":760,"on":true},{"x":466,"y":676,"on":true},{"x":178,"y":676,"on":true},{"x":178,"y":563,"on":true},{"x":178,"y":536,"on":false},{"x":174,"y":481,"on":false},{"x":173,"y":463,"on":true},{"x":178,"y":463,"on":true},{"x":200,"y":500,"on":false},{"x":272,"y":543,"on":false},{"x":324,"y":543,"on":true},{"x":413,"y":543,"on":false},{"x":519,"y":406,"on":false},{"x":519,"y":268,"on":true},{"x":519,"y":132,"on":false},{"x":413,"y":-10,"on":false}], + [{"x":301,"y":75,"on":true},{"x":414,"y":75,"on":false},{"x":414,"y":270,"on":true},{"x":414,"y":458,"on":false},{"x":299,"y":458,"on":true},{"x":231,"y":458,"on":false},{"x":178,"y":363,"on":false},{"x":178,"y":274,"on":true},{"x":178,"y":265,"on":true},{"x":178,"y":172,"on":false},{"x":232,"y":75,"on":false}] + ] + }, + "uni0184": { + "advanceWidth": 580, + "contours": [ + [{"x":309,"y":-8,"on":true},{"x":191,"y":-8,"on":false},{"x":80,"y":102,"on":false},{"x":80,"y":209,"on":true},{"x":80,"y":714,"on":true},{"x":185,"y":714,"on":true},{"x":185,"y":421,"on":true},{"x":286,"y":421,"on":true},{"x":376,"y":421,"on":false},{"x":487,"y":367,"on":false},{"x":538,"y":272,"on":false},{"x":538,"y":210,"on":true},{"x":538,"y":110,"on":false},{"x":424,"y":-8,"on":false}], + [{"x":308,"y":81,"on":true},{"x":430,"y":81,"on":false},{"x":430,"y":210,"on":true},{"x":430,"y":279,"on":false},{"x":348,"y":331,"on":false},{"x":273,"y":331,"on":true},{"x":185,"y":331,"on":true},{"x":185,"y":214,"on":true},{"x":185,"y":142,"on":false},{"x":246,"y":81,"on":false}] + ] + }, + "uni0185": { + "advanceWidth": 560, + "contours": [ + [{"x":292,"y":-10,"on":true},{"x":190,"y":-10,"on":false},{"x":73,"y":129,"on":false},{"x":73,"y":266,"on":true},{"x":73,"y":760,"on":true},{"x":175,"y":760,"on":true},{"x":175,"y":576,"on":true},{"x":175,"y":545,"on":false},{"x":172,"y":484,"on":false},{"x":170,"y":466,"on":true},{"x":175,"y":466,"on":true},{"x":195,"y":502,"on":false},{"x":266,"y":549,"on":false},{"x":322,"y":549,"on":true},{"x":408,"y":549,"on":false},{"x":512,"y":408,"on":false},{"x":512,"y":270,"on":true},{"x":512,"y":133,"on":false},{"x":392,"y":-10,"on":false}], + [{"x":294,"y":77,"on":true},{"x":408,"y":77,"on":false},{"x":408,"y":270,"on":true},{"x":408,"y":366,"on":false},{"x":350,"y":462,"on":false},{"x":295,"y":462,"on":true},{"x":229,"y":462,"on":false},{"x":175,"y":370,"on":false},{"x":175,"y":278,"on":true},{"x":175,"y":264,"on":true},{"x":175,"y":171,"on":false},{"x":236,"y":77,"on":false}] + ] + }, + "uni0186": { + "advanceWidth": 569, + "contours": [ + [{"x":216,"y":-10,"on":true},{"x":165,"y":-10,"on":false},{"x":88,"y":5,"on":false},{"x":53,"y":21,"on":true},{"x":53,"y":112,"on":true},{"x":90,"y":98,"on":false},{"x":162,"y":81,"on":false},{"x":202,"y":81,"on":true},{"x":296,"y":81,"on":false},{"x":404,"y":227,"on":false},{"x":403,"y":357,"on":true},{"x":403,"y":438,"on":false},{"x":360,"y":563,"on":false},{"x":272,"y":633,"on":false},{"x":206,"y":633,"on":true},{"x":166,"y":633,"on":false},{"x":96,"y":611,"on":false},{"x":66,"y":595,"on":true},{"x":29,"y":682,"on":true},{"x":68,"y":702,"on":false},{"x":164,"y":724,"on":false},{"x":219,"y":724,"on":true},{"x":318,"y":724,"on":false},{"x":448,"y":632,"on":false},{"x":513,"y":468,"on":false},{"x":513,"y":360,"on":true},{"x":513,"y":249,"on":false},{"x":443,"y":82,"on":false},{"x":310,"y":-10,"on":false}] + ] + }, + "uni0187": { + "advanceWidth": 569, + "contours": [ + [{"x":569,"y":866,"on":true},{"x":589,"y":866,"on":false},{"x":620,"y":858,"on":false},{"x":629,"y":853,"on":true},{"x":629,"y":769,"on":true},{"x":622,"y":772,"on":false},{"x":596,"y":779,"on":false},{"x":581,"y":779,"on":true},{"x":561,"y":779,"on":false},{"x":538,"y":756,"on":false},{"x":538,"y":727,"on":true},{"x":538,"y":681,"on":true},{"x":501,"y":595,"on":true},{"x":470,"y":611,"on":false},{"x":402,"y":633,"on":false},{"x":362,"y":633,"on":true},{"x":298,"y":633,"on":false},{"x":211,"y":563,"on":false},{"x":165,"y":438,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":228,"on":false},{"x":266,"y":81,"on":false},{"x":364,"y":81,"on":true},{"x":404,"y":81,"on":false},{"x":478,"y":98,"on":false},{"x":515,"y":112,"on":true},{"x":515,"y":21,"on":true},{"x":479,"y":5,"on":false},{"x":401,"y":-10,"on":false},{"x":351,"y":-10,"on":true},{"x":254,"y":-10,"on":false},{"x":122,"y":79,"on":false},{"x":56,"y":244,"on":false},{"x":56,"y":357,"on":true},{"x":56,"y":464,"on":false},{"x":126,"y":629,"on":false},{"x":262,"y":724,"on":false},{"x":361,"y":724,"on":true},{"x":384,"y":724,"on":false},{"x":429,"y":718,"on":false},{"x":451,"y":713,"on":true},{"x":451,"y":732,"on":true},{"x":451,"y":800,"on":false},{"x":515,"y":866,"on":false}] + ] + }, + "uni0188": { + "advanceWidth": 453, + "contours": [ + [{"x":273,"y":-10,"on":true},{"x":168,"y":-10,"on":false},{"x":48,"y":125,"on":false},{"x":48,"y":267,"on":true},{"x":48,"y":409,"on":false},{"x":173,"y":549,"on":false},{"x":279,"y":549,"on":true},{"x":292,"y":549,"on":false},{"x":317,"y":546,"on":false},{"x":329,"y":545,"on":true},{"x":329,"y":626,"on":true},{"x":329,"y":697,"on":false},{"x":390,"y":766,"on":false},{"x":447,"y":766,"on":true},{"x":466,"y":766,"on":false},{"x":498,"y":756,"on":false},{"x":506,"y":752,"on":true},{"x":506,"y":669,"on":true},{"x":500,"y":672,"on":false},{"x":474,"y":679,"on":false},{"x":459,"y":679,"on":true},{"x":438,"y":679,"on":false},{"x":415,"y":656,"on":false},{"x":415,"y":627,"on":true},{"x":415,"y":518,"on":true},{"x":384,"y":436,"on":true},{"x":359,"y":447,"on":false},{"x":306,"y":462,"on":false},{"x":281,"y":462,"on":true},{"x":153,"y":462,"on":false},{"x":153,"y":267,"on":true},{"x":153,"y":77,"on":false},{"x":279,"y":77,"on":true},{"x":316,"y":77,"on":false},{"x":377,"y":95,"on":false},{"x":405,"y":110,"on":true},{"x":405,"y":22,"on":true},{"x":378,"y":6,"on":false},{"x":314,"y":-10,"on":false}] + ] + }, + "uni0189": { + "advanceWidth": 658, + "references": [ + {"glyph":"Eth","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni018A": { + "advanceWidth": 748, + "contours": [ + [{"x":176,"y":0,"on":true},{"x":176,"y":624,"on":true},{"x":153,"y":624,"on":true},{"x":124,"y":624,"on":false},{"x":97,"y":592,"on":false},{"x":97,"y":567,"on":true},{"x":97,"y":550,"on":false},{"x":103,"y":522,"on":false},{"x":106,"y":515,"on":true},{"x":19,"y":515,"on":true},{"x":15,"y":524,"on":false},{"x":8,"y":555,"on":false},{"x":8,"y":570,"on":true},{"x":8,"y":635,"on":false},{"x":78,"y":714,"on":false},{"x":157,"y":714,"on":true},{"x":374,"y":714,"on":true},{"x":522,"y":714,"on":false},{"x":693,"y":536,"on":false},{"x":693,"y":365,"on":true},{"x":693,"y":184,"on":false},{"x":518,"y":0,"on":false},{"x":358,"y":0,"on":true}], + [{"x":281,"y":90,"on":true},{"x":354,"y":90,"on":true},{"x":583,"y":90,"on":false},{"x":583,"y":361,"on":true},{"x":583,"y":496,"on":false},{"x":472,"y":624,"on":false},{"x":369,"y":624,"on":true},{"x":281,"y":624,"on":true}] + ] + }, + "uni018B": { + "advanceWidth": 563, + "contours": [ + [{"x":293,"y":0,"on":true},{"x":166,"y":0,"on":false},{"x":43,"y":109,"on":false},{"x":43,"y":208,"on":true},{"x":43,"y":271,"on":false},{"x":96,"y":368,"on":false},{"x":211,"y":422,"on":false},{"x":304,"y":422,"on":true},{"x":373,"y":422,"on":true},{"x":373,"y":623,"on":true},{"x":86,"y":623,"on":true},{"x":86,"y":714,"on":true},{"x":477,"y":714,"on":true},{"x":477,"y":0,"on":true}], + [{"x":301,"y":89,"on":true},{"x":373,"y":89,"on":true},{"x":373,"y":332,"on":true},{"x":312,"y":332,"on":true},{"x":231,"y":332,"on":false},{"x":149,"y":276,"on":false},{"x":149,"y":210,"on":true},{"x":149,"y":89,"on":false}] + ] + }, + "uni018C": { + "advanceWidth": 566, + "contours": [ + [{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":402,"on":false},{"x":153,"y":545,"on":false},{"x":243,"y":545,"on":true},{"x":295,"y":545,"on":false},{"x":368,"y":501,"on":false},{"x":390,"y":466,"on":true},{"x":395,"y":466,"on":true},{"x":394,"y":480,"on":false},{"x":389,"y":532,"on":false},{"x":389,"y":550,"on":true},{"x":389,"y":676,"on":true},{"x":100,"y":676,"on":true},{"x":100,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":160,"on":false},{"x":391,"y":249,"on":true},{"x":391,"y":270,"on":true},{"x":391,"y":364,"on":false},{"x":336,"y":459,"on":false},{"x":266,"y":459,"on":true},{"x":209,"y":459,"on":false},{"x":152,"y":358,"on":false},{"x":152,"y":267,"on":true},{"x":152,"y":172,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "uni018D": { + "advanceWidth": 553, + "references": [ + {"glyph":"delta","x":553,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni018E": { + "advanceWidth": 503, + "contours": [ + [{"x":54,"y":0,"on":true},{"x":54,"y":91,"on":true},{"x":312,"y":91,"on":true},{"x":312,"y":327,"on":true},{"x":70,"y":327,"on":true},{"x":70,"y":417,"on":true},{"x":312,"y":417,"on":true},{"x":312,"y":624,"on":true},{"x":54,"y":624,"on":true},{"x":54,"y":714,"on":true},{"x":417,"y":714,"on":true},{"x":417,"y":0,"on":true}] + ] + }, + "uni018F": { + "advanceWidth": 684, + "references": [ + {"glyph":"uni04D8","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0190": { + "advanceWidth": 548, + "contours": [ + [{"x":297,"y":724,"on":true},{"x":366,"y":724,"on":false},{"x":471,"y":686,"on":false},{"x":512,"y":655,"on":true},{"x":464,"y":581,"on":true},{"x":431,"y":606,"on":false},{"x":356,"y":636,"on":false},{"x":305,"y":636,"on":true},{"x":249,"y":636,"on":false},{"x":182,"y":584,"on":false},{"x":182,"y":534,"on":true},{"x":182,"y":477,"on":false},{"x":266,"y":414,"on":false},{"x":357,"y":414,"on":true},{"x":430,"y":414,"on":true},{"x":430,"y":326,"on":true},{"x":352,"y":326,"on":true},{"x":259,"y":326,"on":false},{"x":159,"y":268,"on":false},{"x":159,"y":204,"on":true},{"x":159,"y":78,"on":false},{"x":322,"y":78,"on":true},{"x":369,"y":78,"on":false},{"x":472,"y":104,"on":false},{"x":511,"y":124,"on":true},{"x":511,"y":30,"on":true},{"x":428,"y":-10,"on":false},{"x":308,"y":-10,"on":true},{"x":173,"y":-10,"on":false},{"x":52,"y":104,"on":false},{"x":52,"y":195,"on":true},{"x":52,"y":270,"on":false},{"x":140,"y":360,"on":false},{"x":223,"y":371,"on":true},{"x":223,"y":374,"on":true},{"x":156,"y":388,"on":false},{"x":76,"y":472,"on":false},{"x":76,"y":544,"on":true},{"x":76,"y":623,"on":false},{"x":194,"y":724,"on":false}] + ] + }, + "uni0191": { + "advanceWidth": 477, + "contours": [ + [{"x":39,"y":-225,"on":true},{"x":0,"y":-225,"on":false},{"x":-26,"y":-212,"on":true},{"x":-26,"y":-125,"on":true},{"x":-16,"y":-130,"on":false},{"x":10,"y":-135,"on":false},{"x":25,"y":-135,"on":true},{"x":55,"y":-135,"on":false},{"x":86,"y":-94,"on":false},{"x":86,"y":-42,"on":true},{"x":86,"y":714,"on":true},{"x":449,"y":714,"on":true},{"x":449,"y":624,"on":true},{"x":190,"y":624,"on":true},{"x":190,"y":388,"on":true},{"x":432,"y":388,"on":true},{"x":432,"y":298,"on":true},{"x":190,"y":298,"on":true},{"x":190,"y":-54,"on":true},{"x":190,"y":-146,"on":false},{"x":109,"y":-225,"on":false}] + ] + }, + "florin": { + "advanceWidth": 513, + "contours": [ + [{"x":358,"y":724,"on":true},{"x":389,"y":724,"on":false},{"x":440,"y":711,"on":false},{"x":463,"y":702,"on":true},{"x":437,"y":624,"on":true},{"x":422,"y":630,"on":false},{"x":388,"y":639,"on":false},{"x":370,"y":639,"on":true},{"x":335,"y":639,"on":false},{"x":304,"y":594,"on":false},{"x":304,"y":540,"on":true},{"x":304,"y":481,"on":true},{"x":419,"y":481,"on":true},{"x":419,"y":400,"on":true},{"x":305,"y":400,"on":true},{"x":305,"y":-57,"on":true},{"x":305,"y":-150,"on":false},{"x":229,"y":-240,"on":false},{"x":148,"y":-240,"on":true},{"x":127,"y":-240,"on":false},{"x":89,"y":-234,"on":false},{"x":74,"y":-230,"on":true},{"x":74,"y":-146,"on":true},{"x":89,"y":-150,"on":false},{"x":119,"y":-155,"on":false},{"x":134,"y":-155,"on":true},{"x":168,"y":-155,"on":false},{"x":202,"y":-112,"on":false},{"x":202,"y":-58,"on":true},{"x":202,"y":400,"on":true},{"x":114,"y":400,"on":true},{"x":114,"y":451,"on":true},{"x":202,"y":483,"on":true},{"x":202,"y":540,"on":true},{"x":202,"y":642,"on":false},{"x":282,"y":724,"on":false}] + ] + }, + "uni0193": { + "advanceWidth": 663, + "contours": [ + [{"x":620,"y":866,"on":true},{"x":640,"y":866,"on":false},{"x":671,"y":858,"on":false},{"x":680,"y":853,"on":true},{"x":680,"y":769,"on":true},{"x":673,"y":772,"on":false},{"x":647,"y":779,"on":false},{"x":632,"y":779,"on":true},{"x":611,"y":779,"on":false},{"x":588,"y":756,"on":false},{"x":588,"y":727,"on":true},{"x":588,"y":679,"on":true},{"x":551,"y":592,"on":true},{"x":516,"y":610,"on":false},{"x":434,"y":633,"on":false},{"x":391,"y":633,"on":true},{"x":283,"y":633,"on":false},{"x":165,"y":486,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":276,"on":false},{"x":209,"y":151,"on":false},{"x":303,"y":81,"on":false},{"x":379,"y":81,"on":true},{"x":415,"y":81,"on":false},{"x":470,"y":89,"on":false},{"x":492,"y":95,"on":true},{"x":492,"y":293,"on":true},{"x":361,"y":293,"on":true},{"x":361,"y":384,"on":true},{"x":596,"y":384,"on":true},{"x":596,"y":28,"on":true},{"x":543,"y":9,"on":false},{"x":431,"y":-10,"on":false},{"x":365,"y":-10,"on":true},{"x":264,"y":-10,"on":false},{"x":126,"y":80,"on":false},{"x":56,"y":246,"on":false},{"x":56,"y":358,"on":true},{"x":56,"y":468,"on":false},{"x":134,"y":633,"on":false},{"x":284,"y":724,"on":false},{"x":392,"y":724,"on":true},{"x":450,"y":724,"on":false},{"x":502,"y":709,"on":true},{"x":502,"y":732,"on":true},{"x":502,"y":800,"on":false},{"x":566,"y":866,"on":false}] + ] + }, + "uni0194": { + "advanceWidth": 545, + "contours": [ + [{"x":272,"y":-240,"on":true},{"x":212,"y":-240,"on":false},{"x":150,"y":-164,"on":false},{"x":150,"y":-102,"on":true},{"x":150,"y":-55,"on":false},{"x":189,"y":60,"on":false},{"x":215,"y":117,"on":true},{"x":0,"y":714,"on":true},{"x":109,"y":714,"on":true},{"x":230,"y":362,"on":true},{"x":242,"y":327,"on":false},{"x":265,"y":242,"on":false},{"x":271,"y":208,"on":true},{"x":277,"y":242,"on":false},{"x":300,"y":323,"on":false},{"x":313,"y":359,"on":true},{"x":436,"y":714,"on":true},{"x":545,"y":714,"on":true},{"x":328,"y":118,"on":true},{"x":359,"y":54,"on":false},{"x":394,"y":-60,"on":false},{"x":394,"y":-102,"on":true},{"x":394,"y":-163,"on":false},{"x":332,"y":-240,"on":false}], + [{"x":272,"y":-163,"on":true},{"x":305,"y":-163,"on":false},{"x":305,"y":-103,"on":true},{"x":305,"y":-78,"on":false},{"x":289,"y":-4,"on":false},{"x":272,"y":34,"on":true},{"x":255,"y":-6,"on":false},{"x":239,"y":-77,"on":false},{"x":239,"y":-101,"on":true},{"x":239,"y":-133,"on":false},{"x":258,"y":-163,"on":false}] + ] + }, + "uni0195": { + "advanceWidth": 865, + "contours": [ + [{"x":588,"y":-11,"on":true},{"x":486,"y":-11,"on":false},{"x":384,"y":84,"on":false},{"x":384,"y":199,"on":true},{"x":384,"y":338,"on":true},{"x":384,"y":402,"on":false},{"x":342,"y":463,"on":false},{"x":296,"y":463,"on":true},{"x":230,"y":463,"on":false},{"x":178,"y":366,"on":false},{"x":178,"y":272,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":558,"on":true},{"x":178,"y":534,"on":false},{"x":174,"y":488,"on":false},{"x":171,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":199,"y":508,"on":false},{"x":274,"y":549,"on":false},{"x":319,"y":549,"on":true},{"x":401,"y":549,"on":false},{"x":486,"y":454,"on":false},{"x":486,"y":355,"on":true},{"x":486,"y":211,"on":true},{"x":486,"y":140,"on":false},{"x":536,"y":76,"on":false},{"x":588,"y":76,"on":true},{"x":641,"y":76,"on":false},{"x":691,"y":140,"on":false},{"x":691,"y":219,"on":true},{"x":691,"y":539,"on":true},{"x":793,"y":539,"on":true},{"x":793,"y":214,"on":true},{"x":793,"y":95,"on":false},{"x":691,"y":-11,"on":false}] + ] + }, + "uni0196": { + "advanceWidth": 330, + "contours": [ + [{"x":223,"y":-10,"on":true},{"x":158,"y":-10,"on":false},{"x":80,"y":61,"on":false},{"x":80,"y":153,"on":true},{"x":80,"y":714,"on":true},{"x":187,"y":714,"on":true},{"x":187,"y":161,"on":true},{"x":187,"y":82,"on":false},{"x":248,"y":82,"on":true},{"x":268,"y":82,"on":false},{"x":306,"y":90,"on":false},{"x":320,"y":95,"on":true},{"x":320,"y":9,"on":true},{"x":304,"y":1,"on":false},{"x":250,"y":-10,"on":false}] + ] + }, + "uni0197": { + "advanceWidth": 332, + "contours": [ + [{"x":296,"y":714,"on":true},{"x":296,"y":654,"on":true},{"x":218,"y":630,"on":true},{"x":218,"y":410,"on":true},{"x":304,"y":410,"on":true},{"x":304,"y":324,"on":true},{"x":218,"y":324,"on":true},{"x":218,"y":83,"on":true},{"x":296,"y":60,"on":true},{"x":296,"y":0,"on":true},{"x":36,"y":0,"on":true},{"x":36,"y":60,"on":true},{"x":113,"y":83,"on":true},{"x":113,"y":324,"on":true},{"x":28,"y":324,"on":true},{"x":28,"y":410,"on":true},{"x":113,"y":410,"on":true},{"x":113,"y":630,"on":true},{"x":36,"y":654,"on":true},{"x":36,"y":714,"on":true}] + ] + }, + "uni0198": { + "advanceWidth": 574, + "contours": [ + [{"x":512,"y":722,"on":true},{"x":531,"y":722,"on":false},{"x":559,"y":716,"on":false},{"x":568,"y":712,"on":true},{"x":568,"y":627,"on":true},{"x":561,"y":629,"on":false},{"x":538,"y":633,"on":false},{"x":527,"y":633,"on":true},{"x":512,"y":633,"on":false},{"x":482,"y":614,"on":false},{"x":463,"y":586,"on":true},{"x":328,"y":401,"on":true},{"x":573,"y":0,"on":true},{"x":453,"y":0,"on":true},{"x":256,"y":326,"on":true},{"x":191,"y":263,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":363,"on":true},{"x":210,"y":392,"on":false},{"x":254,"y":452,"on":false},{"x":275,"y":482,"on":true},{"x":378,"y":629,"on":true},{"x":414,"y":682,"on":false},{"x":472,"y":722,"on":false}] + ] + }, + "uni0199": { + "advanceWidth": 509, + "contours": [ + [{"x":206,"y":765,"on":true},{"x":224,"y":765,"on":false},{"x":260,"y":758,"on":false},{"x":270,"y":753,"on":true},{"x":270,"y":669,"on":true},{"x":262,"y":672,"on":false},{"x":236,"y":678,"on":false},{"x":223,"y":678,"on":true},{"x":200,"y":678,"on":false},{"x":177,"y":650,"on":false},{"x":177,"y":616,"on":true},{"x":177,"y":386,"on":true},{"x":177,"y":362,"on":false},{"x":174,"y":306,"on":false},{"x":172,"y":282,"on":true},{"x":175,"y":282,"on":true},{"x":185,"y":298,"on":false},{"x":216,"y":341,"on":false},{"x":229,"y":357,"on":true},{"x":377,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":305,"y":315,"on":true},{"x":504,"y":0,"on":true},{"x":386,"y":0,"on":true},{"x":236,"y":246,"on":true},{"x":177,"y":190,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":615,"on":true},{"x":75,"y":690,"on":false},{"x":142,"y":765,"on":false}] + ] + }, + "uni019A": { + "advanceWidth": 261, + "contours": [ + [{"x":79,"y":0,"on":true},{"x":79,"y":339,"on":true},{"x":11,"y":339,"on":true},{"x":11,"y":416,"on":true},{"x":79,"y":416,"on":true},{"x":79,"y":760,"on":true},{"x":181,"y":760,"on":true},{"x":181,"y":416,"on":true},{"x":250,"y":416,"on":true},{"x":250,"y":339,"on":true},{"x":181,"y":339,"on":true},{"x":181,"y":0,"on":true}] + ] + }, + "uni019B": { + "advanceWidth": 513, + "contours": [ + [{"x":1,"y":0,"on":true},{"x":204,"y":520,"on":true},{"x":187,"y":572,"on":true},{"x":99,"y":543,"on":true},{"x":76,"y":610,"on":true},{"x":161,"y":638,"on":true},{"x":149,"y":661,"on":false},{"x":118,"y":681,"on":false},{"x":95,"y":681,"on":true},{"x":81,"y":681,"on":false},{"x":57,"y":677,"on":false},{"x":48,"y":675,"on":true},{"x":48,"y":759,"on":true},{"x":60,"y":762,"on":false},{"x":94,"y":766,"on":false},{"x":110,"y":766,"on":true},{"x":166,"y":766,"on":false},{"x":232,"y":718,"on":false},{"x":255,"y":670,"on":true},{"x":344,"y":700,"on":true},{"x":367,"y":633,"on":true},{"x":281,"y":604,"on":true},{"x":425,"y":144,"on":true},{"x":437,"y":106,"on":false},{"x":463,"y":77,"on":false},{"x":482,"y":77,"on":true},{"x":500,"y":77,"on":false},{"x":513,"y":82,"on":true},{"x":513,"y":1,"on":true},{"x":502,"y":-4,"on":false},{"x":470,"y":-10,"on":false},{"x":454,"y":-10,"on":true},{"x":408,"y":-10,"on":false},{"x":356,"y":42,"on":false},{"x":340,"y":97,"on":true},{"x":285,"y":272,"on":true},{"x":275,"y":303,"on":false},{"x":254,"y":374,"on":false},{"x":250,"y":399,"on":true},{"x":246,"y":399,"on":true},{"x":240,"y":373,"on":false},{"x":222,"y":315,"on":false},{"x":211,"y":288,"on":true},{"x":106,"y":0,"on":true}] + ] + }, + "uni019C": { + "advanceWidth": 962, + "contours": [ + [{"x":260,"y":-10,"on":true},{"x":171,"y":-10,"on":false},{"x":80,"y":86,"on":false},{"x":80,"y":193,"on":true},{"x":80,"y":714,"on":true},{"x":185,"y":714,"on":true},{"x":185,"y":209,"on":true},{"x":185,"y":144,"on":false},{"x":233,"y":81,"on":false},{"x":287,"y":81,"on":true},{"x":351,"y":81,"on":false},{"x":425,"y":166,"on":false},{"x":425,"y":249,"on":true},{"x":425,"y":714,"on":true},{"x":530,"y":714,"on":true},{"x":530,"y":209,"on":true},{"x":530,"y":144,"on":false},{"x":578,"y":81,"on":false},{"x":633,"y":81,"on":true},{"x":699,"y":81,"on":false},{"x":770,"y":172,"on":false},{"x":770,"y":261,"on":true},{"x":770,"y":714,"on":true},{"x":875,"y":714,"on":true},{"x":875,"y":0,"on":true},{"x":792,"y":0,"on":true},{"x":776,"y":78,"on":true},{"x":771,"y":78,"on":true},{"x":742,"y":33,"on":false},{"x":652,"y":-10,"on":false},{"x":602,"y":-10,"on":true},{"x":480,"y":-10,"on":false},{"x":442,"y":86,"on":true},{"x":437,"y":86,"on":true},{"x":406,"y":35,"on":false},{"x":312,"y":-10,"on":false}] + ] + }, + "uni019D": { + "advanceWidth": 706, + "contours": [ + [{"x":37,"y":-225,"on":true},{"x":18,"y":-225,"on":false},{"x":-14,"y":-218,"on":false},{"x":-26,"y":-212,"on":true},{"x":-26,"y":-125,"on":true},{"x":-16,"y":-130,"on":false},{"x":10,"y":-135,"on":false},{"x":24,"y":-135,"on":true},{"x":55,"y":-135,"on":false},{"x":86,"y":-94,"on":false},{"x":86,"y":-42,"on":true},{"x":86,"y":714,"on":true},{"x":212,"y":714,"on":true},{"x":525,"y":149,"on":true},{"x":529,"y":149,"on":true},{"x":528,"y":168,"on":false},{"x":525,"y":229,"on":false},{"x":522,"y":297,"on":false},{"x":522,"y":325,"on":true},{"x":522,"y":714,"on":true},{"x":620,"y":714,"on":true},{"x":620,"y":0,"on":true},{"x":493,"y":0,"on":true},{"x":179,"y":570,"on":true},{"x":175,"y":570,"on":true},{"x":177,"y":538,"on":false},{"x":182,"y":436,"on":false},{"x":182,"y":390,"on":true},{"x":182,"y":-51,"on":true},{"x":182,"y":-143,"on":false},{"x":108,"y":-225,"on":false}] + ] + }, + "uni019E": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni019F": { + "advanceWidth": 707, + "references": [ + {"glyph":"uni0472","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Ohorn": { + "advanceWidth": 713, + "contours": [ + [{"x":648,"y":358,"on":true},{"x":648,"y":249,"on":false},{"x":583,"y":83,"on":false},{"x":452,"y":-10,"on":false},{"x":352,"y":-10,"on":true},{"x":250,"y":-10,"on":false},{"x":119,"y":84,"on":false},{"x":56,"y":251,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":202,"y":725,"on":false},{"x":353,"y":725,"on":true},{"x":427,"y":725,"on":false},{"x":538,"y":673,"on":false},{"x":576,"y":624,"on":true},{"x":610,"y":639,"on":false},{"x":630,"y":710,"on":false},{"x":630,"y":760,"on":true},{"x":733,"y":760,"on":true},{"x":739,"y":749,"on":true},{"x":728,"y":677,"on":false},{"x":670,"y":580,"on":false},{"x":612,"y":558,"on":true},{"x":648,"y":476,"on":false}], + [{"x":166,"y":358,"on":true},{"x":166,"y":226,"on":false},{"x":256,"y":82,"on":false},{"x":352,"y":82,"on":true},{"x":448,"y":82,"on":false},{"x":537,"y":225,"on":false},{"x":537,"y":358,"on":true},{"x":537,"y":490,"on":false},{"x":449,"y":633,"on":false},{"x":353,"y":633,"on":true},{"x":256,"y":633,"on":false},{"x":166,"y":489,"on":false}] + ] + }, + "ohorn": { + "advanceWidth": 581, + "contours": [ + [{"x":506,"y":271,"on":true},{"x":506,"y":137,"on":false},{"x":383,"y":-10,"on":false},{"x":275,"y":-10,"on":true},{"x":208,"y":-10,"on":false},{"x":105,"y":56,"on":false},{"x":48,"y":182,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":405,"on":false},{"x":170,"y":549,"on":false},{"x":278,"y":549,"on":true},{"x":380,"y":549,"on":false},{"x":441,"y":479,"on":true},{"x":479,"y":492,"on":false},{"x":504,"y":568,"on":false},{"x":504,"y":620,"on":true},{"x":606,"y":620,"on":true},{"x":612,"y":609,"on":true},{"x":601,"y":532,"on":false},{"x":540,"y":437,"on":false},{"x":479,"y":417,"on":true},{"x":492,"y":387,"on":false},{"x":506,"y":314,"on":false}], + [{"x":152,"y":270,"on":true},{"x":152,"y":174,"on":false},{"x":212,"y":75,"on":false},{"x":277,"y":75,"on":true},{"x":342,"y":75,"on":false},{"x":402,"y":174,"on":false},{"x":402,"y":271,"on":true},{"x":402,"y":367,"on":false},{"x":342,"y":464,"on":false},{"x":277,"y":464,"on":true},{"x":211,"y":464,"on":false},{"x":152,"y":367,"on":false}] + ] + }, + "uni01A2": { + "advanceWidth": 1003, + "contours": [ + [{"x":630,"y":358,"on":true},{"x":630,"y":249,"on":false},{"x":568,"y":83,"on":false},{"x":440,"y":-10,"on":false},{"x":343,"y":-10,"on":true},{"x":244,"y":-10,"on":false},{"x":117,"y":84,"on":false},{"x":56,"y":250,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":198,"y":725,"on":false},{"x":344,"y":725,"on":true},{"x":414,"y":725,"on":false},{"x":519,"y":674,"on":false},{"x":555,"y":628,"on":true},{"x":588,"y":675,"on":false},{"x":682,"y":725,"on":false},{"x":737,"y":725,"on":true},{"x":827,"y":725,"on":false},{"x":923,"y":626,"on":false},{"x":923,"y":516,"on":true},{"x":923,"y":0,"on":true},{"x":819,"y":0,"on":true},{"x":819,"y":506,"on":true},{"x":819,"y":634,"on":false},{"x":712,"y":634,"on":true},{"x":630,"y":633,"on":false},{"x":590,"y":569,"on":true},{"x":610,"y":526,"on":false},{"x":630,"y":419,"on":false}], + [{"x":166,"y":358,"on":true},{"x":166,"y":226,"on":false},{"x":252,"y":82,"on":false},{"x":343,"y":82,"on":true},{"x":434,"y":82,"on":false},{"x":520,"y":225,"on":false},{"x":520,"y":358,"on":true},{"x":520,"y":490,"on":false},{"x":435,"y":633,"on":false},{"x":344,"y":633,"on":true},{"x":252,"y":633,"on":false},{"x":166,"y":490,"on":false}] + ] + }, + "uni01A3": { + "advanceWidth": 813, + "contours": [ + [{"x":491,"y":271,"on":true},{"x":491,"y":140,"on":false},{"x":375,"y":-10,"on":false},{"x":268,"y":-10,"on":true},{"x":168,"y":-10,"on":false},{"x":48,"y":140,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":403,"on":false},{"x":163,"y":549,"on":false},{"x":270,"y":549,"on":true},{"x":376,"y":549,"on":false},{"x":435,"y":471,"on":true},{"x":460,"y":509,"on":false},{"x":536,"y":549,"on":false},{"x":580,"y":549,"on":true},{"x":658,"y":549,"on":false},{"x":740,"y":456,"on":false},{"x":740,"y":356,"on":true},{"x":740,"y":-240,"on":true},{"x":638,"y":-240,"on":true},{"x":638,"y":342,"on":true},{"x":638,"y":463,"on":false},{"x":556,"y":463,"on":true},{"x":525,"y":463,"on":false},{"x":480,"y":437,"on":false},{"x":465,"y":416,"on":true},{"x":491,"y":356,"on":false}], + [{"x":152,"y":270,"on":true},{"x":152,"y":177,"on":false},{"x":208,"y":75,"on":false},{"x":270,"y":75,"on":true},{"x":331,"y":75,"on":false},{"x":387,"y":176,"on":false},{"x":387,"y":271,"on":true},{"x":387,"y":365,"on":false},{"x":330,"y":464,"on":false},{"x":269,"y":464,"on":true},{"x":208,"y":464,"on":false},{"x":152,"y":364,"on":false}] + ] + }, + "uni01A4": { + "advanceWidth": 643, + "contours": [ + [{"x":174,"y":0,"on":true},{"x":174,"y":624,"on":true},{"x":153,"y":624,"on":true},{"x":124,"y":624,"on":false},{"x":97,"y":592,"on":false},{"x":97,"y":567,"on":true},{"x":97,"y":550,"on":false},{"x":103,"y":522,"on":false},{"x":106,"y":515,"on":true},{"x":19,"y":515,"on":true},{"x":15,"y":524,"on":false},{"x":8,"y":555,"on":false},{"x":8,"y":570,"on":true},{"x":8,"y":635,"on":false},{"x":78,"y":714,"on":false},{"x":157,"y":714,"on":true},{"x":355,"y":714,"on":true},{"x":482,"y":714,"on":false},{"x":600,"y":604,"on":false},{"x":600,"y":500,"on":true},{"x":600,"y":436,"on":false},{"x":550,"y":332,"on":false},{"x":437,"y":271,"on":false},{"x":344,"y":271,"on":true},{"x":279,"y":271,"on":true},{"x":279,"y":0,"on":true}], + [{"x":279,"y":360,"on":true},{"x":333,"y":360,"on":true},{"x":413,"y":360,"on":false},{"x":494,"y":424,"on":false},{"x":494,"y":497,"on":true},{"x":494,"y":562,"on":false},{"x":423,"y":625,"on":false},{"x":348,"y":625,"on":true},{"x":279,"y":625,"on":true}] + ] + }, + "uni01A5": { + "advanceWidth": 566, + "contours": [ + [{"x":207,"y":765,"on":true},{"x":225,"y":765,"on":false},{"x":260,"y":758,"on":false},{"x":270,"y":753,"on":true},{"x":270,"y":668,"on":true},{"x":262,"y":672,"on":false},{"x":237,"y":678,"on":false},{"x":223,"y":678,"on":true},{"x":200,"y":678,"on":false},{"x":178,"y":650,"on":false},{"x":178,"y":616,"on":true},{"x":178,"y":544,"on":true},{"x":178,"y":528,"on":false},{"x":174,"y":485,"on":false},{"x":172,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":505,"on":false},{"x":271,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":413,"y":549,"on":false},{"x":519,"y":409,"on":false},{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":414,"y":-10,"on":false},{"x":325,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":200,"y":33,"on":false},{"x":178,"y":67,"on":true},{"x":172,"y":67,"on":true},{"x":174,"y":48,"on":false},{"x":178,"y":2,"on":false},{"x":178,"y":-15,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":615,"on":true},{"x":75,"y":689,"on":false},{"x":143,"y":765,"on":false}], + [{"x":299,"y":464,"on":true},{"x":234,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":287,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":173,"on":false},{"x":232,"y":76,"on":false},{"x":300,"y":76,"on":true},{"x":358,"y":76,"on":false},{"x":414,"y":179,"on":false},{"x":414,"y":271,"on":true},{"x":414,"y":363,"on":false},{"x":359,"y":464,"on":false}] + ] + }, + "uni01A6": { + "advanceWidth": 576, + "contours": [ + [{"x":447,"y":-100,"on":true},{"x":292,"y":190,"on":true},{"x":191,"y":190,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":614,"on":true},{"x":263,"y":614,"on":true},{"x":391,"y":614,"on":false},{"x":513,"y":512,"on":false},{"x":513,"y":409,"on":true},{"x":513,"y":332,"on":false},{"x":440,"y":240,"on":false},{"x":385,"y":218,"on":true},{"x":565,"y":-100,"on":true}], + [{"x":191,"y":277,"on":true},{"x":265,"y":277,"on":true},{"x":406,"y":277,"on":false},{"x":406,"y":405,"on":true},{"x":406,"y":469,"on":false},{"x":334,"y":524,"on":false},{"x":259,"y":524,"on":true},{"x":191,"y":524,"on":true}] + ] + }, + "uni01A7": { + "advanceWidth": 502, + "contours": [ + [{"x":246,"y":724,"on":true},{"x":341,"y":724,"on":false},{"x":457,"y":626,"on":false},{"x":456,"y":539,"on":true},{"x":456,"y":482,"on":false},{"x":416,"y":402,"on":false},{"x":342,"y":347,"on":false},{"x":291,"y":325,"on":true},{"x":214,"y":292,"on":false},{"x":147,"y":235,"on":false},{"x":147,"y":187,"on":true},{"x":147,"y":138,"on":false},{"x":212,"y":82,"on":false},{"x":275,"y":82,"on":true},{"x":323,"y":82,"on":false},{"x":419,"y":109,"on":false},{"x":457,"y":128,"on":true},{"x":457,"y":29,"on":true},{"x":421,"y":11,"on":false},{"x":325,"y":-10,"on":false},{"x":270,"y":-10,"on":true},{"x":163,"y":-10,"on":false},{"x":42,"y":97,"on":false},{"x":42,"y":191,"on":true},{"x":42,"y":269,"on":false},{"x":134,"y":364,"on":false},{"x":216,"y":401,"on":true},{"x":266,"y":422,"on":false},{"x":325,"y":460,"on":false},{"x":352,"y":505,"on":false},{"x":352,"y":538,"on":true},{"x":352,"y":580,"on":false},{"x":295,"y":631,"on":false},{"x":241,"y":631,"on":true},{"x":205,"y":631,"on":false},{"x":133,"y":611,"on":false},{"x":97,"y":593,"on":true},{"x":65,"y":683,"on":true},{"x":103,"y":701,"on":false},{"x":195,"y":724,"on":false}] + ] + }, + "uni01A8": { + "advanceWidth": 435, + "contours": [ + [{"x":212,"y":549,"on":true},{"x":297,"y":549,"on":false},{"x":394,"y":474,"on":false},{"x":394,"y":406,"on":true},{"x":394,"y":342,"on":false},{"x":317,"y":272,"on":false},{"x":248,"y":241,"on":true},{"x":184,"y":212,"on":false},{"x":139,"y":171,"on":false},{"x":139,"y":143,"on":true},{"x":139,"y":73,"on":false},{"x":237,"y":73,"on":true},{"x":278,"y":73,"on":false},{"x":360,"y":97,"on":false},{"x":391,"y":115,"on":true},{"x":391,"y":24,"on":true},{"x":360,"y":8,"on":false},{"x":282,"y":-10,"on":false},{"x":231,"y":-10,"on":true},{"x":136,"y":-10,"on":false},{"x":38,"y":70,"on":false},{"x":38,"y":146,"on":true},{"x":38,"y":212,"on":false},{"x":115,"y":284,"on":false},{"x":180,"y":313,"on":true},{"x":244,"y":342,"on":false},{"x":294,"y":379,"on":false},{"x":294,"y":408,"on":true},{"x":294,"y":435,"on":false},{"x":249,"y":467,"on":false},{"x":208,"y":467,"on":true},{"x":178,"y":467,"on":false},{"x":116,"y":448,"on":false},{"x":85,"y":433,"on":true},{"x":54,"y":512,"on":true},{"x":130,"y":549,"on":false}] + ] + }, + "uni01A9": { + "advanceWidth": 518, + "references": [ + {"glyph":"Sigma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni01AA": { + "advanceWidth": 345, + "contours": [ + [{"x":116,"y":767,"on":true},{"x":184,"y":767,"on":false},{"x":250,"y":688,"on":false},{"x":250,"y":613,"on":true},{"x":250,"y":-77,"on":true},{"x":250,"y":-154,"on":false},{"x":311,"y":-154,"on":true},{"x":330,"y":-154,"on":false},{"x":372,"y":-146,"on":false},{"x":385,"y":-141,"on":true},{"x":385,"y":-221,"on":true},{"x":368,"y":-229,"on":false},{"x":317,"y":-240,"on":false},{"x":289,"y":-240,"on":true},{"x":225,"y":-240,"on":false},{"x":148,"y":-170,"on":false},{"x":148,"y":-78,"on":true},{"x":148,"y":537,"on":true},{"x":114,"y":537,"on":true},{"x":50,"y":537,"on":false},{"x":-9,"y":602,"on":false},{"x":-9,"y":652,"on":true},{"x":-9,"y":682,"on":false},{"x":16,"y":734,"on":false},{"x":70,"y":767,"on":false}], + [{"x":104,"y":696,"on":true},{"x":84,"y":696,"on":false},{"x":66,"y":670,"on":false},{"x":66,"y":653,"on":true},{"x":66,"y":629,"on":false},{"x":94,"y":606,"on":false},{"x":118,"y":606,"on":true},{"x":148,"y":606,"on":true},{"x":148,"y":631,"on":true},{"x":148,"y":696,"on":false}] + ] + }, + "uni01AB": { + "advanceWidth": 344, + "contours": [ + [{"x":199,"y":-240,"on":true},{"x":182,"y":-240,"on":false},{"x":148,"y":-233,"on":false},{"x":137,"y":-229,"on":true},{"x":137,"y":-146,"on":true},{"x":147,"y":-150,"on":false},{"x":169,"y":-155,"on":false},{"x":182,"y":-155,"on":true},{"x":205,"y":-155,"on":false},{"x":230,"y":-127,"on":false},{"x":230,"y":-95,"on":true},{"x":230,"y":-9,"on":true},{"x":216,"y":-9,"on":true},{"x":160,"y":-9,"on":false},{"x":83,"y":62,"on":false},{"x":83,"y":149,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":88,"y":543,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":539,"on":true},{"x":317,"y":539,"on":true},{"x":317,"y":459,"on":true},{"x":185,"y":459,"on":true},{"x":185,"y":157,"on":true},{"x":185,"y":75,"on":false},{"x":252,"y":75,"on":true},{"x":290,"y":75,"on":false},{"x":322,"y":88,"on":true},{"x":322,"y":-94,"on":true},{"x":322,"y":-165,"on":false},{"x":261,"y":-240,"on":false}] + ] + }, + "uni01AC": { + "advanceWidth": 531, + "contours": [ + [{"x":228,"y":0,"on":true},{"x":228,"y":623,"on":true},{"x":153,"y":623,"on":true},{"x":124,"y":623,"on":false},{"x":97,"y":592,"on":false},{"x":97,"y":566,"on":true},{"x":97,"y":550,"on":false},{"x":103,"y":522,"on":false},{"x":106,"y":515,"on":true},{"x":19,"y":515,"on":true},{"x":15,"y":524,"on":false},{"x":8,"y":555,"on":false},{"x":8,"y":570,"on":true},{"x":8,"y":635,"on":false},{"x":78,"y":714,"on":false},{"x":157,"y":714,"on":true},{"x":518,"y":714,"on":true},{"x":518,"y":623,"on":true},{"x":333,"y":623,"on":true},{"x":333,"y":0,"on":true}] + ] + }, + "uni01AD": { + "advanceWidth": 344, + "contours": [ + [{"x":231,"y":765,"on":true},{"x":252,"y":765,"on":false},{"x":293,"y":758,"on":false},{"x":304,"y":753,"on":true},{"x":304,"y":668,"on":true},{"x":294,"y":672,"on":false},{"x":258,"y":678,"on":false},{"x":241,"y":678,"on":true},{"x":211,"y":678,"on":false},{"x":185,"y":646,"on":false},{"x":185,"y":611,"on":true},{"x":185,"y":539,"on":true},{"x":317,"y":539,"on":true},{"x":317,"y":459,"on":true},{"x":185,"y":459,"on":true},{"x":185,"y":158,"on":true},{"x":185,"y":75,"on":false},{"x":252,"y":75,"on":true},{"x":290,"y":75,"on":false},{"x":322,"y":88,"on":true},{"x":322,"y":9,"on":true},{"x":305,"y":1,"on":false},{"x":254,"y":-10,"on":false},{"x":226,"y":-10,"on":true},{"x":163,"y":-10,"on":false},{"x":83,"y":62,"on":false},{"x":83,"y":154,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":83,"y":540,"on":true},{"x":83,"y":609,"on":true},{"x":83,"y":686,"on":false},{"x":160,"y":765,"on":false}] + ] + }, + "uni01AE": { + "advanceWidth": 501, + "contours": [ + [{"x":345,"y":-225,"on":true},{"x":272,"y":-225,"on":false},{"x":198,"y":-144,"on":false},{"x":198,"y":-55,"on":true},{"x":198,"y":623,"on":true},{"x":12,"y":623,"on":true},{"x":12,"y":714,"on":true},{"x":488,"y":714,"on":true},{"x":488,"y":623,"on":true},{"x":303,"y":623,"on":true},{"x":303,"y":-49,"on":true},{"x":303,"y":-96,"on":false},{"x":332,"y":-135,"on":false},{"x":362,"y":-135,"on":true},{"x":377,"y":-135,"on":false},{"x":402,"y":-130,"on":false},{"x":413,"y":-125,"on":true},{"x":413,"y":-212,"on":true},{"x":385,"y":-225,"on":false}] + ] + }, + "Uhorn": { + "advanceWidth": 735, + "contours": [ + [{"x":583,"y":714,"on":true},{"x":583,"y":617,"on":true},{"x":627,"y":624,"on":false},{"x":657,"y":703,"on":false},{"x":657,"y":760,"on":true},{"x":758,"y":760,"on":true},{"x":765,"y":749,"on":true},{"x":753,"y":664,"on":false},{"x":674,"y":559,"on":false},{"x":583,"y":547,"on":true},{"x":583,"y":251,"on":true},{"x":583,"y":133,"on":false},{"x":461,"y":-10,"on":false},{"x":333,"y":-10,"on":true},{"x":209,"y":-10,"on":false},{"x":80,"y":130,"on":false},{"x":80,"y":252,"on":true},{"x":80,"y":714,"on":true},{"x":185,"y":714,"on":true},{"x":185,"y":252,"on":true},{"x":185,"y":82,"on":false},{"x":335,"y":82,"on":true},{"x":411,"y":82,"on":false},{"x":478,"y":171,"on":false},{"x":478,"y":253,"on":true},{"x":478,"y":714,"on":true}] + ] + }, + "uhorn": { + "advanceWidth": 642, + "contours": [ + [{"x":669,"y":620,"on":true},{"x":675,"y":609,"on":true},{"x":664,"y":524,"on":false},{"x":586,"y":418,"on":false},{"x":495,"y":407,"on":true},{"x":495,"y":0,"on":true},{"x":414,"y":0,"on":true},{"x":401,"y":71,"on":true},{"x":395,"y":71,"on":true},{"x":372,"y":30,"on":false},{"x":292,"y":-10,"on":false},{"x":246,"y":-10,"on":true},{"x":72,"y":-10,"on":false},{"x":72,"y":187,"on":true},{"x":72,"y":539,"on":true},{"x":174,"y":539,"on":true},{"x":174,"y":205,"on":true},{"x":174,"y":76,"on":false},{"x":266,"y":76,"on":true},{"x":337,"y":76,"on":false},{"x":393,"y":170,"on":false},{"x":393,"y":266,"on":true},{"x":393,"y":539,"on":true},{"x":495,"y":539,"on":true},{"x":495,"y":477,"on":true},{"x":538,"y":486,"on":false},{"x":568,"y":564,"on":false},{"x":568,"y":620,"on":true}] + ] + }, + "uni01B1": { + "advanceWidth": 705, + "contours": [ + [{"x":352,"y":81,"on":true},{"x":445,"y":81,"on":false},{"x":539,"y":204,"on":false},{"x":539,"y":316,"on":true},{"x":539,"y":415,"on":false},{"x":480,"y":566,"on":false},{"x":405,"y":625,"on":true},{"x":405,"y":714,"on":true},{"x":673,"y":714,"on":true},{"x":673,"y":622,"on":true},{"x":511,"y":622,"on":true},{"x":572,"y":574,"on":false},{"x":648,"y":408,"on":false},{"x":648,"y":305,"on":true},{"x":648,"y":208,"on":false},{"x":578,"y":66,"on":false},{"x":445,"y":-11,"on":false},{"x":352,"y":-11,"on":true},{"x":258,"y":-11,"on":false},{"x":126,"y":69,"on":false},{"x":57,"y":210,"on":false},{"x":57,"y":304,"on":true},{"x":57,"y":412,"on":false},{"x":132,"y":573,"on":false},{"x":193,"y":622,"on":true},{"x":31,"y":622,"on":true},{"x":31,"y":714,"on":true},{"x":300,"y":714,"on":true},{"x":300,"y":625,"on":true},{"x":224,"y":564,"on":false},{"x":165,"y":415,"on":false},{"x":165,"y":316,"on":true},{"x":165,"y":210,"on":false},{"x":257,"y":81,"on":false}] + ] + }, + "uni01B2": { + "advanceWidth": 663, + "contours": [ + [{"x":330,"y":-10,"on":true},{"x":208,"y":-10,"on":false},{"x":80,"y":124,"on":false},{"x":80,"y":244,"on":true},{"x":80,"y":714,"on":true},{"x":185,"y":714,"on":true},{"x":185,"y":247,"on":true},{"x":185,"y":82,"on":false},{"x":333,"y":82,"on":true},{"x":409,"y":82,"on":false},{"x":478,"y":167,"on":false},{"x":478,"y":248,"on":true},{"x":478,"y":572,"on":true},{"x":478,"y":605,"on":false},{"x":450,"y":633,"on":false},{"x":425,"y":633,"on":true},{"x":408,"y":633,"on":false},{"x":376,"y":622,"on":false},{"x":362,"y":615,"on":true},{"x":362,"y":702,"on":true},{"x":376,"y":711,"on":false},{"x":428,"y":724,"on":false},{"x":455,"y":724,"on":true},{"x":583,"y":724,"on":false},{"x":583,"y":586,"on":true},{"x":583,"y":243,"on":true},{"x":583,"y":128,"on":false},{"x":458,"y":-10,"on":false}] + ] + }, + "uni01B3": { + "advanceWidth": 526, + "contours": [ + [{"x":56,"y":724,"on":true},{"x":96,"y":724,"on":false},{"x":149,"y":683,"on":false},{"x":169,"y":631,"on":true},{"x":267,"y":385,"on":true},{"x":414,"y":714,"on":true},{"x":526,"y":714,"on":true},{"x":319,"y":277,"on":true},{"x":319,"y":0,"on":true},{"x":214,"y":0,"on":true},{"x":214,"y":273,"on":true},{"x":84,"y":582,"on":true},{"x":70,"y":613,"on":false},{"x":48,"y":634,"on":false},{"x":32,"y":634,"on":true},{"x":11,"y":634,"on":false},{"x":-5,"y":626,"on":true},{"x":-5,"y":712,"on":true},{"x":5,"y":716,"on":false},{"x":36,"y":724,"on":false}] + ] + }, + "uni01B4": { + "advanceWidth": 512, + "contours": [ + [{"x":450,"y":549,"on":true},{"x":466,"y":549,"on":false},{"x":500,"y":542,"on":false},{"x":510,"y":537,"on":true},{"x":510,"y":455,"on":true},{"x":497,"y":460,"on":false},{"x":482,"y":460,"on":true},{"x":464,"y":460,"on":false},{"x":438,"y":432,"on":false},{"x":425,"y":390,"on":true},{"x":274,"y":-72,"on":true},{"x":247,"y":-154,"on":false},{"x":160,"y":-240,"on":false},{"x":86,"y":-240,"on":true},{"x":67,"y":-240,"on":false},{"x":34,"y":-235,"on":false},{"x":21,"y":-232,"on":true},{"x":21,"y":-148,"on":true},{"x":31,"y":-150,"on":false},{"x":58,"y":-154,"on":false},{"x":72,"y":-154,"on":true},{"x":112,"y":-154,"on":false},{"x":160,"y":-106,"on":false},{"x":176,"y":-57,"on":true},{"x":194,"y":1,"on":true},{"x":4,"y":539,"on":true},{"x":112,"y":539,"on":true},{"x":206,"y":248,"on":true},{"x":216,"y":215,"on":false},{"x":235,"y":148,"on":false},{"x":240,"y":117,"on":true},{"x":244,"y":117,"on":true},{"x":248,"y":142,"on":false},{"x":269,"y":211,"on":false},{"x":280,"y":248,"on":true},{"x":341,"y":446,"on":true},{"x":358,"y":498,"on":false},{"x":406,"y":549,"on":false}] + ] + }, + "uni01B5": { + "advanceWidth": 503, + "contours": [ + [{"x":64,"y":411,"on":true},{"x":223,"y":411,"on":true},{"x":344,"y":623,"on":true},{"x":39,"y":623,"on":true},{"x":39,"y":714,"on":true},{"x":466,"y":714,"on":true},{"x":466,"y":638,"on":true},{"x":335,"y":411,"on":true},{"x":437,"y":411,"on":true},{"x":437,"y":327,"on":true},{"x":285,"y":327,"on":true},{"x":152,"y":92,"on":true},{"x":474,"y":92,"on":true},{"x":474,"y":0,"on":true},{"x":31,"y":0,"on":true},{"x":31,"y":76,"on":true},{"x":173,"y":327,"on":true},{"x":64,"y":327,"on":true}] + ] + }, + "uni01B6": { + "advanceWidth": 418, + "contours": [ + [{"x":380,"y":539,"on":true},{"x":380,"y":467,"on":true},{"x":290,"y":314,"on":true},{"x":372,"y":314,"on":true},{"x":372,"y":238,"on":true},{"x":242,"y":238,"on":true},{"x":149,"y":81,"on":true},{"x":388,"y":81,"on":true},{"x":388,"y":0,"on":true},{"x":31,"y":0,"on":true},{"x":31,"y":65,"on":true},{"x":135,"y":238,"on":true},{"x":48,"y":238,"on":true},{"x":48,"y":314,"on":true},{"x":183,"y":314,"on":true},{"x":267,"y":458,"on":true},{"x":45,"y":458,"on":true},{"x":45,"y":539,"on":true}] + ] + }, + "uni01B7": { + "advanceWidth": 534, + "references": [ + {"glyph":"uni04E0","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni01B8": { + "advanceWidth": 534, + "contours": [ + [{"x":308,"y":-10,"on":true},{"x":218,"y":-10,"on":false},{"x":103,"y":46,"on":false},{"x":48,"y":144,"on":false},{"x":48,"y":208,"on":true},{"x":48,"y":310,"on":false},{"x":170,"y":420,"on":false},{"x":266,"y":426,"on":true},{"x":78,"y":637,"on":true},{"x":78,"y":714,"on":true},{"x":483,"y":714,"on":true},{"x":483,"y":623,"on":true},{"x":210,"y":623,"on":true},{"x":387,"y":421,"on":true},{"x":387,"y":346,"on":true},{"x":322,"y":346,"on":true},{"x":243,"y":346,"on":false},{"x":156,"y":280,"on":false},{"x":156,"y":213,"on":true},{"x":156,"y":148,"on":false},{"x":235,"y":78,"on":false},{"x":320,"y":78,"on":true},{"x":364,"y":78,"on":false},{"x":463,"y":102,"on":false},{"x":503,"y":125,"on":true},{"x":503,"y":29,"on":true},{"x":464,"y":9,"on":false},{"x":366,"y":-10,"on":false}] + ] + }, + "uni01B9": { + "advanceWidth": 474, + "contours": [ + [{"x":280,"y":-240,"on":true},{"x":202,"y":-240,"on":false},{"x":92,"y":-178,"on":false},{"x":34,"y":-70,"on":false},{"x":34,"y":-1,"on":true},{"x":34,"y":108,"on":false},{"x":152,"y":222,"on":false},{"x":250,"y":232,"on":true},{"x":57,"y":468,"on":true},{"x":57,"y":539,"on":true},{"x":441,"y":539,"on":true},{"x":441,"y":455,"on":true},{"x":178,"y":455,"on":true},{"x":364,"y":225,"on":true},{"x":364,"y":153,"on":true},{"x":315,"y":153,"on":true},{"x":228,"y":153,"on":false},{"x":137,"y":78,"on":false},{"x":137,"y":1,"on":true},{"x":137,"y":-70,"on":false},{"x":216,"y":-153,"on":false},{"x":289,"y":-153,"on":true},{"x":338,"y":-153,"on":false},{"x":424,"y":-129,"on":false},{"x":455,"y":-113,"on":true},{"x":455,"y":-205,"on":true},{"x":426,"y":-220,"on":false},{"x":341,"y":-240,"on":false}] + ] + }, + "uni01BA": { + "advanceWidth": 471, + "contours": [ + [{"x":203,"y":-240,"on":true},{"x":124,"y":-240,"on":false},{"x":21,"y":-175,"on":false},{"x":21,"y":-107,"on":true},{"x":21,"y":-48,"on":false},{"x":100,"y":26,"on":false},{"x":199,"y":28,"on":true},{"x":265,"y":29,"on":false},{"x":324,"y":78,"on":false},{"x":324,"y":132,"on":true},{"x":324,"y":184,"on":false},{"x":246,"y":229,"on":false},{"x":170,"y":229,"on":true},{"x":110,"y":229,"on":true},{"x":110,"y":299,"on":true},{"x":265,"y":455,"on":true},{"x":33,"y":455,"on":true},{"x":33,"y":539,"on":true},{"x":402,"y":539,"on":true},{"x":402,"y":469,"on":true},{"x":236,"y":306,"on":true},{"x":325,"y":300,"on":false},{"x":427,"y":214,"on":false},{"x":427,"y":131,"on":true},{"x":427,"y":48,"on":false},{"x":328,"y":-56,"on":false},{"x":212,"y":-58,"on":true},{"x":158,"y":-59,"on":false},{"x":116,"y":-83,"on":false},{"x":116,"y":-107,"on":true},{"x":116,"y":-131,"on":false},{"x":166,"y":-157,"on":false},{"x":212,"y":-157,"on":true},{"x":263,"y":-157,"on":false},{"x":345,"y":-134,"on":false},{"x":374,"y":-120,"on":true},{"x":374,"y":-207,"on":true},{"x":346,"y":-220,"on":false},{"x":256,"y":-240,"on":false}] + ] + }, + "uni01BB": { + "advanceWidth": 523, + "contours": [ + [{"x":239,"y":765,"on":true},{"x":330,"y":765,"on":false},{"x":436,"y":660,"on":false},{"x":436,"y":574,"on":true},{"x":436,"y":530,"on":false},{"x":414,"y":452,"on":false},{"x":395,"y":415,"on":true},{"x":474,"y":415,"on":true},{"x":474,"y":339,"on":true},{"x":348,"y":339,"on":true},{"x":157,"y":89,"on":true},{"x":157,"y":85,"on":true},{"x":474,"y":85,"on":true},{"x":474,"y":0,"on":true},{"x":38,"y":0,"on":true},{"x":38,"y":80,"on":true},{"x":232,"y":339,"on":true},{"x":66,"y":339,"on":true},{"x":66,"y":415,"on":true},{"x":285,"y":415,"on":true},{"x":309,"y":455,"on":false},{"x":331,"y":529,"on":false},{"x":331,"y":572,"on":true},{"x":331,"y":621,"on":false},{"x":277,"y":676,"on":false},{"x":231,"y":676,"on":true},{"x":190,"y":676,"on":false},{"x":128,"y":644,"on":false},{"x":95,"y":613,"on":true},{"x":44,"y":681,"on":true},{"x":82,"y":718,"on":false},{"x":175,"y":765,"on":false}] + ] + }, + "uni01BC": { + "advanceWidth": 530, + "contours": [ + [{"x":218,"y":-10,"on":true},{"x":166,"y":-10,"on":false},{"x":76,"y":7,"on":false},{"x":39,"y":26,"on":true},{"x":39,"y":122,"on":true},{"x":77,"y":102,"on":false},{"x":172,"y":77,"on":false},{"x":215,"y":77,"on":true},{"x":294,"y":77,"on":false},{"x":375,"y":156,"on":false},{"x":375,"y":224,"on":true},{"x":375,"y":292,"on":false},{"x":294,"y":358,"on":false},{"x":227,"y":358,"on":true},{"x":118,"y":358,"on":true},{"x":118,"y":623,"on":true},{"x":36,"y":623,"on":true},{"x":36,"y":714,"on":true},{"x":453,"y":714,"on":true},{"x":453,"y":623,"on":true},{"x":221,"y":623,"on":true},{"x":221,"y":445,"on":true},{"x":252,"y":445,"on":true},{"x":356,"y":445,"on":false},{"x":482,"y":328,"on":false},{"x":482,"y":227,"on":true},{"x":482,"y":120,"on":false},{"x":351,"y":-10,"on":false}] + ] + }, + "uni01BD": { + "advanceWidth": 455, + "contours": [ + [{"x":191,"y":-10,"on":true},{"x":143,"y":-10,"on":false},{"x":60,"y":7,"on":false},{"x":32,"y":21,"on":true},{"x":32,"y":110,"on":true},{"x":62,"y":96,"on":false},{"x":142,"y":74,"on":false},{"x":185,"y":74,"on":true},{"x":243,"y":74,"on":false},{"x":311,"y":119,"on":false},{"x":311,"y":167,"on":true},{"x":311,"y":255,"on":false},{"x":180,"y":255,"on":true},{"x":104,"y":255,"on":true},{"x":104,"y":455,"on":true},{"x":38,"y":455,"on":true},{"x":38,"y":539,"on":true},{"x":390,"y":539,"on":true},{"x":390,"y":455,"on":true},{"x":199,"y":455,"on":true},{"x":199,"y":335,"on":true},{"x":216,"y":335,"on":true},{"x":413,"y":335,"on":false},{"x":413,"y":172,"on":true},{"x":413,"y":94,"on":false},{"x":304,"y":-10,"on":false}] + ] + }, + "uni01BE": { + "advanceWidth": 426, + "contours": [ + [{"x":190,"y":-10,"on":true},{"x":91,"y":-10,"on":false},{"x":31,"y":21,"on":true},{"x":31,"y":114,"on":true},{"x":62,"y":98,"on":false},{"x":142,"y":74,"on":false},{"x":182,"y":74,"on":true},{"x":234,"y":74,"on":false},{"x":285,"y":111,"on":false},{"x":285,"y":145,"on":true},{"x":285,"y":174,"on":false},{"x":244,"y":217,"on":false},{"x":196,"y":245,"on":true},{"x":156,"y":269,"on":false},{"x":119,"y":331,"on":false},{"x":119,"y":389,"on":true},{"x":119,"y":459,"on":true},{"x":37,"y":459,"on":true},{"x":37,"y":508,"on":true},{"x":121,"y":543,"on":true},{"x":154,"y":660,"on":true},{"x":219,"y":660,"on":true},{"x":219,"y":539,"on":true},{"x":350,"y":539,"on":true},{"x":350,"y":459,"on":true},{"x":219,"y":459,"on":true},{"x":219,"y":392,"on":true},{"x":219,"y":361,"on":false},{"x":239,"y":326,"on":false},{"x":266,"y":309,"on":true},{"x":304,"y":286,"on":false},{"x":357,"y":243,"on":false},{"x":386,"y":188,"on":false},{"x":385,"y":147,"on":true},{"x":385,"y":74,"on":false},{"x":284,"y":-10,"on":false}] + ] + }, + "uni01BF": { + "advanceWidth": 554, + "contours": [ + [{"x":320,"y":549,"on":true},{"x":406,"y":549,"on":false},{"x":510,"y":430,"on":false},{"x":510,"y":320,"on":true},{"x":510,"y":222,"on":false},{"x":422,"y":78,"on":false},{"x":272,"y":-5,"on":false},{"x":178,"y":-12,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":539,"on":true},{"x":159,"y":539,"on":true},{"x":172,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":199,"y":505,"on":false},{"x":268,"y":549,"on":false}], + [{"x":294,"y":464,"on":true},{"x":232,"y":464,"on":false},{"x":178,"y":377,"on":false},{"x":178,"y":286,"on":true},{"x":178,"y":75,"on":true},{"x":242,"y":82,"on":false},{"x":344,"y":142,"on":false},{"x":405,"y":246,"on":false},{"x":405,"y":319,"on":true},{"x":405,"y":384,"on":false},{"x":349,"y":464,"on":false}] + ] + }, + "uni01C0": { + "advanceWidth": 310, + "contours": [ + [{"x":111,"y":0,"on":true},{"x":111,"y":762,"on":true},{"x":198,"y":762,"on":true},{"x":198,"y":0,"on":true}] + ] + }, + "uni01C1": { + "advanceWidth": 540, + "references": [ + {"glyph":"uni01C0","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni01C0","x":231,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01C2": { + "advanceWidth": 477, + "contours": [ + [{"x":281,"y":762,"on":true},{"x":281,"y":517,"on":true},{"x":420,"y":517,"on":true},{"x":420,"y":438,"on":true},{"x":281,"y":438,"on":true},{"x":281,"y":341,"on":true},{"x":420,"y":341,"on":true},{"x":420,"y":261,"on":true},{"x":281,"y":261,"on":true},{"x":281,"y":0,"on":true},{"x":195,"y":0,"on":true},{"x":195,"y":261,"on":true},{"x":57,"y":261,"on":true},{"x":57,"y":341,"on":true},{"x":195,"y":341,"on":true},{"x":195,"y":438,"on":true},{"x":57,"y":438,"on":true},{"x":57,"y":517,"on":true},{"x":195,"y":517,"on":true},{"x":195,"y":762,"on":true}] + ] + }, + "uni01C3": { + "advanceWidth": 262, + "references": [ + {"glyph":"exclam","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni01C4": { + "advanceWidth": 1155, + "references": [ + {"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"Z","x":651,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"caron","x":701,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01C5": { + "advanceWidth": 1076, + "references": [ + {"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"z","x":658,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"caron","x":664,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01C6": { + "advanceWidth": 985, + "references": [ + {"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"z","x":566,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"caron","x":573,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01C7": { + "advanceWidth": 750, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"J","x":479,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01C8": { + "advanceWidth": 732, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"j","x":479,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01C9": { + "advanceWidth": 506, + "references": [ + {"glyph":"l","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"j","x":253,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01CA": { + "advanceWidth": 976, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"J","x":706,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01CB": { + "advanceWidth": 959, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"j","x":706,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01CC": { + "advanceWidth": 824, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"j","x":571,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01CD": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":88,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01CE": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":58,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01CF": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":-39,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D0": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":-79,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D1": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":147,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D2": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":72,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D3": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":127,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D4": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":81,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D5": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2815","x":332,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D6": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2815","x":286,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D7": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2805","x":332,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D8": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2805","x":286,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01D9": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2814","x":332,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01DA": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2814","x":286,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01DB": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2806","x":332,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01DC": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2806","x":286,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01DD": { + "advanceWidth": 520, + "references": [ + {"glyph":"uni0259","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni01DE": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2815","x":293,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01DF": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2815","x":263,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01E0": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2818","x":293,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01E1": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2817","x":263,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01E2": { + "advanceWidth": 805, + "references": [ + {"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":251,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01E3": { + "advanceWidth": 800, + "references": [ + {"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":223,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01E4": { + "advanceWidth": 663, + "contours": [ + [{"x":369,"y":-10,"on":true},{"x":263,"y":-10,"on":false},{"x":124,"y":81,"on":false},{"x":56,"y":246,"on":false},{"x":56,"y":357,"on":true},{"x":56,"y":467,"on":false},{"x":134,"y":632,"on":false},{"x":284,"y":724,"on":false},{"x":392,"y":724,"on":true},{"x":447,"y":724,"on":false},{"x":546,"y":700,"on":false},{"x":588,"y":680,"on":true},{"x":551,"y":592,"on":true},{"x":516,"y":610,"on":false},{"x":433,"y":633,"on":false},{"x":389,"y":633,"on":true},{"x":282,"y":633,"on":false},{"x":165,"y":489,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":272,"on":false},{"x":209,"y":146,"on":false},{"x":304,"y":77,"on":false},{"x":380,"y":77,"on":true},{"x":415,"y":77,"on":false},{"x":470,"y":85,"on":false},{"x":492,"y":92,"on":true},{"x":492,"y":159,"on":true},{"x":368,"y":159,"on":true},{"x":368,"y":236,"on":true},{"x":492,"y":236,"on":true},{"x":492,"y":308,"on":true},{"x":361,"y":308,"on":true},{"x":361,"y":396,"on":true},{"x":596,"y":396,"on":true},{"x":596,"y":236,"on":true},{"x":654,"y":236,"on":true},{"x":654,"y":159,"on":true},{"x":596,"y":159,"on":true},{"x":596,"y":29,"on":true},{"x":545,"y":11,"on":false},{"x":437,"y":-10,"on":false}] + ] + }, + "uni01E5": { + "advanceWidth": 566, + "contours": [ + [{"x":243,"y":549,"on":true},{"x":339,"y":549,"on":false},{"x":391,"y":469,"on":true},{"x":396,"y":469,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":-27,"on":true},{"x":548,"y":-27,"on":true},{"x":548,"y":-95,"on":true},{"x":485,"y":-95,"on":true},{"x":472,"y":-161,"on":false},{"x":358,"y":-240,"on":false},{"x":255,"y":-240,"on":true},{"x":204,"y":-240,"on":false},{"x":119,"y":-224,"on":false},{"x":82,"y":-207,"on":true},{"x":82,"y":-121,"on":true},{"x":162,"y":-160,"on":false},{"x":258,"y":-160,"on":true},{"x":361,"y":-160,"on":false},{"x":380,"y":-95,"on":true},{"x":226,"y":-95,"on":true},{"x":226,"y":-27,"on":true},{"x":390,"y":-27,"on":true},{"x":390,"y":31,"on":true},{"x":390,"y":48,"on":false},{"x":392,"y":88,"on":false},{"x":393,"y":105,"on":true},{"x":389,"y":105,"on":true},{"x":339,"y":23,"on":false},{"x":242,"y":23,"on":true},{"x":150,"y":23,"on":false},{"x":48,"y":160,"on":false},{"x":48,"y":284,"on":true},{"x":48,"y":408,"on":false},{"x":152,"y":549,"on":false}], + [{"x":266,"y":463,"on":true},{"x":210,"y":463,"on":false},{"x":152,"y":370,"on":false},{"x":152,"y":284,"on":true},{"x":152,"y":107,"on":false},{"x":268,"y":107,"on":true},{"x":332,"y":107,"on":false},{"x":392,"y":182,"on":false},{"x":392,"y":265,"on":true},{"x":392,"y":283,"on":true},{"x":392,"y":377,"on":false},{"x":331,"y":463,"on":false}] + ] + }, + "Gcaron": { + "advanceWidth": 663, + "references": [ + {"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":165,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "gcaron": { + "advanceWidth": 566, + "references": [ + {"glyph":"g","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":76,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01E8": { + "advanceWidth": 571, + "references": [ + {"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":107,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01E9": { + "advanceWidth": 509, + "references": [ + {"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":-77,"y":221,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01EA": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ogonek","x":230,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01EB": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ogonek","x":154,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01EC": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":169,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"ogonek","x":235,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01ED": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":93,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"ogonek","x":154,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01EE": { + "advanceWidth": 534, + "references": [ + {"glyph":"uni01B7","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":48,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01EF": { + "advanceWidth": 474, + "references": [ + {"glyph":"uni04E1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":23,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01F0": { + "advanceWidth": 253, + "references": [ + {"glyph":"uni0237","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":-78,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01F1": { + "advanceWidth": 1151, + "references": [ + {"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"Z","x":648,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01F2": { + "advanceWidth": 1073, + "references": [ + {"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"z","x":655,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01F3": { + "advanceWidth": 985, + "references": [ + {"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"z","x":566,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01F4": { + "advanceWidth": 663, + "references": [ + {"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":266,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01F5": { + "advanceWidth": 566, + "references": [ + {"glyph":"g","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":177,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01F6": { + "advanceWidth": 911, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":443,"y":418,"on":true},{"x":443,"y":714,"on":true},{"x":548,"y":714,"on":true},{"x":548,"y":192,"on":true},{"x":548,"y":79,"on":false},{"x":638,"y":79,"on":true},{"x":685,"y":79,"on":false},{"x":728,"y":136,"on":false},{"x":728,"y":194,"on":true},{"x":728,"y":539,"on":true},{"x":833,"y":539,"on":true},{"x":833,"y":188,"on":true},{"x":833,"y":98,"on":false},{"x":740,"y":-10,"on":false},{"x":637,"y":-10,"on":true},{"x":536,"y":-10,"on":false},{"x":443,"y":92,"on":false},{"x":443,"y":184,"on":true},{"x":443,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true}] + ] + }, + "uni01F7": { + "advanceWidth": 625, + "contours": [ + [{"x":365,"y":725,"on":true},{"x":462,"y":725,"on":false},{"x":576,"y":592,"on":false},{"x":576,"y":465,"on":true},{"x":576,"y":359,"on":false},{"x":488,"y":177,"on":false},{"x":317,"y":38,"on":false},{"x":191,"y":-4,"on":true},{"x":191,"y":-240,"on":true},{"x":86,"y":-240,"on":true},{"x":86,"y":714,"on":true},{"x":169,"y":714,"on":true},{"x":185,"y":627,"on":true},{"x":190,"y":627,"on":true},{"x":218,"y":670,"on":false},{"x":304,"y":725,"on":false}], + [{"x":342,"y":634,"on":true},{"x":267,"y":633,"on":false},{"x":191,"y":531,"on":false},{"x":191,"y":440,"on":true},{"x":191,"y":93,"on":true},{"x":274,"y":122,"on":false},{"x":399,"y":228,"on":false},{"x":469,"y":375,"on":false},{"x":469,"y":467,"on":true},{"x":469,"y":548,"on":false},{"x":404,"y":634,"on":false}] + ] + }, + "uni01F8": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":171,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni01F9": { + "advanceWidth": 571, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":107,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Aringacute": { + "advanceWidth": 588, + "contours": [ + [{"x":240,"y":837,"on":true},{"x":240,"y":846,"on":true},{"x":268,"y":879,"on":false},{"x":310,"y":935,"on":false},{"x":324,"y":959,"on":true},{"x":445,"y":959,"on":true},{"x":445,"y":951,"on":true},{"x":434,"y":937,"on":false},{"x":387,"y":894,"on":false},{"x":332,"y":852,"on":false},{"x":311,"y":837,"on":true}], + [{"x":0,"y":0,"on":true},{"x":222,"y":625,"on":true},{"x":203,"y":636,"on":false},{"x":181,"y":677,"on":false},{"x":181,"y":704,"on":true},{"x":181,"y":754,"on":false},{"x":242,"y":811,"on":false},{"x":292,"y":811,"on":true},{"x":340,"y":811,"on":false},{"x":405,"y":754,"on":false},{"x":405,"y":705,"on":true},{"x":405,"y":677,"on":false},{"x":383,"y":637,"on":false},{"x":364,"y":625,"on":true},{"x":588,"y":0,"on":true},{"x":477,"y":0,"on":true},{"x":415,"y":181,"on":true},{"x":171,"y":181,"on":true},{"x":111,"y":0,"on":true}], + [{"x":293,"y":652,"on":true},{"x":316,"y":652,"on":false},{"x":345,"y":679,"on":false},{"x":345,"y":704,"on":true},{"x":345,"y":728,"on":false},{"x":316,"y":756,"on":false},{"x":293,"y":756,"on":true},{"x":270,"y":756,"on":false},{"x":240,"y":728,"on":false},{"x":240,"y":704,"on":true},{"x":240,"y":680,"on":false},{"x":267,"y":652,"on":false}], + [{"x":197,"y":273,"on":true},{"x":390,"y":273,"on":true},{"x":325,"y":470,"on":true},{"x":318,"y":493,"on":false},{"x":298,"y":558,"on":false},{"x":293,"y":581,"on":true},{"x":288,"y":558,"on":false},{"x":269,"y":494,"on":false},{"x":264,"y":476,"on":true}] + ] + }, + "aringacute": { + "advanceWidth": 521, + "contours": [ + [{"x":424,"y":958,"on":true},{"x":424,"y":952,"on":true},{"x":413,"y":938,"on":false},{"x":360,"y":896,"on":false},{"x":300,"y":856,"on":false},{"x":280,"y":844,"on":true},{"x":208,"y":844,"on":true},{"x":208,"y":852,"on":true},{"x":234,"y":881,"on":false},{"x":277,"y":935,"on":false},{"x":291,"y":958,"on":true}], + [{"x":266,"y":810,"on":true},{"x":314,"y":810,"on":false},{"x":379,"y":754,"on":false},{"x":379,"y":705,"on":true},{"x":379,"y":655,"on":false},{"x":315,"y":596,"on":false},{"x":266,"y":596,"on":true},{"x":216,"y":596,"on":false},{"x":155,"y":654,"on":false},{"x":155,"y":704,"on":true},{"x":155,"y":753,"on":false},{"x":216,"y":810,"on":false}], + [{"x":266,"y":756,"on":true},{"x":243,"y":756,"on":false},{"x":213,"y":727,"on":false},{"x":213,"y":704,"on":true},{"x":213,"y":679,"on":false},{"x":240,"y":651,"on":false},{"x":266,"y":651,"on":true},{"x":288,"y":651,"on":false},{"x":318,"y":679,"on":false},{"x":318,"y":704,"on":true},{"x":318,"y":727,"on":false},{"x":289,"y":756,"on":false}], + [{"x":267,"y":549,"on":true},{"x":449,"y":549,"on":false},{"x":449,"y":364,"on":true},{"x":449,"y":0,"on":true},{"x":374,"y":0,"on":true},{"x":356,"y":75,"on":true},{"x":353,"y":75,"on":true},{"x":322,"y":32,"on":false},{"x":251,"y":-10,"on":false},{"x":192,"y":-10,"on":true},{"x":122,"y":-10,"on":false},{"x":40,"y":76,"on":false},{"x":40,"y":153,"on":true},{"x":40,"y":317,"on":false},{"x":266,"y":326,"on":true},{"x":348,"y":329,"on":true},{"x":348,"y":359,"on":true},{"x":348,"y":418,"on":false},{"x":301,"y":468,"on":false},{"x":257,"y":468,"on":true},{"x":222,"y":468,"on":false},{"x":155,"y":446,"on":false},{"x":123,"y":430,"on":true},{"x":91,"y":504,"on":true},{"x":127,"y":524,"on":false},{"x":218,"y":549,"on":false}], + [{"x":347,"y":260,"on":true},{"x":285,"y":258,"on":true},{"x":208,"y":255,"on":false},{"x":145,"y":202,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":110,"on":false},{"x":188,"y":70,"on":false},{"x":224,"y":70,"on":true},{"x":278,"y":70,"on":false},{"x":347,"y":142,"on":false},{"x":347,"y":211,"on":true}] + ] + }, + "AEacute": { + "advanceWidth": 805, + "references": [ + {"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":331,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "aeacute": { + "advanceWidth": 800, + "references": [ + {"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":303,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Oslashacute": { + "advanceWidth": 704, + "references": [ + {"glyph":"Oslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":250,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "oslashacute": { + "advanceWidth": 554, + "references": [ + {"glyph":"oslash","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":174,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0200": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":582,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0201": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":553,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0202": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":293,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0203": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":263,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0204": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":562,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0205": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":552,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0206": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":272,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0207": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":263,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0208": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":456,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0209": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":416,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni020A": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":166,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni020B": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":126,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni020C": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":642,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni020D": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":566,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni020E": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":352,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni020F": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":277,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0210": { + "advanceWidth": 576, + "references": [ + {"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":580,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0211": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":511,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0212": { + "advanceWidth": 576, + "references": [ + {"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":291,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0213": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":221,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0214": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":621,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0215": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":575,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0216": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":332,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0217": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0311","x":286,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0218": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0219": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":-26,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni021A": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":12,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni021B": { + "advanceWidth": 344, + "references": [ + {"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2833","x":-37,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni021C": { + "advanceWidth": 540, + "contours": [ + [{"x":39,"y":-180,"on":true},{"x":39,"y":-84,"on":true},{"x":142,"y":-56,"on":false},{"x":277,"y":2,"on":false},{"x":354,"y":67,"on":false},{"x":386,"y":140,"on":false},{"x":386,"y":183,"on":true},{"x":386,"y":239,"on":false},{"x":336,"y":307,"on":false},{"x":293,"y":332,"on":true},{"x":262,"y":320,"on":false},{"x":191,"y":299,"on":false},{"x":154,"y":290,"on":true},{"x":134,"y":370,"on":true},{"x":218,"y":392,"on":false},{"x":323,"y":435,"on":false},{"x":373,"y":492,"on":false},{"x":373,"y":535,"on":true},{"x":373,"y":585,"on":false},{"x":311,"y":636,"on":false},{"x":259,"y":636,"on":true},{"x":208,"y":636,"on":false},{"x":122,"y":606,"on":false},{"x":82,"y":577,"on":true},{"x":34,"y":649,"on":true},{"x":86,"y":689,"on":false},{"x":202,"y":724,"on":false},{"x":266,"y":724,"on":true},{"x":324,"y":724,"on":false},{"x":421,"y":686,"on":false},{"x":479,"y":605,"on":false},{"x":479,"y":540,"on":true},{"x":479,"y":483,"on":false},{"x":424,"y":402,"on":false},{"x":377,"y":373,"on":true},{"x":424,"y":348,"on":false},{"x":494,"y":258,"on":false},{"x":494,"y":183,"on":true},{"x":494,"y":90,"on":false},{"x":399,"y":-42,"on":false},{"x":198,"y":-140,"on":false}] + ] + }, + "uni021D": { + "advanceWidth": 458, + "contours": [ + [{"x":26,"y":-240,"on":true},{"x":26,"y":-152,"on":true},{"x":172,"y":-119,"on":false},{"x":314,"y":-17,"on":false},{"x":314,"y":64,"on":true},{"x":314,"y":111,"on":false},{"x":277,"y":169,"on":false},{"x":244,"y":189,"on":true},{"x":218,"y":178,"on":false},{"x":160,"y":160,"on":false},{"x":128,"y":152,"on":true},{"x":108,"y":228,"on":true},{"x":182,"y":248,"on":false},{"x":266,"y":290,"on":false},{"x":300,"y":342,"on":false},{"x":300,"y":376,"on":true},{"x":300,"y":420,"on":false},{"x":247,"y":464,"on":false},{"x":206,"y":464,"on":true},{"x":167,"y":464,"on":false},{"x":100,"y":445,"on":false},{"x":68,"y":428,"on":true},{"x":35,"y":504,"on":true},{"x":119,"y":549,"on":false},{"x":211,"y":549,"on":true},{"x":265,"y":549,"on":false},{"x":351,"y":514,"on":false},{"x":401,"y":439,"on":false},{"x":401,"y":380,"on":true},{"x":401,"y":332,"on":false},{"x":358,"y":258,"on":false},{"x":319,"y":230,"on":true},{"x":360,"y":208,"on":false},{"x":417,"y":130,"on":false},{"x":417,"y":64,"on":true},{"x":417,"y":-24,"on":false},{"x":318,"y":-140,"on":false},{"x":142,"y":-214,"on":false}] + ] + }, + "uni021E": { + "advanceWidth": 674, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":133,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni021F": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"caron","x":-78,"y":221,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0220": { + "advanceWidth": 670, + "contours": [ + [{"x":380,"y":725,"on":true},{"x":478,"y":725,"on":false},{"x":590,"y":616,"on":false},{"x":590,"y":495,"on":true},{"x":590,"y":-240,"on":true},{"x":485,"y":-240,"on":true},{"x":485,"y":480,"on":true},{"x":485,"y":557,"on":false},{"x":424,"y":634,"on":false},{"x":355,"y":634,"on":true},{"x":276,"y":633,"on":false},{"x":191,"y":534,"on":false},{"x":191,"y":442,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":169,"y":714,"on":true},{"x":185,"y":629,"on":true},{"x":190,"y":629,"on":true},{"x":223,"y":676,"on":false},{"x":326,"y":725,"on":false}] + ] + }, + "uni0221": { + "advanceWidth": 796, + "contours": [ + [{"x":528,"y":-104,"on":true},{"x":442,"y":-99,"on":true},{"x":446,"y":-62,"on":false},{"x":456,"y":5,"on":false},{"x":464,"y":32,"on":true},{"x":446,"y":44,"on":false},{"x":424,"y":76,"on":false},{"x":421,"y":90,"on":true},{"x":416,"y":90,"on":true},{"x":392,"y":41,"on":false},{"x":313,"y":-10,"on":false},{"x":247,"y":-10,"on":true},{"x":154,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":485,"on":false},{"x":389,"y":536,"on":false},{"x":389,"y":555,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":198,"on":true},{"x":491,"y":178,"on":false},{"x":496,"y":144,"on":false},{"x":502,"y":131,"on":true},{"x":534,"y":188,"on":false},{"x":616,"y":237,"on":false},{"x":666,"y":237,"on":true},{"x":724,"y":236,"on":false},{"x":790,"y":175,"on":false},{"x":790,"y":128,"on":true},{"x":790,"y":74,"on":false},{"x":707,"y":-1,"on":false},{"x":610,"y":-1,"on":true},{"x":590,"y":-1,"on":false},{"x":555,"y":3,"on":false},{"x":542,"y":5,"on":true},{"x":538,"y":-18,"on":false},{"x":530,"y":-75,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}], + [{"x":617,"y":75,"on":true},{"x":661,"y":75,"on":false},{"x":702,"y":100,"on":false},{"x":702,"y":122,"on":true},{"x":702,"y":137,"on":false},{"x":678,"y":159,"on":false},{"x":655,"y":159,"on":true},{"x":623,"y":159,"on":false},{"x":579,"y":119,"on":false},{"x":565,"y":81,"on":true},{"x":584,"y":75,"on":false}] + ] + }, + "uni0222": { + "advanceWidth": 649, + "contours": [ + [{"x":324,"y":-10,"on":true},{"x":194,"y":-10,"on":false},{"x":53,"y":123,"on":false},{"x":53,"y":233,"on":true},{"x":53,"y":310,"on":false},{"x":122,"y":410,"on":false},{"x":186,"y":432,"on":true},{"x":135,"y":458,"on":false},{"x":87,"y":554,"on":false},{"x":87,"y":624,"on":true},{"x":87,"y":714,"on":true},{"x":192,"y":714,"on":true},{"x":192,"y":622,"on":true},{"x":192,"y":551,"on":false},{"x":258,"y":473,"on":false},{"x":325,"y":473,"on":true},{"x":393,"y":473,"on":false},{"x":457,"y":550,"on":false},{"x":457,"y":622,"on":true},{"x":457,"y":714,"on":true},{"x":562,"y":714,"on":true},{"x":562,"y":625,"on":true},{"x":562,"y":554,"on":false},{"x":514,"y":457,"on":false},{"x":462,"y":432,"on":true},{"x":527,"y":408,"on":false},{"x":596,"y":307,"on":false},{"x":596,"y":233,"on":true},{"x":596,"y":122,"on":false},{"x":458,"y":-10,"on":false}], + [{"x":324,"y":82,"on":true},{"x":407,"y":82,"on":false},{"x":485,"y":160,"on":false},{"x":485,"y":233,"on":true},{"x":485,"y":306,"on":false},{"x":407,"y":384,"on":false},{"x":324,"y":384,"on":true},{"x":241,"y":384,"on":false},{"x":163,"y":306,"on":false},{"x":163,"y":233,"on":true},{"x":163,"y":160,"on":false},{"x":242,"y":82,"on":false}] + ] + }, + "uni0223": { + "advanceWidth": 555, + "contours": [ + [{"x":276,"y":-10,"on":true},{"x":206,"y":-10,"on":false},{"x":102,"y":50,"on":false},{"x":45,"y":163,"on":false},{"x":45,"y":241,"on":true},{"x":45,"y":322,"on":false},{"x":105,"y":426,"on":false},{"x":162,"y":450,"on":true},{"x":118,"y":469,"on":false},{"x":76,"y":554,"on":false},{"x":76,"y":627,"on":true},{"x":76,"y":762,"on":true},{"x":178,"y":762,"on":true},{"x":178,"y":627,"on":true},{"x":178,"y":556,"on":false},{"x":225,"y":492,"on":false},{"x":277,"y":492,"on":true},{"x":329,"y":492,"on":false},{"x":377,"y":556,"on":false},{"x":377,"y":627,"on":true},{"x":377,"y":762,"on":true},{"x":479,"y":762,"on":true},{"x":479,"y":626,"on":true},{"x":479,"y":554,"on":false},{"x":435,"y":470,"on":false},{"x":390,"y":450,"on":true},{"x":446,"y":427,"on":false},{"x":509,"y":324,"on":false},{"x":509,"y":242,"on":true},{"x":509,"y":125,"on":false},{"x":387,"y":-10,"on":false}], + [{"x":277,"y":75,"on":true},{"x":342,"y":75,"on":false},{"x":405,"y":162,"on":false},{"x":405,"y":243,"on":true},{"x":405,"y":323,"on":false},{"x":343,"y":408,"on":false},{"x":277,"y":408,"on":true},{"x":211,"y":408,"on":false},{"x":150,"y":323,"on":false},{"x":150,"y":242,"on":true},{"x":150,"y":162,"on":false},{"x":212,"y":75,"on":false}] + ] + }, + "uni0224": { + "advanceWidth": 503, + "references": [ + {"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2804","x":264,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0225": { + "advanceWidth": 418, + "references": [ + {"glyph":"uni1D8E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0226": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":199,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0227": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":169,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0228": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":172,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0229": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":176,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni022A": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2815","x":352,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni022B": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2815","x":277,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni022C": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2816","x":352,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni022D": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2816","x":277,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni022E": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":258,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni022F": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":183,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0230": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2818","x":352,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0231": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2817","x":277,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0232": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":77,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0233": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":55,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0234": { + "advanceWidth": 378, + "contours": [ + [{"x":82,"y":-34,"on":true},{"x":11,"y":-4,"on":true},{"x":28,"y":40,"on":false},{"x":62,"y":109,"on":false},{"x":80,"y":135,"on":true},{"x":78,"y":148,"on":false},{"x":77,"y":180,"on":false},{"x":77,"y":196,"on":true},{"x":77,"y":762,"on":true},{"x":179,"y":762,"on":true},{"x":179,"y":220,"on":true},{"x":206,"y":233,"on":false},{"x":244,"y":233,"on":true},{"x":303,"y":232,"on":false},{"x":367,"y":166,"on":false},{"x":367,"y":114,"on":true},{"x":367,"y":59,"on":false},{"x":298,"y":-10,"on":false},{"x":233,"y":-10,"on":true},{"x":190,"y":-10,"on":false},{"x":131,"y":18,"on":false},{"x":114,"y":43,"on":true},{"x":106,"y":27,"on":false},{"x":90,"y":-12,"on":false}], + [{"x":236,"y":63,"on":true},{"x":260,"y":63,"on":false},{"x":284,"y":92,"on":false},{"x":284,"y":112,"on":true},{"x":284,"y":134,"on":false},{"x":258,"y":159,"on":false},{"x":235,"y":160,"on":true},{"x":204,"y":162,"on":false},{"x":179,"y":137,"on":true},{"x":181,"y":101,"on":false},{"x":208,"y":63,"on":false}] + ] + }, + "uni0235": { + "advanceWidth": 694, + "contours": [ + [{"x":398,"y":-31,"on":true},{"x":327,"y":-2,"on":true},{"x":344,"y":42,"on":false},{"x":377,"y":110,"on":false},{"x":396,"y":136,"on":true},{"x":394,"y":147,"on":false},{"x":393,"y":177,"on":false},{"x":393,"y":191,"on":true},{"x":393,"y":338,"on":true},{"x":393,"y":400,"on":false},{"x":349,"y":463,"on":false},{"x":302,"y":463,"on":true},{"x":232,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":198,"y":508,"on":false},{"x":278,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":406,"y":549,"on":false},{"x":495,"y":456,"on":false},{"x":495,"y":356,"on":true},{"x":495,"y":221,"on":true},{"x":523,"y":235,"on":false},{"x":559,"y":235,"on":true},{"x":619,"y":235,"on":false},{"x":683,"y":167,"on":false},{"x":683,"y":112,"on":true},{"x":683,"y":56,"on":false},{"x":612,"y":-10,"on":false},{"x":548,"y":-10,"on":true},{"x":506,"y":-10,"on":false},{"x":446,"y":18,"on":false},{"x":429,"y":43,"on":true},{"x":413,"y":12,"on":false}], + [{"x":552,"y":63,"on":true},{"x":577,"y":63,"on":false},{"x":599,"y":92,"on":false},{"x":599,"y":112,"on":true},{"x":599,"y":162,"on":false},{"x":550,"y":162,"on":true},{"x":522,"y":162,"on":false},{"x":494,"y":139,"on":true},{"x":496,"y":102,"on":false},{"x":524,"y":63,"on":false}] + ] + }, + "uni0236": { + "advanceWidth": 385, + "contours": [ + [{"x":89,"y":-31,"on":true},{"x":18,"y":-2,"on":true},{"x":35,"y":42,"on":false},{"x":69,"y":110,"on":false},{"x":87,"y":136,"on":true},{"x":84,"y":164,"on":false},{"x":84,"y":200,"on":true},{"x":84,"y":459,"on":true},{"x":18,"y":459,"on":true},{"x":18,"y":508,"on":true},{"x":89,"y":543,"on":true},{"x":121,"y":660,"on":true},{"x":186,"y":660,"on":true},{"x":186,"y":539,"on":true},{"x":318,"y":539,"on":true},{"x":318,"y":459,"on":true},{"x":186,"y":459,"on":true},{"x":186,"y":221,"on":true},{"x":216,"y":235,"on":false},{"x":251,"y":235,"on":true},{"x":310,"y":235,"on":false},{"x":374,"y":167,"on":false},{"x":374,"y":112,"on":true},{"x":374,"y":56,"on":false},{"x":304,"y":-10,"on":false},{"x":240,"y":-10,"on":true},{"x":157,"y":-10,"on":false},{"x":120,"y":44,"on":true},{"x":112,"y":28,"on":false},{"x":97,"y":-9,"on":false}], + [{"x":244,"y":63,"on":true},{"x":269,"y":63,"on":false},{"x":291,"y":92,"on":false},{"x":291,"y":112,"on":true},{"x":291,"y":137,"on":false},{"x":264,"y":162,"on":false},{"x":242,"y":162,"on":true},{"x":214,"y":162,"on":false},{"x":186,"y":139,"on":true},{"x":188,"y":102,"on":false},{"x":215,"y":63,"on":false}] + ] + }, + "uni0237": { + "advanceWidth": 253, + "contours": [ + [{"x":30,"y":-240,"on":true},{"x":9,"y":-240,"on":false},{"x":-30,"y":-234,"on":false},{"x":-43,"y":-229,"on":true},{"x":-43,"y":-145,"on":true},{"x":-30,"y":-149,"on":false},{"x":-3,"y":-154,"on":false},{"x":13,"y":-154,"on":true},{"x":42,"y":-154,"on":false},{"x":75,"y":-118,"on":false},{"x":75,"y":-72,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":-74,"on":true},{"x":178,"y":-151,"on":false},{"x":106,"y":-240,"on":false}] + ] + }, + "uni0238": { + "advanceWidth": 880, + "contours": [ + [{"x":269,"y":-10,"on":true},{"x":160,"y":-10,"on":false},{"x":48,"y":139,"on":false},{"x":48,"y":270,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":242,"y":549,"on":true},{"x":294,"y":549,"on":false},{"x":366,"y":504,"on":false},{"x":389,"y":470,"on":true},{"x":394,"y":470,"on":true},{"x":392,"y":489,"on":false},{"x":389,"y":538,"on":false},{"x":389,"y":566,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":567,"on":true},{"x":491,"y":540,"on":false},{"x":488,"y":489,"on":false},{"x":487,"y":468,"on":true},{"x":492,"y":468,"on":true},{"x":514,"y":505,"on":false},{"x":585,"y":548,"on":false},{"x":638,"y":548,"on":true},{"x":727,"y":548,"on":false},{"x":833,"y":407,"on":false},{"x":833,"y":270,"on":true},{"x":833,"y":140,"on":false},{"x":718,"y":-10,"on":false},{"x":609,"y":-10,"on":true},{"x":489,"y":-10,"on":false},{"x":439,"y":104,"on":true},{"x":390,"y":-10,"on":false}], + [{"x":270,"y":75,"on":true},{"x":390,"y":75,"on":false},{"x":390,"y":272,"on":true},{"x":390,"y":370,"on":false},{"x":335,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":361,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":75,"on":false}], + [{"x":612,"y":75,"on":true},{"x":728,"y":75,"on":false},{"x":728,"y":271,"on":true},{"x":728,"y":463,"on":false},{"x":613,"y":463,"on":true},{"x":543,"y":463,"on":false},{"x":491,"y":365,"on":false},{"x":491,"y":272,"on":true},{"x":491,"y":172,"on":false},{"x":550,"y":75,"on":false}] + ] + }, + "uni0239": { + "advanceWidth": 880, + "contours": [ + [{"x":611,"y":549,"on":true},{"x":720,"y":549,"on":false},{"x":833,"y":400,"on":false},{"x":833,"y":270,"on":true},{"x":833,"y":133,"on":false},{"x":727,"y":-10,"on":false},{"x":638,"y":-10,"on":true},{"x":586,"y":-10,"on":false},{"x":514,"y":35,"on":false},{"x":492,"y":70,"on":true},{"x":486,"y":70,"on":true},{"x":488,"y":50,"on":false},{"x":491,"y":1,"on":false},{"x":491,"y":-26,"on":true},{"x":491,"y":-233,"on":true},{"x":389,"y":-233,"on":true},{"x":389,"y":-28,"on":true},{"x":389,"y":-1,"on":false},{"x":392,"y":50,"on":false},{"x":394,"y":71,"on":true},{"x":389,"y":71,"on":true},{"x":366,"y":35,"on":false},{"x":295,"y":-9,"on":false},{"x":242,"y":-9,"on":true},{"x":153,"y":-9,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":400,"on":false},{"x":162,"y":549,"on":false},{"x":271,"y":549,"on":true},{"x":391,"y":549,"on":false},{"x":441,"y":436,"on":true},{"x":491,"y":549,"on":false}], + [{"x":269,"y":464,"on":true},{"x":152,"y":464,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":77,"on":false},{"x":268,"y":77,"on":true},{"x":338,"y":77,"on":false},{"x":389,"y":174,"on":false},{"x":389,"y":268,"on":true},{"x":389,"y":368,"on":false},{"x":330,"y":464,"on":false}], + [{"x":610,"y":464,"on":true},{"x":550,"y":464,"on":false},{"x":491,"y":364,"on":false},{"x":491,"y":268,"on":true},{"x":491,"y":170,"on":false},{"x":546,"y":76,"on":false},{"x":614,"y":76,"on":true},{"x":671,"y":76,"on":false},{"x":728,"y":178,"on":false},{"x":728,"y":271,"on":true},{"x":728,"y":464,"on":false}] + ] + }, + "uni023A": { + "advanceWidth": 587, + "contours": [ + [{"x":476,"y":0,"on":true},{"x":411,"y":207,"on":true},{"x":292,"y":207,"on":true},{"x":211,"y":-75,"on":true},{"x":145,"y":-75,"on":true},{"x":226,"y":207,"on":true},{"x":175,"y":207,"on":true},{"x":110,"y":0,"on":true},{"x":0,"y":0,"on":true},{"x":235,"y":716,"on":true},{"x":351,"y":716,"on":true},{"x":363,"y":680,"on":true},{"x":386,"y":760,"on":true},{"x":452,"y":760,"on":true},{"x":398,"y":573,"on":true},{"x":587,"y":0,"on":true}], + [{"x":201,"y":299,"on":true},{"x":253,"y":299,"on":true},{"x":318,"y":524,"on":true},{"x":312,"y":546,"on":false},{"x":297,"y":604,"on":false},{"x":293,"y":623,"on":true},{"x":287,"y":594,"on":false},{"x":271,"y":529,"on":false},{"x":264,"y":508,"on":true}], + [{"x":385,"y":299,"on":true},{"x":351,"y":411,"on":true},{"x":319,"y":299,"on":true}] + ] + }, + "uni023B": { + "advanceWidth": 569, + "contours": [ + [{"x":495,"y":760,"on":true},{"x":480,"y":706,"on":true},{"x":512,"y":697,"on":false},{"x":540,"y":682,"on":true},{"x":502,"y":595,"on":true},{"x":491,"y":601,"on":false},{"x":467,"y":611,"on":false},{"x":455,"y":616,"on":true},{"x":310,"y":88,"on":true},{"x":335,"y":81,"on":false},{"x":364,"y":81,"on":true},{"x":404,"y":81,"on":false},{"x":478,"y":98,"on":false},{"x":515,"y":112,"on":true},{"x":515,"y":21,"on":true},{"x":479,"y":5,"on":false},{"x":401,"y":-10,"on":false},{"x":351,"y":-10,"on":true},{"x":316,"y":-10,"on":false},{"x":285,"y":-4,"on":true},{"x":265,"y":-75,"on":true},{"x":199,"y":-75,"on":true},{"x":224,"y":15,"on":true},{"x":140,"y":52,"on":false},{"x":56,"y":229,"on":false},{"x":56,"y":357,"on":true},{"x":56,"y":464,"on":false},{"x":126,"y":629,"on":false},{"x":262,"y":724,"on":false},{"x":361,"y":724,"on":true},{"x":390,"y":724,"on":false},{"x":418,"y":720,"on":true},{"x":429,"y":760,"on":true}], + [{"x":362,"y":633,"on":true},{"x":298,"y":633,"on":false},{"x":211,"y":563,"on":false},{"x":165,"y":438,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":272,"on":false},{"x":209,"y":149,"on":false},{"x":252,"y":116,"on":true},{"x":393,"y":631,"on":true},{"x":378,"y":633,"on":false}] + ] + }, + "uni023C": { + "advanceWidth": 443, + "contours": [ + [{"x":273,"y":-10,"on":true},{"x":243,"y":-10,"on":false},{"x":216,"y":-5,"on":true},{"x":160,"y":-208,"on":true},{"x":94,"y":-208,"on":true},{"x":157,"y":17,"on":true},{"x":105,"y":47,"on":false},{"x":48,"y":171,"on":false},{"x":48,"y":267,"on":true},{"x":48,"y":409,"on":false},{"x":173,"y":549,"on":false},{"x":279,"y":549,"on":true},{"x":292,"y":549,"on":false},{"x":304,"y":548,"on":true},{"x":363,"y":760,"on":true},{"x":428,"y":760,"on":true},{"x":367,"y":538,"on":true},{"x":394,"y":531,"on":false},{"x":415,"y":519,"on":true},{"x":384,"y":436,"on":true},{"x":363,"y":446,"on":false},{"x":343,"y":452,"on":true},{"x":240,"y":83,"on":true},{"x":258,"y":77,"on":false},{"x":279,"y":77,"on":true},{"x":316,"y":77,"on":false},{"x":377,"y":95,"on":false},{"x":405,"y":110,"on":true},{"x":405,"y":22,"on":true},{"x":378,"y":6,"on":false},{"x":314,"y":-10,"on":false}], + [{"x":153,"y":267,"on":true},{"x":153,"y":171,"on":false},{"x":186,"y":123,"on":true},{"x":280,"y":462,"on":true},{"x":153,"y":461,"on":false}] + ] + }, + "uni023D": { + "advanceWidth": 479, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":323,"on":true},{"x":12,"y":323,"on":true},{"x":12,"y":400,"on":true},{"x":86,"y":400,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":400,"on":true},{"x":333,"y":400,"on":true},{"x":333,"y":323,"on":true},{"x":191,"y":323,"on":true},{"x":191,"y":92,"on":true},{"x":456,"y":92,"on":true},{"x":456,"y":0,"on":true}] + ] + }, + "uni023E": { + "advanceWidth": 501, + "contours": [ + [{"x":303,"y":0,"on":true},{"x":198,"y":0,"on":true},{"x":198,"y":99,"on":true},{"x":126,"y":-75,"on":true},{"x":61,"y":-75,"on":true},{"x":198,"y":257,"on":true},{"x":198,"y":623,"on":true},{"x":12,"y":623,"on":true},{"x":12,"y":714,"on":true},{"x":387,"y":714,"on":true},{"x":406,"y":760,"on":true},{"x":471,"y":760,"on":true},{"x":452,"y":714,"on":true},{"x":488,"y":714,"on":true},{"x":488,"y":623,"on":true},{"x":414,"y":623,"on":true},{"x":303,"y":353,"on":true}], + [{"x":303,"y":623,"on":true},{"x":303,"y":511,"on":true},{"x":349,"y":623,"on":true}] + ] + }, + "uni023F": { + "advanceWidth": 435, + "contours": [ + [{"x":317,"y":-240,"on":true},{"x":242,"y":-240,"on":false},{"x":172,"y":-163,"on":false},{"x":154,"y":-87,"on":true},{"x":144,"y":-44,"on":false},{"x":108,"y":-4,"on":false},{"x":79,"y":7,"on":true},{"x":67,"y":11,"on":false},{"x":51,"y":18,"on":false},{"x":43,"y":23,"on":true},{"x":43,"y":116,"on":true},{"x":74,"y":99,"on":false},{"x":158,"y":73,"on":false},{"x":199,"y":73,"on":true},{"x":249,"y":73,"on":false},{"x":296,"y":111,"on":false},{"x":296,"y":143,"on":true},{"x":296,"y":161,"on":false},{"x":278,"y":190,"on":false},{"x":230,"y":220,"on":false},{"x":185,"y":240,"on":true},{"x":140,"y":260,"on":false},{"x":76,"y":303,"on":false},{"x":43,"y":361,"on":false},{"x":43,"y":404,"on":true},{"x":43,"y":473,"on":false},{"x":145,"y":549,"on":false},{"x":230,"y":549,"on":true},{"x":274,"y":549,"on":false},{"x":352,"y":530,"on":false},{"x":389,"y":512,"on":true},{"x":356,"y":433,"on":true},{"x":325,"y":448,"on":false},{"x":262,"y":467,"on":false},{"x":228,"y":467,"on":true},{"x":186,"y":467,"on":false},{"x":142,"y":436,"on":false},{"x":142,"y":409,"on":true},{"x":142,"y":390,"on":false},{"x":162,"y":362,"on":false},{"x":212,"y":334,"on":false},{"x":255,"y":314,"on":true},{"x":298,"y":294,"on":false},{"x":362,"y":252,"on":false},{"x":396,"y":194,"on":false},{"x":396,"y":151,"on":true},{"x":396,"y":77,"on":false},{"x":303,"y":-5,"on":false},{"x":217,"y":-9,"on":true},{"x":227,"y":-22,"on":false},{"x":240,"y":-54,"on":false},{"x":245,"y":-72,"on":true},{"x":258,"y":-119,"on":false},{"x":299,"y":-157,"on":false},{"x":333,"y":-157,"on":true},{"x":348,"y":-157,"on":false},{"x":380,"y":-151,"on":false},{"x":391,"y":-147,"on":true},{"x":391,"y":-227,"on":true},{"x":380,"y":-232,"on":false},{"x":339,"y":-240,"on":false}] + ] + }, + "uni0240": { + "advanceWidth": 416, + "contours": [ + [{"x":350,"y":-240,"on":true},{"x":270,"y":-240,"on":false},{"x":195,"y":-160,"on":false},{"x":178,"y":-87,"on":true},{"x":167,"y":-41,"on":false},{"x":122,"y":0,"on":false},{"x":75,"y":0,"on":true},{"x":30,"y":0,"on":true},{"x":30,"y":65,"on":true},{"x":267,"y":458,"on":true},{"x":45,"y":458,"on":true},{"x":45,"y":539,"on":true},{"x":380,"y":539,"on":true},{"x":380,"y":467,"on":true},{"x":144,"y":77,"on":true},{"x":199,"y":67,"on":false},{"x":256,"y":-6,"on":false},{"x":270,"y":-61,"on":true},{"x":284,"y":-116,"on":false},{"x":331,"y":-155,"on":false},{"x":364,"y":-155,"on":true},{"x":399,"y":-155,"on":false},{"x":423,"y":-145,"on":true},{"x":423,"y":-227,"on":true},{"x":395,"y":-240,"on":false}] + ] + }, + "uni0241": { + "advanceWidth": 420, + "contours": [ + [{"x":180,"y":724,"on":true},{"x":276,"y":724,"on":false},{"x":388,"y":621,"on":false},{"x":388,"y":532,"on":true},{"x":388,"y":450,"on":false},{"x":304,"y":318,"on":false},{"x":216,"y":266,"on":true},{"x":216,"y":0,"on":true},{"x":113,"y":0,"on":true},{"x":113,"y":313,"on":true},{"x":201,"y":355,"on":false},{"x":280,"y":464,"on":false},{"x":280,"y":527,"on":true},{"x":280,"y":576,"on":false},{"x":223,"y":634,"on":false},{"x":172,"y":634,"on":true},{"x":138,"y":634,"on":false},{"x":66,"y":610,"on":false},{"x":39,"y":590,"on":true},{"x":2,"y":671,"on":true},{"x":40,"y":697,"on":false},{"x":131,"y":724,"on":false}] + ] + }, + "uni0242": { + "advanceWidth": 415, + "contours": [ + [{"x":180,"y":549,"on":true},{"x":276,"y":549,"on":false},{"x":381,"y":446,"on":false},{"x":381,"y":357,"on":true},{"x":381,"y":278,"on":false},{"x":302,"y":155,"on":false},{"x":213,"y":105,"on":true},{"x":213,"y":0,"on":true},{"x":113,"y":0,"on":true},{"x":113,"y":149,"on":true},{"x":200,"y":189,"on":false},{"x":277,"y":289,"on":false},{"x":277,"y":352,"on":true},{"x":277,"y":405,"on":false},{"x":220,"y":462,"on":false},{"x":171,"y":462,"on":true},{"x":137,"y":462,"on":false},{"x":71,"y":438,"on":false},{"x":44,"y":419,"on":true},{"x":6,"y":496,"on":true},{"x":44,"y":522,"on":false},{"x":131,"y":549,"on":false}] + ] + }, + "uni0243": { + "advanceWidth": 596, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":175,"on":true},{"x":12,"y":175,"on":true},{"x":12,"y":250,"on":true},{"x":86,"y":250,"on":true},{"x":86,"y":714,"on":true},{"x":280,"y":714,"on":true},{"x":402,"y":714,"on":false},{"x":528,"y":632,"on":false},{"x":528,"y":538,"on":true},{"x":528,"y":474,"on":false},{"x":467,"y":390,"on":false},{"x":410,"y":379,"on":true},{"x":410,"y":374,"on":true},{"x":472,"y":361,"on":false},{"x":547,"y":284,"on":false},{"x":547,"y":205,"on":true},{"x":547,"y":109,"on":false},{"x":425,"y":0,"on":false},{"x":318,"y":0,"on":true}], + [{"x":191,"y":415,"on":true},{"x":291,"y":415,"on":true},{"x":363,"y":415,"on":false},{"x":421,"y":470,"on":false},{"x":421,"y":525,"on":true},{"x":421,"y":626,"on":false},{"x":283,"y":626,"on":true},{"x":191,"y":626,"on":true}], + [{"x":191,"y":89,"on":true},{"x":304,"y":89,"on":true},{"x":377,"y":89,"on":false},{"x":438,"y":156,"on":false},{"x":438,"y":214,"on":true},{"x":438,"y":267,"on":false},{"x":372,"y":331,"on":false},{"x":296,"y":331,"on":true},{"x":191,"y":331,"on":true},{"x":191,"y":250,"on":true},{"x":313,"y":250,"on":true},{"x":313,"y":175,"on":true},{"x":191,"y":175,"on":true}] + ] + }, + "uni0244": { + "advanceWidth": 663, + "contours": [ + [{"x":6,"y":349,"on":true},{"x":6,"y":435,"on":true},{"x":80,"y":435,"on":true},{"x":80,"y":714,"on":true},{"x":185,"y":714,"on":true},{"x":185,"y":435,"on":true},{"x":478,"y":435,"on":true},{"x":478,"y":714,"on":true},{"x":583,"y":714,"on":true},{"x":583,"y":435,"on":true},{"x":657,"y":435,"on":true},{"x":657,"y":349,"on":true},{"x":583,"y":349,"on":true},{"x":583,"y":243,"on":true},{"x":583,"y":128,"on":false},{"x":458,"y":-10,"on":false},{"x":330,"y":-10,"on":true},{"x":208,"y":-10,"on":false},{"x":80,"y":124,"on":false},{"x":80,"y":244,"on":true},{"x":80,"y":349,"on":true}], + [{"x":185,"y":247,"on":true},{"x":185,"y":82,"on":false},{"x":333,"y":82,"on":true},{"x":409,"y":82,"on":false},{"x":478,"y":167,"on":false},{"x":478,"y":248,"on":true},{"x":478,"y":349,"on":true},{"x":185,"y":349,"on":true}] + ] + }, + "uni0245": { + "advanceWidth": 564, + "references": [ + {"glyph":"Lambda","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0246": { + "advanceWidth": 503, + "contours": [ + [{"x":449,"y":0,"on":true},{"x":262,"y":0,"on":true},{"x":247,"y":-75,"on":true},{"x":184,"y":-75,"on":true},{"x":199,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":343,"y":714,"on":true},{"x":352,"y":760,"on":true},{"x":415,"y":760,"on":true},{"x":406,"y":714,"on":true},{"x":449,"y":714,"on":true},{"x":449,"y":624,"on":true},{"x":388,"y":624,"on":true},{"x":346,"y":417,"on":true},{"x":433,"y":417,"on":true},{"x":433,"y":327,"on":true},{"x":328,"y":327,"on":true},{"x":280,"y":91,"on":true},{"x":449,"y":91,"on":true}], + [{"x":191,"y":417,"on":true},{"x":283,"y":417,"on":true},{"x":325,"y":624,"on":true},{"x":191,"y":624,"on":true}], + [{"x":191,"y":91,"on":true},{"x":217,"y":91,"on":true},{"x":265,"y":327,"on":true},{"x":191,"y":327,"on":true}] + ] + }, + "uni0247": { + "advanceWidth": 520, + "contours": [ + [{"x":268,"y":549,"on":true},{"x":288,"y":549,"on":false},{"x":306,"y":546,"on":true},{"x":369,"y":760,"on":true},{"x":433,"y":760,"on":true},{"x":365,"y":527,"on":true},{"x":418,"y":500,"on":false},{"x":475,"y":385,"on":false},{"x":475,"y":307,"on":true},{"x":475,"y":247,"on":true},{"x":284,"y":247,"on":true},{"x":236,"y":84,"on":true},{"x":262,"y":74,"on":false},{"x":295,"y":74,"on":true},{"x":339,"y":74,"on":false},{"x":412,"y":92,"on":false},{"x":451,"y":112,"on":true},{"x":451,"y":26,"on":true},{"x":414,"y":7,"on":false},{"x":338,"y":-10,"on":false},{"x":288,"y":-10,"on":true},{"x":247,"y":-10,"on":false},{"x":212,"y":0,"on":true},{"x":151,"y":-208,"on":true},{"x":86,"y":-208,"on":true},{"x":154,"y":26,"on":true},{"x":103,"y":59,"on":false},{"x":48,"y":181,"on":false},{"x":48,"y":266,"on":true},{"x":48,"y":402,"on":false},{"x":166,"y":549,"on":false}], + [{"x":268,"y":469,"on":true},{"x":218,"y":469,"on":false},{"x":158,"y":395,"on":false},{"x":153,"y":324,"on":true},{"x":242,"y":324,"on":true},{"x":284,"y":468,"on":true},{"x":276,"y":469,"on":false}], + [{"x":375,"y":324,"on":true},{"x":375,"y":361,"on":false},{"x":358,"y":420,"on":false},{"x":340,"y":440,"on":true},{"x":306,"y":324,"on":true}], + [{"x":151,"y":247,"on":true},{"x":153,"y":169,"on":false},{"x":184,"y":126,"on":true},{"x":219,"y":247,"on":true}] + ] + }, + "uni0248": { + "advanceWidth": 270, + "contours": [ + [{"x":7,"y":-197,"on":true},{"x":-38,"y":-197,"on":false},{"x":-67,"y":-185,"on":true},{"x":-67,"y":-95,"on":true},{"x":-53,"y":-100,"on":false},{"x":-20,"y":-105,"on":false},{"x":-2,"y":-105,"on":true},{"x":35,"y":-105,"on":false},{"x":83,"y":-56,"on":false},{"x":83,"y":15,"on":true},{"x":83,"y":311,"on":true},{"x":7,"y":311,"on":true},{"x":7,"y":397,"on":true},{"x":83,"y":397,"on":true},{"x":83,"y":714,"on":true},{"x":188,"y":714,"on":true},{"x":188,"y":397,"on":true},{"x":263,"y":397,"on":true},{"x":263,"y":311,"on":true},{"x":188,"y":311,"on":true},{"x":188,"y":17,"on":true},{"x":188,"y":-97,"on":false},{"x":90,"y":-197,"on":false}] + ] + }, + "uni0249": { + "advanceWidth": 253, + "contours": [ + [{"x":69,"y":683,"on":true},{"x":69,"y":715,"on":false},{"x":102,"y":745,"on":false},{"x":127,"y":745,"on":true},{"x":152,"y":745,"on":false},{"x":185,"y":715,"on":false},{"x":185,"y":683,"on":true},{"x":185,"y":652,"on":false},{"x":152,"y":621,"on":false},{"x":127,"y":621,"on":true},{"x":102,"y":621,"on":false},{"x":69,"y":652,"on":false}], + [{"x":30,"y":-240,"on":true},{"x":-13,"y":-240,"on":false},{"x":-43,"y":-229,"on":true},{"x":-43,"y":-145,"on":true},{"x":-30,"y":-149,"on":false},{"x":-3,"y":-154,"on":false},{"x":13,"y":-154,"on":true},{"x":42,"y":-154,"on":false},{"x":75,"y":-118,"on":false},{"x":75,"y":-71,"on":true},{"x":75,"y":241,"on":true},{"x":5,"y":241,"on":true},{"x":5,"y":318,"on":true},{"x":75,"y":318,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":318,"on":true},{"x":248,"y":318,"on":true},{"x":248,"y":241,"on":true},{"x":178,"y":241,"on":true},{"x":178,"y":-74,"on":true},{"x":178,"y":-153,"on":false},{"x":106,"y":-240,"on":false}] + ] + }, + "uni024A": { + "advanceWidth": 695, + "contours": [ + [{"x":315,"y":724,"on":true},{"x":381,"y":724,"on":false},{"x":476,"y":671,"on":false},{"x":500,"y":627,"on":true},{"x":505,"y":627,"on":true},{"x":522,"y":714,"on":true},{"x":609,"y":714,"on":true},{"x":609,"y":-75,"on":true},{"x":609,"y":-116,"on":false},{"x":640,"y":-151,"on":false},{"x":668,"y":-151,"on":true},{"x":682,"y":-151,"on":false},{"x":708,"y":-145,"on":false},{"x":717,"y":-141,"on":true},{"x":717,"y":-227,"on":true},{"x":706,"y":-232,"on":false},{"x":672,"y":-240,"on":false},{"x":651,"y":-240,"on":true},{"x":581,"y":-240,"on":false},{"x":505,"y":-164,"on":false},{"x":505,"y":-79,"on":true},{"x":505,"y":3,"on":true},{"x":505,"y":27,"on":false},{"x":506,"y":69,"on":false},{"x":508,"y":92,"on":true},{"x":502,"y":92,"on":true},{"x":476,"y":46,"on":false},{"x":383,"y":-10,"on":false},{"x":312,"y":-10,"on":true},{"x":234,"y":-10,"on":false},{"x":119,"y":78,"on":false},{"x":56,"y":243,"on":false},{"x":56,"y":358,"on":true},{"x":56,"y":472,"on":false},{"x":119,"y":636,"on":false},{"x":236,"y":724,"on":false}], + [{"x":333,"y":633,"on":true},{"x":254,"y":633,"on":false},{"x":165,"y":486,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":225,"on":false},{"x":254,"y":82,"on":false},{"x":334,"y":82,"on":true},{"x":427,"y":82,"on":false},{"x":505,"y":201,"on":false},{"x":505,"y":314,"on":true},{"x":505,"y":412,"on":true},{"x":505,"y":517,"on":false},{"x":428,"y":633,"on":false}] + ] + }, + "uni024B": { + "advanceWidth": 566, + "contours": [ + [{"x":244,"y":549,"on":true},{"x":297,"y":549,"on":false},{"x":368,"y":506,"on":false},{"x":390,"y":468,"on":true},{"x":395,"y":468,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":-70,"on":true},{"x":491,"y":-116,"on":false},{"x":518,"y":-154,"on":false},{"x":544,"y":-154,"on":true},{"x":560,"y":-154,"on":false},{"x":586,"y":-148,"on":false},{"x":596,"y":-144,"on":true},{"x":596,"y":-226,"on":true},{"x":571,"y":-240,"on":false},{"x":521,"y":-240,"on":true},{"x":456,"y":-240,"on":false},{"x":389,"y":-159,"on":false},{"x":389,"y":-73,"on":true},{"x":389,"y":-18,"on":true},{"x":389,"y":0,"on":false},{"x":392,"y":49,"on":false},{"x":394,"y":73,"on":true},{"x":389,"y":73,"on":true},{"x":366,"y":36,"on":false},{"x":294,"y":-10,"on":false},{"x":240,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":407,"on":false},{"x":156,"y":549,"on":false}], + [{"x":266,"y":463,"on":true},{"x":208,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":266,"on":true},{"x":152,"y":75,"on":false},{"x":269,"y":75,"on":true},{"x":334,"y":75,"on":false},{"x":390,"y":161,"on":false},{"x":391,"y":249,"on":true},{"x":391,"y":269,"on":true},{"x":391,"y":366,"on":false},{"x":335,"y":463,"on":false}] + ] + }, + "uni024C": { + "advanceWidth": 576, + "contours": [ + [{"x":263,"y":714,"on":true},{"x":391,"y":714,"on":false},{"x":513,"y":612,"on":false},{"x":513,"y":509,"on":true},{"x":513,"y":432,"on":false},{"x":440,"y":340,"on":false},{"x":385,"y":318,"on":true},{"x":565,"y":0,"on":true},{"x":447,"y":0,"on":true},{"x":292,"y":290,"on":true},{"x":191,"y":290,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":290,"on":true},{"x":8,"y":290,"on":true},{"x":8,"y":377,"on":true},{"x":86,"y":377,"on":true},{"x":86,"y":714,"on":true}], + [{"x":259,"y":624,"on":true},{"x":191,"y":624,"on":true},{"x":191,"y":377,"on":true},{"x":265,"y":377,"on":true},{"x":406,"y":377,"on":false},{"x":406,"y":505,"on":true},{"x":406,"y":569,"on":false},{"x":334,"y":624,"on":false}] + ] + }, + "uni024D": { + "advanceWidth": 385, + "contours": [ + [{"x":290,"y":315,"on":true},{"x":290,"y":239,"on":true},{"x":178,"y":239,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":239,"on":true},{"x":6,"y":239,"on":true},{"x":6,"y":315,"on":true},{"x":75,"y":315,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":169,"y":445,"on":true},{"x":174,"y":445,"on":true},{"x":196,"y":488,"on":false},{"x":268,"y":549,"on":false},{"x":317,"y":549,"on":true},{"x":330,"y":549,"on":false},{"x":359,"y":546,"on":false},{"x":372,"y":543,"on":true},{"x":360,"y":444,"on":true},{"x":350,"y":447,"on":false},{"x":323,"y":451,"on":false},{"x":311,"y":451,"on":true},{"x":262,"y":451,"on":false},{"x":188,"y":378,"on":false},{"x":180,"y":315,"on":true}] + ] + }, + "uni024E": { + "advanceWidth": 522, + "contours": [ + [{"x":516,"y":592,"on":true},{"x":516,"y":517,"on":true},{"x":428,"y":517,"on":true},{"x":313,"y":277,"on":true},{"x":313,"y":0,"on":true},{"x":209,"y":0,"on":true},{"x":209,"y":274,"on":true},{"x":94,"y":517,"on":true},{"x":6,"y":517,"on":true},{"x":6,"y":592,"on":true},{"x":58,"y":592,"on":true},{"x":0,"y":714,"on":true},{"x":113,"y":714,"on":true},{"x":168,"y":592,"on":true},{"x":355,"y":592,"on":true},{"x":410,"y":714,"on":true},{"x":522,"y":714,"on":true},{"x":464,"y":592,"on":true}], + [{"x":261,"y":384,"on":true},{"x":321,"y":517,"on":true},{"x":201,"y":517,"on":true}] + ] + }, + "uni024F": { + "advanceWidth": 478, + "contours": [ + [{"x":2,"y":539,"on":true},{"x":111,"y":539,"on":true},{"x":166,"y":367,"on":true},{"x":315,"y":367,"on":true},{"x":368,"y":539,"on":true},{"x":476,"y":539,"on":true},{"x":419,"y":367,"on":true},{"x":470,"y":367,"on":true},{"x":470,"y":296,"on":true},{"x":395,"y":296,"on":true},{"x":272,"y":-73,"on":true},{"x":244,"y":-155,"on":false},{"x":156,"y":-240,"on":false},{"x":85,"y":-240,"on":true},{"x":65,"y":-240,"on":false},{"x":32,"y":-235,"on":false},{"x":19,"y":-232,"on":true},{"x":19,"y":-148,"on":true},{"x":30,"y":-150,"on":false},{"x":57,"y":-154,"on":false},{"x":71,"y":-154,"on":true},{"x":111,"y":-154,"on":false},{"x":157,"y":-105,"on":false},{"x":173,"y":-57,"on":true},{"x":192,"y":1,"on":true},{"x":88,"y":296,"on":true},{"x":8,"y":296,"on":true},{"x":8,"y":367,"on":true},{"x":63,"y":367,"on":true}], + [{"x":239,"y":113,"on":true},{"x":243,"y":113,"on":true},{"x":248,"y":138,"on":false},{"x":265,"y":204,"on":false},{"x":276,"y":239,"on":true},{"x":293,"y":296,"on":true},{"x":189,"y":296,"on":true},{"x":207,"y":239,"on":true},{"x":218,"y":206,"on":false},{"x":234,"y":143,"on":false}] + ] + }, + "uni0250": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":521,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni0251": { + "advanceWidth": 566, + "contours": [ + [{"x":241,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":407,"on":false},{"x":155,"y":549,"on":false},{"x":244,"y":549,"on":true},{"x":296,"y":549,"on":false},{"x":367,"y":507,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":0,"on":true},{"x":409,"y":0,"on":true},{"x":394,"y":72,"on":true},{"x":389,"y":72,"on":true},{"x":366,"y":34,"on":false},{"x":295,"y":-10,"on":false}], + [{"x":268,"y":75,"on":true},{"x":334,"y":75,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":269,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":266,"on":true},{"x":152,"y":75,"on":false}] + ] + }, + "uni0252": { + "advanceWidth": 566, + "references": [ + {"glyph":"uni0251","x":566,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni0253": { + "advanceWidth": 566, + "contours": [ + [{"x":209,"y":765,"on":true},{"x":228,"y":765,"on":false},{"x":264,"y":758,"on":false},{"x":274,"y":753,"on":true},{"x":274,"y":668,"on":true},{"x":266,"y":672,"on":false},{"x":240,"y":678,"on":false},{"x":226,"y":678,"on":true},{"x":202,"y":678,"on":false},{"x":178,"y":650,"on":false},{"x":178,"y":616,"on":true},{"x":178,"y":563,"on":true},{"x":178,"y":538,"on":false},{"x":174,"y":488,"on":false},{"x":173,"y":468,"on":true},{"x":178,"y":468,"on":true},{"x":200,"y":505,"on":false},{"x":272,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":413,"y":549,"on":false},{"x":519,"y":407,"on":false},{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":413,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":271,"y":-10,"on":false},{"x":200,"y":32,"on":false},{"x":178,"y":66,"on":true},{"x":171,"y":66,"on":true},{"x":153,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":615,"on":true},{"x":75,"y":689,"on":false},{"x":145,"y":765,"on":false}], + [{"x":299,"y":463,"on":true},{"x":229,"y":463,"on":false},{"x":178,"y":366,"on":false},{"x":178,"y":272,"on":true},{"x":178,"y":174,"on":false},{"x":231,"y":75,"on":false},{"x":301,"y":75,"on":true},{"x":414,"y":75,"on":false},{"x":414,"y":271,"on":true},{"x":414,"y":463,"on":false}] + ] + }, + "uni0254": { + "advanceWidth": 443, + "contours": [ + [{"x":174,"y":549,"on":true},{"x":279,"y":549,"on":false},{"x":395,"y":415,"on":false},{"x":395,"y":277,"on":true},{"x":395,"y":133,"on":false},{"x":267,"y":-10,"on":false},{"x":163,"y":-10,"on":true},{"x":122,"y":-10,"on":false},{"x":62,"y":7,"on":false},{"x":36,"y":21,"on":true},{"x":36,"y":110,"on":true},{"x":64,"y":95,"on":false},{"x":124,"y":77,"on":false},{"x":160,"y":77,"on":true},{"x":224,"y":77,"on":false},{"x":290,"y":177,"on":false},{"x":290,"y":273,"on":true},{"x":290,"y":462,"on":false},{"x":161,"y":462,"on":true},{"x":108,"y":462,"on":false},{"x":58,"y":436,"on":true},{"x":29,"y":518,"on":true},{"x":54,"y":532,"on":false},{"x":130,"y":549,"on":false}] + ] + }, + "uni0255": { + "advanceWidth": 476, + "contours": [ + [{"x":285,"y":549,"on":true},{"x":326,"y":549,"on":false},{"x":394,"y":532,"on":false},{"x":420,"y":519,"on":true},{"x":389,"y":436,"on":true},{"x":365,"y":446,"on":false},{"x":312,"y":462,"on":false},{"x":286,"y":462,"on":true},{"x":156,"y":462,"on":false},{"x":156,"y":267,"on":true},{"x":156,"y":246,"on":false},{"x":160,"y":208,"on":false},{"x":164,"y":191,"on":true},{"x":193,"y":220,"on":false},{"x":265,"y":252,"on":false},{"x":306,"y":252,"on":true},{"x":371,"y":252,"on":false},{"x":445,"y":183,"on":false},{"x":445,"y":127,"on":true},{"x":445,"y":80,"on":false},{"x":400,"y":20,"on":false},{"x":326,"y":-10,"on":false},{"x":282,"y":-10,"on":true},{"x":195,"y":-10,"on":false},{"x":142,"y":31,"on":true},{"x":134,"y":14,"on":false},{"x":120,"y":-22,"on":false},{"x":112,"y":-43,"on":true},{"x":41,"y":-13,"on":true},{"x":52,"y":17,"on":false},{"x":75,"y":70,"on":false},{"x":88,"y":93,"on":true},{"x":51,"y":158,"on":false},{"x":51,"y":267,"on":true},{"x":51,"y":409,"on":false},{"x":178,"y":549,"on":false}], + [{"x":299,"y":177,"on":true},{"x":270,"y":177,"on":false},{"x":216,"y":147,"on":false},{"x":192,"y":114,"on":true},{"x":225,"y":69,"on":false},{"x":288,"y":69,"on":true},{"x":320,"y":69,"on":false},{"x":359,"y":102,"on":false},{"x":359,"y":127,"on":true},{"x":359,"y":149,"on":false},{"x":330,"y":177,"on":false}] + ] + }, + "uni0256": { + "advanceWidth": 566, + "contours": [ + [{"x":516,"y":-240,"on":true},{"x":455,"y":-240,"on":false},{"x":389,"y":-166,"on":false},{"x":389,"y":-79,"on":true},{"x":389,"y":-13,"on":true},{"x":389,"y":6,"on":false},{"x":392,"y":52,"on":false},{"x":394,"y":68,"on":true},{"x":389,"y":68,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false},{"x":243,"y":-10,"on":true},{"x":153,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":485,"on":false},{"x":389,"y":536,"on":false},{"x":389,"y":555,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":-77,"on":true},{"x":491,"y":-121,"on":false},{"x":516,"y":-154,"on":false},{"x":541,"y":-154,"on":true},{"x":558,"y":-154,"on":false},{"x":587,"y":-148,"on":false},{"x":596,"y":-143,"on":true},{"x":596,"y":-223,"on":true},{"x":568,"y":-240,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "uni0257": { + "advanceWidth": 566, + "contours": [ + [{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":482,"on":false},{"x":389,"y":531,"on":false},{"x":389,"y":550,"on":true},{"x":389,"y":617,"on":true},{"x":389,"y":767,"on":false},{"x":523,"y":767,"on":true},{"x":542,"y":767,"on":false},{"x":579,"y":760,"on":false},{"x":589,"y":755,"on":true},{"x":589,"y":670,"on":true},{"x":581,"y":674,"on":false},{"x":554,"y":680,"on":false},{"x":541,"y":680,"on":true},{"x":516,"y":680,"on":false},{"x":491,"y":652,"on":false},{"x":491,"y":617,"on":true},{"x":491,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "uni0258": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":520,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0259": { + "advanceWidth": 520, + "contours": [ + [{"x":232,"y":549,"on":true},{"x":345,"y":549,"on":false},{"x":472,"y":404,"on":false},{"x":472,"y":273,"on":true},{"x":472,"y":137,"on":false},{"x":354,"y":-10,"on":false},{"x":252,"y":-10,"on":true},{"x":154,"y":-10,"on":false},{"x":45,"y":124,"on":false},{"x":45,"y":233,"on":true},{"x":45,"y":292,"on":true},{"x":369,"y":292,"on":true},{"x":364,"y":465,"on":false},{"x":225,"y":465,"on":true},{"x":182,"y":465,"on":false},{"x":108,"y":446,"on":false},{"x":69,"y":427,"on":true},{"x":69,"y":513,"on":true},{"x":106,"y":532,"on":false},{"x":182,"y":549,"on":false}], + [{"x":367,"y":216,"on":true},{"x":145,"y":216,"on":true},{"x":146,"y":153,"on":false},{"x":197,"y":70,"on":false},{"x":252,"y":70,"on":true},{"x":302,"y":70,"on":false},{"x":362,"y":144,"on":false}] + ] + }, + "uni025A": { + "advanceWidth": 722, + "contours": [ + [{"x":254,"y":-10,"on":true},{"x":156,"y":-10,"on":false},{"x":45,"y":121,"on":false},{"x":45,"y":240,"on":true},{"x":367,"y":335,"on":true},{"x":348,"y":465,"on":false},{"x":226,"y":465,"on":true},{"x":182,"y":465,"on":false},{"x":109,"y":446,"on":false},{"x":70,"y":427,"on":true},{"x":70,"y":513,"on":true},{"x":107,"y":532,"on":false},{"x":184,"y":549,"on":false},{"x":233,"y":549,"on":true},{"x":325,"y":549,"on":false},{"x":446,"y":452,"on":false},{"x":465,"y":364,"on":true},{"x":561,"y":393,"on":true},{"x":575,"y":338,"on":true},{"x":587,"y":291,"on":false},{"x":612,"y":254,"on":false},{"x":633,"y":254,"on":true},{"x":651,"y":254,"on":false},{"x":684,"y":267,"on":false},{"x":699,"y":277,"on":true},{"x":722,"y":212,"on":true},{"x":702,"y":196,"on":false},{"x":650,"y":176,"on":false},{"x":621,"y":176,"on":true},{"x":579,"y":176,"on":false},{"x":521,"y":232,"on":false},{"x":503,"y":298,"on":true},{"x":474,"y":289,"on":true},{"x":474,"y":200,"on":false},{"x":428,"y":65,"on":false},{"x":332,"y":-10,"on":false}], + [{"x":253,"y":70,"on":true},{"x":301,"y":70,"on":false},{"x":352,"y":126,"on":false},{"x":371,"y":213,"on":false},{"x":371,"y":260,"on":true},{"x":147,"y":194,"on":true},{"x":152,"y":143,"on":false},{"x":201,"y":70,"on":false}] + ] + }, + "uni025B": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni025C": { + "advanceWidth": 457, + "references": [ + {"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni025D": { + "advanceWidth": 647, + "contours": [ + [{"x":212,"y":549,"on":true},{"x":280,"y":549,"on":false},{"x":376,"y":499,"on":false},{"x":392,"y":452,"on":true},{"x":486,"y":481,"on":true},{"x":500,"y":426,"on":true},{"x":512,"y":380,"on":false},{"x":537,"y":343,"on":false},{"x":558,"y":343,"on":true},{"x":576,"y":343,"on":false},{"x":609,"y":356,"on":false},{"x":624,"y":366,"on":true},{"x":647,"y":301,"on":true},{"x":627,"y":285,"on":false},{"x":574,"y":265,"on":false},{"x":545,"y":265,"on":true},{"x":504,"y":265,"on":false},{"x":446,"y":321,"on":false},{"x":428,"y":387,"on":true},{"x":395,"y":377,"on":true},{"x":388,"y":343,"on":false},{"x":340,"y":298,"on":false},{"x":305,"y":288,"on":true},{"x":305,"y":284,"on":true},{"x":353,"y":271,"on":false},{"x":416,"y":209,"on":false},{"x":416,"y":152,"on":true},{"x":416,"y":83,"on":false},{"x":309,"y":-10,"on":false},{"x":202,"y":-10,"on":true},{"x":94,"y":-10,"on":false},{"x":32,"y":25,"on":true},{"x":32,"y":116,"on":true},{"x":63,"y":99,"on":false},{"x":145,"y":74,"on":false},{"x":193,"y":74,"on":true},{"x":246,"y":74,"on":false},{"x":315,"y":113,"on":false},{"x":315,"y":158,"on":true},{"x":315,"y":242,"on":false},{"x":183,"y":242,"on":true},{"x":127,"y":242,"on":true},{"x":127,"y":321,"on":true},{"x":175,"y":321,"on":true},{"x":234,"y":321,"on":false},{"x":302,"y":357,"on":false},{"x":302,"y":398,"on":true},{"x":302,"y":467,"on":false},{"x":202,"y":467,"on":true},{"x":168,"y":467,"on":false},{"x":105,"y":451,"on":false},{"x":71,"y":435,"on":true},{"x":36,"y":512,"on":true},{"x":116,"y":549,"on":false}] + ] + }, + "uni025E": { + "advanceWidth": 558, + "contours": [ + [{"x":304,"y":549,"on":true},{"x":398,"y":549,"on":false},{"x":500,"y":471,"on":false},{"x":500,"y":405,"on":true},{"x":500,"y":356,"on":false},{"x":449,"y":298,"on":false},{"x":405,"y":285,"on":true},{"x":405,"y":281,"on":true},{"x":451,"y":271,"on":false},{"x":518,"y":212,"on":false},{"x":518,"y":155,"on":true},{"x":518,"y":84,"on":false},{"x":404,"y":-10,"on":false},{"x":296,"y":-10,"on":true},{"x":174,"y":-10,"on":false},{"x":48,"y":136,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":403,"on":false},{"x":182,"y":549,"on":false}], + [{"x":301,"y":466,"on":true},{"x":152,"y":466,"on":false},{"x":152,"y":269,"on":true},{"x":152,"y":168,"on":false},{"x":228,"y":74,"on":false},{"x":302,"y":74,"on":true},{"x":352,"y":74,"on":false},{"x":416,"y":117,"on":false},{"x":416,"y":160,"on":true},{"x":416,"y":201,"on":false},{"x":355,"y":239,"on":false},{"x":292,"y":239,"on":true},{"x":259,"y":239,"on":true},{"x":259,"y":318,"on":true},{"x":283,"y":318,"on":true},{"x":339,"y":318,"on":false},{"x":403,"y":352,"on":false},{"x":403,"y":394,"on":true},{"x":403,"y":426,"on":false},{"x":354,"y":466,"on":false}] + ] + }, + "uni025F": { + "advanceWidth": 253, + "contours": [ + [{"x":30,"y":-240,"on":true},{"x":-13,"y":-240,"on":false},{"x":-43,"y":-229,"on":true},{"x":-43,"y":-145,"on":true},{"x":-30,"y":-149,"on":false},{"x":-3,"y":-154,"on":false},{"x":13,"y":-154,"on":true},{"x":42,"y":-154,"on":false},{"x":75,"y":-118,"on":false},{"x":75,"y":-71,"on":true},{"x":75,"y":246,"on":true},{"x":5,"y":246,"on":true},{"x":5,"y":322,"on":true},{"x":75,"y":322,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":322,"on":true},{"x":248,"y":322,"on":true},{"x":248,"y":246,"on":true},{"x":178,"y":246,"on":true},{"x":178,"y":-74,"on":true},{"x":178,"y":-153,"on":false},{"x":106,"y":-240,"on":false}] + ] + }, + "uni0260": { + "advanceWidth": 566, + "contours": [ + [{"x":523,"y":767,"on":true},{"x":542,"y":767,"on":false},{"x":579,"y":760,"on":false},{"x":589,"y":755,"on":true},{"x":589,"y":670,"on":true},{"x":581,"y":674,"on":false},{"x":554,"y":680,"on":false},{"x":541,"y":680,"on":true},{"x":516,"y":680,"on":false},{"x":491,"y":652,"on":false},{"x":491,"y":617,"on":true},{"x":491,"y":-3,"on":true},{"x":491,"y":-118,"on":false},{"x":376,"y":-240,"on":false},{"x":255,"y":-240,"on":true},{"x":204,"y":-240,"on":false},{"x":119,"y":-224,"on":false},{"x":82,"y":-207,"on":true},{"x":82,"y":-116,"on":true},{"x":121,"y":-136,"on":false},{"x":210,"y":-156,"on":false},{"x":258,"y":-156,"on":true},{"x":321,"y":-156,"on":false},{"x":389,"y":-87,"on":false},{"x":389,"y":-17,"on":true},{"x":389,"y":0,"on":true},{"x":389,"y":14,"on":false},{"x":391,"y":60,"on":false},{"x":392,"y":72,"on":true},{"x":389,"y":72,"on":true},{"x":339,"y":-10,"on":false},{"x":241,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":47,"y":135,"on":false},{"x":47,"y":268,"on":true},{"x":47,"y":402,"on":false},{"x":151,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":290,"y":549,"on":false},{"x":363,"y":510,"on":false},{"x":390,"y":469,"on":true},{"x":395,"y":469,"on":true},{"x":393,"y":487,"on":false},{"x":389,"y":533,"on":false},{"x":389,"y":552,"on":true},{"x":389,"y":617,"on":true},{"x":389,"y":691,"on":false},{"x":458,"y":767,"on":false}], + [{"x":265,"y":463,"on":true},{"x":210,"y":463,"on":false},{"x":152,"y":362,"on":false},{"x":152,"y":267,"on":true},{"x":152,"y":75,"on":false},{"x":268,"y":75,"on":true},{"x":331,"y":75,"on":false},{"x":391,"y":158,"on":false},{"x":391,"y":248,"on":true},{"x":391,"y":270,"on":true},{"x":391,"y":372,"on":false},{"x":331,"y":463,"on":false}] + ] + }, + "uni0261": { + "advanceWidth": 566, + "references": [ + {"glyph":"g","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0262": { + "advanceWidth": 524, + "contours": [ + [{"x":299,"y":549,"on":true},{"x":393,"y":549,"on":false},{"x":458,"y":515,"on":true},{"x":425,"y":431,"on":true},{"x":396,"y":445,"on":false},{"x":337,"y":462,"on":false},{"x":307,"y":462,"on":true},{"x":234,"y":462,"on":false},{"x":152,"y":365,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":175,"on":false},{"x":219,"y":77,"on":false},{"x":285,"y":77,"on":true},{"x":309,"y":77,"on":false},{"x":344,"y":81,"on":false},{"x":364,"y":86,"on":true},{"x":364,"y":221,"on":true},{"x":269,"y":221,"on":true},{"x":269,"y":298,"on":true},{"x":463,"y":298,"on":true},{"x":463,"y":27,"on":true},{"x":424,"y":10,"on":false},{"x":334,"y":-10,"on":false},{"x":284,"y":-10,"on":true},{"x":173,"y":-10,"on":false},{"x":48,"y":128,"on":false},{"x":48,"y":267,"on":true},{"x":48,"y":404,"on":false},{"x":184,"y":549,"on":false}] + ] + }, + "uni0263": { + "advanceWidth": 477, + "contours": [ + [{"x":236,"y":-239,"on":true},{"x":181,"y":-239,"on":false},{"x":119,"y":-167,"on":false},{"x":119,"y":-109,"on":true},{"x":119,"y":-60,"on":false},{"x":154,"y":38,"on":false},{"x":180,"y":92,"on":true},{"x":1,"y":539,"on":true},{"x":110,"y":539,"on":true},{"x":196,"y":303,"on":true},{"x":203,"y":284,"on":false},{"x":219,"y":233,"on":false},{"x":233,"y":182,"on":false},{"x":236,"y":164,"on":true},{"x":239,"y":164,"on":true},{"x":245,"y":192,"on":false},{"x":270,"y":273,"on":false},{"x":281,"y":303,"on":true},{"x":367,"y":539,"on":true},{"x":476,"y":539,"on":true},{"x":293,"y":87,"on":true},{"x":322,"y":31,"on":false},{"x":353,"y":-68,"on":false},{"x":353,"y":-109,"on":true},{"x":353,"y":-165,"on":false},{"x":290,"y":-239,"on":false}], + [{"x":236,"y":-164,"on":true},{"x":250,"y":-164,"on":false},{"x":268,"y":-138,"on":false},{"x":268,"y":-108,"on":true},{"x":268,"y":-86,"on":false},{"x":253,"y":-19,"on":false},{"x":236,"y":17,"on":true},{"x":219,"y":-20,"on":false},{"x":203,"y":-85,"on":false},{"x":203,"y":-107,"on":true},{"x":203,"y":-137,"on":false},{"x":222,"y":-164,"on":false}] + ] + }, + "uni0264": { + "advanceWidth": 490, + "contours": [ + [{"x":436,"y":548,"on":true},{"x":465,"y":548,"on":false},{"x":487,"y":538,"on":true},{"x":487,"y":458,"on":true},{"x":472,"y":463,"on":false},{"x":459,"y":463,"on":true},{"x":441,"y":463,"on":false},{"x":415,"y":442,"on":false},{"x":395,"y":412,"on":true},{"x":303,"y":265,"on":true},{"x":333,"y":221,"on":false},{"x":364,"y":149,"on":false},{"x":364,"y":108,"on":true},{"x":364,"y":56,"on":false},{"x":300,"y":-10,"on":false},{"x":245,"y":-10,"on":true},{"x":189,"y":-10,"on":false},{"x":127,"y":55,"on":false},{"x":127,"y":109,"on":true},{"x":127,"y":151,"on":false},{"x":156,"y":223,"on":false},{"x":184,"y":264,"on":true},{"x":91,"y":414,"on":true},{"x":74,"y":441,"on":false},{"x":46,"y":463,"on":false},{"x":30,"y":464,"on":true},{"x":22,"y":464,"on":false},{"x":9,"y":460,"on":false},{"x":2,"y":458,"on":true},{"x":2,"y":537,"on":true},{"x":24,"y":549,"on":false},{"x":54,"y":549,"on":true},{"x":88,"y":549,"on":false},{"x":134,"y":516,"on":false},{"x":157,"y":480,"on":true},{"x":204,"y":402,"on":true},{"x":216,"y":382,"on":false},{"x":236,"y":345,"on":false},{"x":244,"y":330,"on":true},{"x":247,"y":330,"on":true},{"x":254,"y":344,"on":false},{"x":276,"y":382,"on":false},{"x":288,"y":402,"on":true},{"x":335,"y":480,"on":true},{"x":357,"y":516,"on":false},{"x":402,"y":548,"on":false}], + [{"x":245,"y":205,"on":true},{"x":229,"y":180,"on":false},{"x":212,"y":134,"on":false},{"x":212,"y":113,"on":true},{"x":212,"y":88,"on":false},{"x":231,"y":64,"on":false},{"x":245,"y":64,"on":true},{"x":278,"y":64,"on":false},{"x":278,"y":113,"on":true},{"x":278,"y":136,"on":false},{"x":259,"y":182,"on":false}] + ] + }, + "uni0265": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":571,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni0266": { + "advanceWidth": 571, + "contours": [ + [{"x":75,"y":0,"on":true},{"x":75,"y":615,"on":true},{"x":75,"y":689,"on":false},{"x":146,"y":765,"on":false},{"x":210,"y":765,"on":true},{"x":229,"y":765,"on":false},{"x":264,"y":758,"on":false},{"x":274,"y":753,"on":true},{"x":274,"y":668,"on":true},{"x":266,"y":672,"on":false},{"x":240,"y":678,"on":false},{"x":226,"y":678,"on":true},{"x":202,"y":678,"on":false},{"x":178,"y":650,"on":false},{"x":178,"y":616,"on":true},{"x":178,"y":542,"on":true},{"x":178,"y":522,"on":false},{"x":174,"y":479,"on":false},{"x":171,"y":465,"on":true},{"x":178,"y":465,"on":true},{"x":200,"y":506,"on":false},{"x":278,"y":547,"on":false},{"x":325,"y":547,"on":true},{"x":410,"y":547,"on":false},{"x":498,"y":452,"on":false},{"x":498,"y":354,"on":true},{"x":498,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":336,"on":true},{"x":397,"y":400,"on":false},{"x":352,"y":461,"on":false},{"x":303,"y":461,"on":true},{"x":232,"y":461,"on":false},{"x":178,"y":364,"on":false},{"x":178,"y":270,"on":true},{"x":178,"y":0,"on":true}] + ] + }, + "uni0267": { + "advanceWidth": 571, + "contours": [ + [{"x":210,"y":765,"on":true},{"x":229,"y":765,"on":false},{"x":264,"y":758,"on":false},{"x":274,"y":753,"on":true},{"x":274,"y":668,"on":true},{"x":266,"y":672,"on":false},{"x":240,"y":678,"on":false},{"x":226,"y":678,"on":true},{"x":202,"y":678,"on":false},{"x":178,"y":650,"on":false},{"x":178,"y":616,"on":true},{"x":178,"y":544,"on":true},{"x":178,"y":523,"on":false},{"x":174,"y":481,"on":false},{"x":171,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":508,"on":false},{"x":278,"y":549,"on":false},{"x":325,"y":549,"on":true},{"x":410,"y":549,"on":false},{"x":498,"y":454,"on":false},{"x":498,"y":355,"on":true},{"x":498,"y":-90,"on":true},{"x":498,"y":-164,"on":false},{"x":438,"y":-240,"on":false},{"x":371,"y":-240,"on":true},{"x":328,"y":-240,"on":false},{"x":296,"y":-225,"on":true},{"x":296,"y":-141,"on":true},{"x":306,"y":-146,"on":false},{"x":334,"y":-152,"on":false},{"x":350,"y":-152,"on":true},{"x":372,"y":-152,"on":false},{"x":397,"y":-124,"on":false},{"x":397,"y":-89,"on":true},{"x":397,"y":340,"on":true},{"x":397,"y":463,"on":false},{"x":303,"y":463,"on":true},{"x":232,"y":463,"on":false},{"x":178,"y":366,"on":false},{"x":178,"y":272,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":615,"on":true},{"x":75,"y":689,"on":false},{"x":146,"y":765,"on":false}] + ] + }, + "uni0268": { + "advanceWidth": 253, + "contours": [ + [{"x":127,"y":745,"on":true},{"x":152,"y":745,"on":false},{"x":185,"y":715,"on":false},{"x":185,"y":683,"on":true},{"x":185,"y":652,"on":false},{"x":152,"y":621,"on":false},{"x":127,"y":621,"on":true},{"x":102,"y":621,"on":false},{"x":69,"y":652,"on":false},{"x":69,"y":683,"on":true},{"x":69,"y":715,"on":false},{"x":102,"y":745,"on":false}], + [{"x":248,"y":322,"on":true},{"x":248,"y":246,"on":true},{"x":178,"y":246,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":246,"on":true},{"x":6,"y":246,"on":true},{"x":6,"y":322,"on":true},{"x":75,"y":322,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":322,"on":true}] + ] + }, + "uni0269": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni026A": { + "advanceWidth": 318, + "contours": [ + [{"x":286,"y":539,"on":true},{"x":286,"y":482,"on":true},{"x":210,"y":460,"on":true},{"x":210,"y":79,"on":true},{"x":286,"y":57,"on":true},{"x":286,"y":0,"on":true},{"x":32,"y":0,"on":true},{"x":32,"y":57,"on":true},{"x":108,"y":79,"on":true},{"x":108,"y":460,"on":true},{"x":32,"y":482,"on":true},{"x":32,"y":539,"on":true}] + ] + }, + "uni026B": { + "advanceWidth": 375, + "contours": [ + [{"x":137,"y":0,"on":true},{"x":137,"y":364,"on":true},{"x":119,"y":372,"on":false},{"x":107,"y":372,"on":true},{"x":70,"y":372,"on":false},{"x":61,"y":315,"on":true},{"x":2,"y":315,"on":true},{"x":6,"y":375,"on":false},{"x":60,"y":448,"on":false},{"x":107,"y":448,"on":true},{"x":120,"y":448,"on":false},{"x":137,"y":443,"on":true},{"x":137,"y":760,"on":true},{"x":239,"y":760,"on":true},{"x":239,"y":401,"on":true},{"x":246,"y":397,"on":false},{"x":262,"y":392,"on":false},{"x":270,"y":392,"on":true},{"x":290,"y":392,"on":false},{"x":310,"y":421,"on":false},{"x":315,"y":449,"on":true},{"x":373,"y":449,"on":true},{"x":369,"y":383,"on":false},{"x":312,"y":316,"on":false},{"x":269,"y":316,"on":true},{"x":262,"y":316,"on":false},{"x":246,"y":320,"on":false},{"x":239,"y":322,"on":true},{"x":239,"y":0,"on":true}] + ] + }, + "uni026C": { + "advanceWidth": 352, + "contours": [ + [{"x":146,"y":0,"on":true},{"x":146,"y":296,"on":true},{"x":109,"y":296,"on":true},{"x":47,"y":296,"on":false},{"x":-10,"y":354,"on":false},{"x":-10,"y":401,"on":true},{"x":-10,"y":444,"on":false},{"x":40,"y":504,"on":false},{"x":93,"y":504,"on":true},{"x":124,"y":504,"on":false},{"x":146,"y":484,"on":true},{"x":146,"y":760,"on":true},{"x":248,"y":760,"on":true},{"x":248,"y":367,"on":true},{"x":346,"y":367,"on":true},{"x":346,"y":296,"on":true},{"x":248,"y":296,"on":true},{"x":248,"y":0,"on":true}], + [{"x":113,"y":367,"on":true},{"x":146,"y":367,"on":true},{"x":146,"y":378,"on":true},{"x":146,"y":404,"on":false},{"x":125,"y":435,"on":false},{"x":101,"y":435,"on":true},{"x":84,"y":435,"on":false},{"x":67,"y":416,"on":false},{"x":67,"y":402,"on":true},{"x":67,"y":383,"on":false},{"x":93,"y":367,"on":false}] + ] + }, + "uni026D": { + "advanceWidth": 253, + "contours": [ + [{"x":214,"y":-240,"on":true},{"x":146,"y":-240,"on":false},{"x":75,"y":-166,"on":false},{"x":75,"y":-79,"on":true},{"x":75,"y":760,"on":true},{"x":177,"y":760,"on":true},{"x":177,"y":-77,"on":true},{"x":177,"y":-154,"on":false},{"x":236,"y":-154,"on":true},{"x":252,"y":-154,"on":false},{"x":284,"y":-148,"on":false},{"x":296,"y":-143,"on":true},{"x":296,"y":-223,"on":true},{"x":264,"y":-240,"on":false}] + ] + }, + "uni026E": { + "advanceWidth": 620, + "contours": [ + [{"x":332,"y":-240,"on":true},{"x":276,"y":-240,"on":false},{"x":193,"y":-220,"on":false},{"x":163,"y":-206,"on":true},{"x":163,"y":-113,"on":true},{"x":194,"y":-129,"on":false},{"x":280,"y":-153,"on":false},{"x":329,"y":-153,"on":true},{"x":404,"y":-153,"on":false},{"x":483,"y":-68,"on":false},{"x":483,"y":4,"on":true},{"x":483,"y":79,"on":false},{"x":392,"y":153,"on":false},{"x":305,"y":153,"on":true},{"x":255,"y":153,"on":true},{"x":255,"y":225,"on":true},{"x":442,"y":455,"on":true},{"x":178,"y":455,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":539,"on":true},{"x":563,"y":539,"on":true},{"x":563,"y":468,"on":true},{"x":369,"y":232,"on":true},{"x":472,"y":223,"on":false},{"x":586,"y":109,"on":false},{"x":586,"y":5,"on":true},{"x":586,"y":-67,"on":false},{"x":526,"y":-178,"on":false},{"x":413,"y":-240,"on":false}] + ] + }, + "uni026F": { + "advanceWidth": 858, + "references": [ + {"glyph":"m","x":858,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni0270": { + "advanceWidth": 858, + "contours": [ + [{"x":681,"y":-240,"on":true},{"x":681,"y":-5,"on":true},{"x":681,"y":12,"on":false},{"x":685,"y":56,"on":false},{"x":687,"y":72,"on":true},{"x":681,"y":72,"on":true},{"x":659,"y":31,"on":false},{"x":585,"y":-10,"on":false},{"x":541,"y":-10,"on":true},{"x":429,"y":-10,"on":false},{"x":394,"y":76,"on":true},{"x":387,"y":76,"on":true},{"x":363,"y":32,"on":false},{"x":283,"y":-10,"on":false},{"x":236,"y":-10,"on":true},{"x":154,"y":-10,"on":false},{"x":72,"y":84,"on":false},{"x":72,"y":185,"on":true},{"x":72,"y":539,"on":true},{"x":174,"y":539,"on":true},{"x":174,"y":202,"on":true},{"x":174,"y":77,"on":false},{"x":261,"y":77,"on":true},{"x":323,"y":77,"on":false},{"x":377,"y":164,"on":false},{"x":377,"y":249,"on":true},{"x":377,"y":539,"on":true},{"x":478,"y":539,"on":true},{"x":478,"y":201,"on":true},{"x":478,"y":137,"on":false},{"x":521,"y":77,"on":false},{"x":566,"y":77,"on":true},{"x":632,"y":77,"on":false},{"x":681,"y":176,"on":false},{"x":681,"y":266,"on":true},{"x":681,"y":539,"on":true},{"x":783,"y":539,"on":true},{"x":783,"y":-240,"on":true}] + ] + }, + "uni0271": { + "advanceWidth": 858, + "contours": [ + [{"x":622,"y":549,"on":true},{"x":704,"y":549,"on":false},{"x":786,"y":455,"on":false},{"x":786,"y":354,"on":true},{"x":786,"y":-90,"on":true},{"x":786,"y":-164,"on":false},{"x":725,"y":-240,"on":false},{"x":659,"y":-240,"on":true},{"x":615,"y":-240,"on":false},{"x":583,"y":-225,"on":true},{"x":583,"y":-141,"on":true},{"x":593,"y":-146,"on":false},{"x":622,"y":-152,"on":false},{"x":638,"y":-152,"on":true},{"x":660,"y":-152,"on":false},{"x":684,"y":-124,"on":false},{"x":684,"y":-89,"on":true},{"x":684,"y":338,"on":true},{"x":684,"y":463,"on":false},{"x":597,"y":463,"on":true},{"x":535,"y":463,"on":false},{"x":481,"y":374,"on":false},{"x":481,"y":290,"on":true},{"x":481,"y":0,"on":true},{"x":380,"y":0,"on":true},{"x":380,"y":339,"on":true},{"x":380,"y":463,"on":false},{"x":292,"y":463,"on":true},{"x":226,"y":463,"on":false},{"x":178,"y":363,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":197,"y":509,"on":false},{"x":273,"y":549,"on":false},{"x":317,"y":549,"on":true},{"x":429,"y":549,"on":false},{"x":464,"y":464,"on":true},{"x":471,"y":464,"on":true},{"x":495,"y":508,"on":false},{"x":575,"y":549,"on":false}] + ] + }, + "uni0272": { + "advanceWidth": 571, + "contours": [ + [{"x":326,"y":549,"on":true},{"x":409,"y":549,"on":false},{"x":498,"y":456,"on":false},{"x":498,"y":356,"on":true},{"x":498,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":463,"on":false},{"x":304,"y":463,"on":true},{"x":233,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":-78,"on":true},{"x":178,"y":-164,"on":false},{"x":109,"y":-240,"on":false},{"x":47,"y":-240,"on":true},{"x":-1,"y":-240,"on":false},{"x":-30,"y":-223,"on":true},{"x":-30,"y":-143,"on":true},{"x":-20,"y":-148,"on":false},{"x":9,"y":-154,"on":false},{"x":24,"y":-154,"on":true},{"x":50,"y":-154,"on":false},{"x":75,"y":-122,"on":false},{"x":75,"y":-78,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":198,"y":508,"on":false},{"x":280,"y":549,"on":false}] + ] + }, + "uni0273": { + "advanceWidth": 571, + "contours": [ + [{"x":498,"y":-78,"on":true},{"x":498,"y":-122,"on":false},{"x":524,"y":-154,"on":false},{"x":550,"y":-154,"on":true},{"x":564,"y":-154,"on":false},{"x":594,"y":-148,"on":false},{"x":604,"y":-143,"on":true},{"x":604,"y":-223,"on":true},{"x":575,"y":-240,"on":false},{"x":526,"y":-240,"on":true},{"x":464,"y":-240,"on":false},{"x":397,"y":-166,"on":false},{"x":397,"y":-79,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":463,"on":false},{"x":304,"y":463,"on":true},{"x":233,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":198,"y":508,"on":false},{"x":280,"y":549,"on":false},{"x":326,"y":549,"on":true},{"x":409,"y":549,"on":false},{"x":498,"y":456,"on":false},{"x":498,"y":356,"on":true}] + ] + }, + "uni0274": { + "advanceWidth": 597, + "contours": [ + [{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":196,"y":539,"on":true},{"x":431,"y":126,"on":true},{"x":430,"y":144,"on":false},{"x":426,"y":195,"on":false},{"x":424,"y":244,"on":false},{"x":424,"y":260,"on":true},{"x":424,"y":539,"on":true},{"x":522,"y":539,"on":true},{"x":522,"y":0,"on":true},{"x":401,"y":0,"on":true},{"x":167,"y":412,"on":true},{"x":168,"y":395,"on":false},{"x":171,"y":344,"on":false},{"x":173,"y":292,"on":false},{"x":173,"y":274,"on":true},{"x":173,"y":0,"on":true}] + ] + }, + "uni0275": { + "advanceWidth": 558, + "references": [ + {"glyph":"uni0473","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0276": { + "advanceWidth": 768, + "contours": [ + [{"x":271,"y":549,"on":true},{"x":310,"y":549,"on":false},{"x":376,"y":521,"on":false},{"x":402,"y":492,"on":true},{"x":402,"y":539,"on":true},{"x":720,"y":539,"on":true},{"x":720,"y":457,"on":true},{"x":495,"y":457,"on":true},{"x":495,"y":321,"on":true},{"x":705,"y":321,"on":true},{"x":705,"y":239,"on":true},{"x":495,"y":239,"on":true},{"x":495,"y":82,"on":true},{"x":720,"y":82,"on":true},{"x":720,"y":0,"on":true},{"x":402,"y":0,"on":true},{"x":402,"y":48,"on":true},{"x":353,"y":-10,"on":false},{"x":269,"y":-10,"on":true},{"x":202,"y":-10,"on":false},{"x":103,"y":58,"on":false},{"x":48,"y":184,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":403,"on":false},{"x":164,"y":549,"on":false}], + [{"x":274,"y":464,"on":true},{"x":216,"y":464,"on":false},{"x":152,"y":364,"on":false},{"x":152,"y":270,"on":true},{"x":152,"y":177,"on":false},{"x":211,"y":75,"on":false},{"x":275,"y":75,"on":true},{"x":339,"y":75,"on":false},{"x":398,"y":176,"on":false},{"x":398,"y":271,"on":true},{"x":398,"y":365,"on":false},{"x":338,"y":464,"on":false}] + ] + }, + "uni0277": { + "advanceWidth": 722, + "contours": [ + [{"x":364,"y":549,"on":true},{"x":512,"y":549,"on":false},{"x":671,"y":382,"on":false},{"x":671,"y":236,"on":true},{"x":671,"y":122,"on":false},{"x":580,"y":-10,"on":false},{"x":494,"y":-10,"on":true},{"x":442,"y":-10,"on":false},{"x":378,"y":38,"on":false},{"x":363,"y":84,"on":true},{"x":359,"y":84,"on":true},{"x":344,"y":38,"on":false},{"x":280,"y":-10,"on":false},{"x":227,"y":-10,"on":true},{"x":142,"y":-10,"on":false},{"x":51,"y":122,"on":false},{"x":51,"y":236,"on":true},{"x":51,"y":330,"on":false},{"x":122,"y":471,"on":false},{"x":262,"y":549,"on":false}], + [{"x":363,"y":463,"on":true},{"x":258,"y":463,"on":false},{"x":150,"y":341,"on":false},{"x":150,"y":236,"on":true},{"x":150,"y":157,"on":false},{"x":195,"y":77,"on":false},{"x":236,"y":77,"on":true},{"x":276,"y":77,"on":false},{"x":312,"y":147,"on":false},{"x":312,"y":210,"on":true},{"x":312,"y":319,"on":true},{"x":409,"y":319,"on":true},{"x":409,"y":210,"on":true},{"x":409,"y":77,"on":false},{"x":486,"y":77,"on":true},{"x":526,"y":77,"on":false},{"x":572,"y":157,"on":false},{"x":572,"y":236,"on":true},{"x":572,"y":338,"on":false},{"x":470,"y":463,"on":false}] + ] + }, + "uni0278": { + "advanceWidth": 689, + "references": [ + {"glyph":"uni0444","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0279": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":385,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni027A": { + "advanceWidth": 385, + "contours": [ + [{"x":68,"y":-10,"on":true},{"x":55,"y":-10,"on":false},{"x":26,"y":-7,"on":false},{"x":14,"y":-4,"on":true},{"x":25,"y":95,"on":true},{"x":36,"y":92,"on":false},{"x":62,"y":88,"on":false},{"x":75,"y":88,"on":true},{"x":111,"y":88,"on":false},{"x":172,"y":129,"on":false},{"x":208,"y":205,"on":false},{"x":208,"y":257,"on":true},{"x":208,"y":760,"on":true},{"x":310,"y":760,"on":true},{"x":310,"y":0,"on":true},{"x":229,"y":0,"on":true},{"x":216,"y":94,"on":true},{"x":211,"y":94,"on":true},{"x":189,"y":50,"on":false},{"x":117,"y":-10,"on":false}] + ] + }, + "uni027B": { + "advanceWidth": 385, + "contours": [ + [{"x":334,"y":-240,"on":true},{"x":274,"y":-240,"on":false},{"x":208,"y":-166,"on":false},{"x":208,"y":-79,"on":true},{"x":208,"y":2,"on":true},{"x":208,"y":24,"on":false},{"x":212,"y":74,"on":false},{"x":214,"y":93,"on":true},{"x":209,"y":93,"on":true},{"x":187,"y":50,"on":false},{"x":117,"y":-10,"on":false},{"x":68,"y":-10,"on":true},{"x":55,"y":-10,"on":false},{"x":26,"y":-7,"on":false},{"x":14,"y":-4,"on":true},{"x":25,"y":95,"on":true},{"x":36,"y":92,"on":false},{"x":62,"y":88,"on":false},{"x":75,"y":88,"on":true},{"x":111,"y":88,"on":false},{"x":172,"y":129,"on":false},{"x":208,"y":205,"on":false},{"x":208,"y":257,"on":true},{"x":208,"y":539,"on":true},{"x":310,"y":539,"on":true},{"x":310,"y":-78,"on":true},{"x":310,"y":-122,"on":false},{"x":334,"y":-154,"on":false},{"x":359,"y":-154,"on":true},{"x":376,"y":-154,"on":false},{"x":405,"y":-148,"on":false},{"x":414,"y":-143,"on":true},{"x":414,"y":-223,"on":true},{"x":386,"y":-240,"on":false}] + ] + }, + "uni027C": { + "advanceWidth": 385, + "contours": [ + [{"x":317,"y":549,"on":true},{"x":330,"y":549,"on":false},{"x":359,"y":546,"on":false},{"x":372,"y":543,"on":true},{"x":360,"y":444,"on":true},{"x":350,"y":447,"on":false},{"x":323,"y":451,"on":false},{"x":311,"y":451,"on":true},{"x":256,"y":451,"on":false},{"x":178,"y":360,"on":false},{"x":178,"y":282,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":169,"y":445,"on":true},{"x":174,"y":445,"on":true},{"x":196,"y":488,"on":false},{"x":268,"y":549,"on":false}] + ] + }, + "uni027D": { + "advanceWidth": 385, + "contours": [ + [{"x":317,"y":549,"on":true},{"x":330,"y":549,"on":false},{"x":359,"y":546,"on":false},{"x":372,"y":543,"on":true},{"x":360,"y":444,"on":true},{"x":350,"y":447,"on":false},{"x":323,"y":451,"on":false},{"x":311,"y":451,"on":true},{"x":256,"y":451,"on":false},{"x":178,"y":360,"on":false},{"x":178,"y":282,"on":true},{"x":178,"y":-78,"on":true},{"x":178,"y":-117,"on":false},{"x":205,"y":-154,"on":false},{"x":236,"y":-154,"on":true},{"x":252,"y":-154,"on":false},{"x":281,"y":-148,"on":false},{"x":293,"y":-143,"on":true},{"x":293,"y":-223,"on":true},{"x":277,"y":-231,"on":false},{"x":239,"y":-240,"on":false},{"x":214,"y":-240,"on":true},{"x":146,"y":-240,"on":false},{"x":75,"y":-166,"on":false},{"x":75,"y":-79,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":169,"y":445,"on":true},{"x":174,"y":445,"on":true},{"x":196,"y":488,"on":false},{"x":268,"y":549,"on":false}] + ] + }, + "uni027E": { + "advanceWidth": 342, + "contours": [ + [{"x":245,"y":550,"on":true},{"x":267,"y":550,"on":false},{"x":309,"y":542,"on":false},{"x":327,"y":537,"on":true},{"x":314,"y":448,"on":true},{"x":303,"y":452,"on":false},{"x":272,"y":459,"on":false},{"x":252,"y":459,"on":true},{"x":211,"y":459,"on":false},{"x":175,"y":408,"on":false},{"x":175,"y":351,"on":true},{"x":175,"y":0,"on":true},{"x":74,"y":0,"on":true},{"x":74,"y":355,"on":true},{"x":74,"y":458,"on":false},{"x":157,"y":550,"on":false}] + ] + }, + "uni027F": { + "advanceWidth": 342, + "contours": [ + [{"x":96,"y":550,"on":true},{"x":184,"y":550,"on":false},{"x":268,"y":458,"on":false},{"x":268,"y":355,"on":true},{"x":268,"y":-240,"on":true},{"x":166,"y":-240,"on":true},{"x":166,"y":351,"on":true},{"x":166,"y":408,"on":false},{"x":131,"y":459,"on":false},{"x":89,"y":459,"on":true},{"x":70,"y":459,"on":false},{"x":39,"y":452,"on":false},{"x":27,"y":448,"on":true},{"x":15,"y":537,"on":true},{"x":32,"y":542,"on":false},{"x":75,"y":550,"on":false}] + ] + }, + "uni0280": { + "advanceWidth": 510, + "contours": [ + [{"x":77,"y":0,"on":true},{"x":77,"y":539,"on":true},{"x":285,"y":539,"on":true},{"x":370,"y":539,"on":false},{"x":469,"y":457,"on":false},{"x":469,"y":379,"on":true},{"x":469,"y":316,"on":false},{"x":407,"y":243,"on":false},{"x":363,"y":227,"on":true},{"x":499,"y":0,"on":true},{"x":385,"y":0,"on":true},{"x":267,"y":211,"on":true},{"x":179,"y":211,"on":true},{"x":179,"y":0,"on":true}], + [{"x":179,"y":289,"on":true},{"x":266,"y":289,"on":true},{"x":312,"y":289,"on":false},{"x":369,"y":330,"on":false},{"x":369,"y":377,"on":true},{"x":369,"y":414,"on":false},{"x":325,"y":460,"on":false},{"x":277,"y":460,"on":true},{"x":179,"y":460,"on":true}] + ] + }, + "uni0281": { + "advanceWidth": 510, + "references": [ + {"glyph":"uni0280","x":0,"y":539,"a":1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni0282": { + "advanceWidth": 435, + "contours": [ + [{"x":396,"y":151,"on":true},{"x":396,"y":72,"on":false},{"x":292,"y":-10,"on":false},{"x":200,"y":-10,"on":true},{"x":164,"y":-10,"on":false},{"x":135,"y":-4,"on":true},{"x":135,"y":-95,"on":true},{"x":135,"y":-131,"on":false},{"x":163,"y":-163,"on":false},{"x":190,"y":-163,"on":true},{"x":203,"y":-163,"on":false},{"x":228,"y":-158,"on":false},{"x":238,"y":-154,"on":true},{"x":238,"y":-227,"on":true},{"x":225,"y":-232,"on":false},{"x":190,"y":-240,"on":false},{"x":168,"y":-240,"on":true},{"x":110,"y":-240,"on":false},{"x":43,"y":-177,"on":false},{"x":43,"y":-102,"on":true},{"x":43,"y":116,"on":true},{"x":74,"y":99,"on":false},{"x":158,"y":73,"on":false},{"x":199,"y":73,"on":true},{"x":249,"y":73,"on":false},{"x":296,"y":111,"on":false},{"x":296,"y":143,"on":true},{"x":296,"y":161,"on":false},{"x":278,"y":190,"on":false},{"x":230,"y":220,"on":false},{"x":185,"y":240,"on":true},{"x":140,"y":260,"on":false},{"x":76,"y":303,"on":false},{"x":43,"y":361,"on":false},{"x":43,"y":404,"on":true},{"x":43,"y":473,"on":false},{"x":145,"y":549,"on":false},{"x":230,"y":549,"on":true},{"x":274,"y":549,"on":false},{"x":352,"y":530,"on":false},{"x":389,"y":512,"on":true},{"x":356,"y":433,"on":true},{"x":325,"y":448,"on":false},{"x":262,"y":467,"on":false},{"x":228,"y":467,"on":true},{"x":186,"y":467,"on":false},{"x":142,"y":436,"on":false},{"x":142,"y":409,"on":true},{"x":142,"y":390,"on":false},{"x":162,"y":362,"on":false},{"x":212,"y":334,"on":false},{"x":255,"y":314,"on":true},{"x":298,"y":294,"on":false},{"x":362,"y":252,"on":false},{"x":396,"y":194,"on":false}] + ] + }, + "uni0283": { + "advanceWidth": 253, + "contours": [ + [{"x":214,"y":765,"on":true},{"x":234,"y":765,"on":false},{"x":272,"y":757,"on":false},{"x":282,"y":752,"on":true},{"x":282,"y":670,"on":true},{"x":273,"y":674,"on":false},{"x":247,"y":680,"on":false},{"x":234,"y":680,"on":true},{"x":206,"y":680,"on":false},{"x":178,"y":647,"on":false},{"x":178,"y":601,"on":true},{"x":178,"y":-78,"on":true},{"x":178,"y":-164,"on":false},{"x":109,"y":-240,"on":false},{"x":47,"y":-240,"on":true},{"x":-1,"y":-240,"on":false},{"x":-30,"y":-223,"on":true},{"x":-30,"y":-143,"on":true},{"x":-20,"y":-148,"on":false},{"x":9,"y":-154,"on":false},{"x":24,"y":-154,"on":true},{"x":50,"y":-154,"on":false},{"x":75,"y":-122,"on":false},{"x":75,"y":-78,"on":true},{"x":75,"y":603,"on":true},{"x":75,"y":692,"on":false},{"x":152,"y":765,"on":false}] + ] + }, + "uni0284": { + "advanceWidth": 253, + "contours": [ + [{"x":47,"y":-240,"on":true},{"x":-1,"y":-240,"on":false},{"x":-30,"y":-223,"on":true},{"x":-30,"y":-143,"on":true},{"x":-20,"y":-148,"on":false},{"x":9,"y":-154,"on":false},{"x":24,"y":-154,"on":true},{"x":50,"y":-154,"on":false},{"x":75,"y":-122,"on":false},{"x":75,"y":-78,"on":true},{"x":75,"y":249,"on":true},{"x":6,"y":249,"on":true},{"x":6,"y":328,"on":true},{"x":75,"y":328,"on":true},{"x":75,"y":603,"on":true},{"x":75,"y":692,"on":false},{"x":152,"y":765,"on":false},{"x":214,"y":765,"on":true},{"x":234,"y":765,"on":false},{"x":272,"y":757,"on":false},{"x":282,"y":752,"on":true},{"x":282,"y":670,"on":true},{"x":273,"y":674,"on":false},{"x":247,"y":680,"on":false},{"x":234,"y":680,"on":true},{"x":206,"y":680,"on":false},{"x":178,"y":647,"on":false},{"x":178,"y":601,"on":true},{"x":178,"y":328,"on":true},{"x":247,"y":328,"on":true},{"x":247,"y":249,"on":true},{"x":178,"y":249,"on":true},{"x":178,"y":-78,"on":true},{"x":178,"y":-164,"on":false},{"x":109,"y":-240,"on":false}] + ] + }, + "uni0285": { + "advanceWidth": 261, + "contours": [ + [{"x":216,"y":-240,"on":true},{"x":154,"y":-240,"on":false},{"x":84,"y":-165,"on":false},{"x":84,"y":-79,"on":true},{"x":84,"y":388,"on":true},{"x":84,"y":429,"on":false},{"x":58,"y":464,"on":false},{"x":32,"y":464,"on":true},{"x":20,"y":464,"on":false},{"x":-5,"y":458,"on":false},{"x":-14,"y":454,"on":true},{"x":-14,"y":536,"on":true},{"x":-4,"y":541,"on":false},{"x":33,"y":549,"on":false},{"x":53,"y":549,"on":true},{"x":113,"y":549,"on":false},{"x":186,"y":476,"on":false},{"x":186,"y":391,"on":true},{"x":186,"y":-78,"on":true},{"x":186,"y":-122,"on":false},{"x":214,"y":-154,"on":false},{"x":239,"y":-154,"on":true},{"x":253,"y":-154,"on":false},{"x":282,"y":-148,"on":false},{"x":293,"y":-143,"on":true},{"x":293,"y":-223,"on":true},{"x":264,"y":-240,"on":false}] + ] + }, + "uni0286": { + "advanceWidth": 256, + "contours": [ + [{"x":35,"y":-240,"on":true},{"x":-29,"y":-240,"on":false},{"x":-96,"y":-175,"on":false},{"x":-96,"y":-124,"on":true},{"x":-96,"y":-72,"on":false},{"x":-28,"y":-8,"on":false},{"x":42,"y":-8,"on":true},{"x":77,"y":-8,"on":true},{"x":77,"y":603,"on":true},{"x":77,"y":692,"on":false},{"x":154,"y":765,"on":false},{"x":215,"y":765,"on":true},{"x":235,"y":765,"on":false},{"x":273,"y":757,"on":false},{"x":283,"y":752,"on":true},{"x":283,"y":670,"on":true},{"x":274,"y":674,"on":false},{"x":248,"y":680,"on":false},{"x":235,"y":680,"on":true},{"x":207,"y":680,"on":false},{"x":179,"y":647,"on":false},{"x":179,"y":601,"on":true},{"x":179,"y":-8,"on":true},{"x":245,"y":-8,"on":true},{"x":245,"y":-77,"on":true},{"x":179,"y":-77,"on":true},{"x":177,"y":-162,"on":false},{"x":101,"y":-240,"on":false}], + [{"x":24,"y":-170,"on":true},{"x":77,"y":-170,"on":false},{"x":77,"y":-94,"on":true},{"x":77,"y":-77,"on":true},{"x":43,"y":-77,"on":true},{"x":17,"y":-77,"on":false},{"x":-18,"y":-100,"on":false},{"x":-18,"y":-126,"on":true},{"x":-18,"y":-145,"on":false},{"x":2,"y":-170,"on":false}] + ] + }, + "uni0287": { + "advanceWidth": 344, + "references": [ + {"glyph":"t","x":344,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni0288": { + "advanceWidth": 344, + "contours": [ + [{"x":252,"y":-155,"on":true},{"x":290,"y":-155,"on":false},{"x":322,"y":-142,"on":true},{"x":322,"y":-221,"on":true},{"x":305,"y":-229,"on":false},{"x":254,"y":-240,"on":false},{"x":226,"y":-240,"on":true},{"x":163,"y":-240,"on":false},{"x":83,"y":-168,"on":false},{"x":83,"y":-76,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":88,"y":543,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":539,"on":true},{"x":317,"y":539,"on":true},{"x":317,"y":459,"on":true},{"x":185,"y":459,"on":true},{"x":185,"y":-72,"on":true},{"x":185,"y":-155,"on":false}] + ] + }, + "uni0289": { + "advanceWidth": 571, + "contours": [ + [{"x":6,"y":250,"on":true},{"x":6,"y":326,"on":true},{"x":72,"y":326,"on":true},{"x":72,"y":539,"on":true},{"x":174,"y":539,"on":true},{"x":174,"y":326,"on":true},{"x":393,"y":326,"on":true},{"x":393,"y":539,"on":true},{"x":495,"y":539,"on":true},{"x":495,"y":326,"on":true},{"x":565,"y":326,"on":true},{"x":565,"y":250,"on":true},{"x":495,"y":250,"on":true},{"x":495,"y":0,"on":true},{"x":414,"y":0,"on":true},{"x":401,"y":71,"on":true},{"x":395,"y":71,"on":true},{"x":372,"y":30,"on":false},{"x":292,"y":-10,"on":false},{"x":245,"y":-10,"on":true},{"x":72,"y":-10,"on":false},{"x":72,"y":187,"on":true},{"x":72,"y":250,"on":true}], + [{"x":174,"y":205,"on":true},{"x":174,"y":76,"on":false},{"x":266,"y":76,"on":true},{"x":336,"y":76,"on":false},{"x":391,"y":165,"on":false},{"x":393,"y":250,"on":true},{"x":174,"y":250,"on":true}] + ] + }, + "uni028A": { + "advanceWidth": 565, + "contours": [ + [{"x":281,"y":-10,"on":true},{"x":210,"y":-10,"on":false},{"x":106,"y":52,"on":false},{"x":50,"y":166,"on":false},{"x":50,"y":244,"on":true},{"x":50,"y":317,"on":false},{"x":97,"y":420,"on":false},{"x":136,"y":455,"on":true},{"x":27,"y":455,"on":true},{"x":27,"y":539,"on":true},{"x":250,"y":539,"on":true},{"x":250,"y":462,"on":true},{"x":206,"y":441,"on":false},{"x":152,"y":334,"on":false},{"x":152,"y":248,"on":true},{"x":152,"y":168,"on":false},{"x":216,"y":75,"on":false},{"x":282,"y":75,"on":true},{"x":348,"y":75,"on":false},{"x":413,"y":167,"on":false},{"x":413,"y":247,"on":true},{"x":413,"y":330,"on":false},{"x":358,"y":442,"on":false},{"x":315,"y":462,"on":true},{"x":315,"y":539,"on":true},{"x":537,"y":539,"on":true},{"x":537,"y":455,"on":true},{"x":430,"y":455,"on":true},{"x":470,"y":420,"on":false},{"x":515,"y":314,"on":false},{"x":515,"y":244,"on":true},{"x":514,"y":128,"on":false},{"x":394,"y":-10,"on":false}] + ] + }, + "uni028B": { + "advanceWidth": 578, + "contours": [ + [{"x":370,"y":549,"on":true},{"x":438,"y":549,"on":false},{"x":507,"y":475,"on":false},{"x":507,"y":389,"on":true},{"x":507,"y":219,"on":true},{"x":507,"y":112,"on":false},{"x":406,"y":-10,"on":false},{"x":289,"y":-10,"on":true},{"x":171,"y":-10,"on":false},{"x":72,"y":110,"on":false},{"x":72,"y":219,"on":true},{"x":72,"y":539,"on":true},{"x":175,"y":539,"on":true},{"x":175,"y":225,"on":true},{"x":175,"y":143,"on":false},{"x":231,"y":76,"on":false},{"x":291,"y":76,"on":true},{"x":350,"y":76,"on":false},{"x":405,"y":144,"on":false},{"x":405,"y":225,"on":true},{"x":405,"y":387,"on":true},{"x":405,"y":429,"on":false},{"x":379,"y":462,"on":false},{"x":350,"y":462,"on":true},{"x":336,"y":462,"on":false},{"x":310,"y":457,"on":false},{"x":299,"y":453,"on":true},{"x":299,"y":537,"on":true},{"x":314,"y":543,"on":false},{"x":354,"y":549,"on":false}] + ] + }, + "uni028C": { + "advanceWidth": 477, + "references": [ + {"glyph":"v","x":477,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni028D": { + "advanceWidth": 741, + "references": [ + {"glyph":"w","x":741,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni028E": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":478,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni028F": { + "advanceWidth": 455, + "contours": [ + [{"x":454,"y":539,"on":true},{"x":279,"y":233,"on":true},{"x":279,"y":0,"on":true},{"x":177,"y":0,"on":true},{"x":177,"y":233,"on":true},{"x":1,"y":539,"on":true},{"x":115,"y":539,"on":true},{"x":228,"y":327,"on":true},{"x":340,"y":539,"on":true}] + ] + }, + "uni0290": { + "advanceWidth": 418, + "contours": [ + [{"x":411,"y":-240,"on":true},{"x":362,"y":-240,"on":false},{"x":299,"y":-179,"on":false},{"x":299,"y":-104,"on":true},{"x":299,"y":0,"on":true},{"x":31,"y":0,"on":true},{"x":31,"y":65,"on":true},{"x":267,"y":458,"on":true},{"x":45,"y":458,"on":true},{"x":45,"y":539,"on":true},{"x":380,"y":539,"on":true},{"x":380,"y":467,"on":true},{"x":149,"y":81,"on":true},{"x":388,"y":81,"on":true},{"x":388,"y":-94,"on":true},{"x":388,"y":-134,"on":false},{"x":413,"y":-163,"on":false},{"x":436,"y":-163,"on":true},{"x":447,"y":-163,"on":false},{"x":473,"y":-157,"on":false},{"x":481,"y":-154,"on":true},{"x":481,"y":-227,"on":true},{"x":470,"y":-232,"on":false},{"x":431,"y":-240,"on":false}] + ] + }, + "uni0291": { + "advanceWidth": 508, + "contours": [ + [{"x":221,"y":-82,"on":true},{"x":154,"y":-58,"on":true},{"x":160,"y":-43,"on":false},{"x":171,"y":-14,"on":false},{"x":177,"y":0,"on":true},{"x":31,"y":0,"on":true},{"x":31,"y":65,"on":true},{"x":271,"y":458,"on":true},{"x":45,"y":458,"on":true},{"x":45,"y":539,"on":true},{"x":385,"y":539,"on":true},{"x":385,"y":468,"on":true},{"x":148,"y":81,"on":true},{"x":211,"y":81,"on":true},{"x":249,"y":160,"on":false},{"x":329,"y":234,"on":false},{"x":387,"y":234,"on":true},{"x":437,"y":234,"on":false},{"x":499,"y":173,"on":false},{"x":499,"y":126,"on":true},{"x":499,"y":64,"on":false},{"x":416,"y":0,"on":false},{"x":340,"y":0,"on":true},{"x":252,"y":0,"on":true},{"x":244,"y":-19,"on":false},{"x":229,"y":-60,"on":false}], + [{"x":288,"y":81,"on":true},{"x":346,"y":81,"on":true},{"x":383,"y":81,"on":false},{"x":413,"y":108,"on":false},{"x":413,"y":128,"on":true},{"x":413,"y":144,"on":false},{"x":394,"y":165,"on":false},{"x":374,"y":165,"on":true},{"x":350,"y":165,"on":false},{"x":310,"y":125,"on":false}] + ] + }, + "uni0292": { + "advanceWidth": 474, + "references": [ + {"glyph":"uni04E1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0293": { + "advanceWidth": 474, + "contours": [ + [{"x":176,"y":-240,"on":true},{"x":127,"y":-240,"on":false},{"x":45,"y":-210,"on":false},{"x":-5,"y":-148,"on":false},{"x":-5,"y":-100,"on":true},{"x":-5,"y":-43,"on":false},{"x":77,"y":26,"on":false},{"x":147,"y":26,"on":true},{"x":197,"y":26,"on":false},{"x":287,"y":-8,"on":false},{"x":330,"y":-39,"on":true},{"x":337,"y":-15,"on":false},{"x":337,"y":11,"on":true},{"x":337,"y":84,"on":false},{"x":247,"y":158,"on":false},{"x":162,"y":158,"on":true},{"x":110,"y":158,"on":true},{"x":110,"y":230,"on":true},{"x":294,"y":455,"on":true},{"x":34,"y":455,"on":true},{"x":34,"y":539,"on":true},{"x":417,"y":539,"on":true},{"x":417,"y":468,"on":true},{"x":225,"y":236,"on":true},{"x":322,"y":228,"on":false},{"x":440,"y":109,"on":false},{"x":440,"y":6,"on":true},{"x":440,"y":-28,"on":false},{"x":425,"y":-85,"on":false},{"x":413,"y":-108,"on":true},{"x":429,"y":-124,"on":false},{"x":462,"y":-162,"on":false},{"x":478,"y":-183,"on":true},{"x":417,"y":-238,"on":true},{"x":390,"y":-202,"on":false},{"x":363,"y":-173,"on":true},{"x":330,"y":-204,"on":false},{"x":237,"y":-240,"on":false}], + [{"x":170,"y":-158,"on":true},{"x":208,"y":-158,"on":false},{"x":272,"y":-131,"on":false},{"x":292,"y":-108,"on":true},{"x":221,"y":-50,"on":false},{"x":150,"y":-50,"on":true},{"x":115,"y":-50,"on":false},{"x":80,"y":-78,"on":false},{"x":80,"y":-100,"on":true},{"x":80,"y":-126,"on":false},{"x":129,"y":-158,"on":false}] + ] + }, + "uni0294": { + "advanceWidth": 410, + "contours": [ + [{"x":180,"y":765,"on":true},{"x":276,"y":765,"on":false},{"x":381,"y":662,"on":false},{"x":381,"y":573,"on":true},{"x":381,"y":495,"on":false},{"x":304,"y":362,"on":false},{"x":215,"y":309,"on":true},{"x":215,"y":0,"on":true},{"x":113,"y":0,"on":true},{"x":113,"y":354,"on":true},{"x":201,"y":396,"on":false},{"x":277,"y":505,"on":false},{"x":277,"y":568,"on":true},{"x":277,"y":621,"on":false},{"x":222,"y":678,"on":false},{"x":172,"y":678,"on":true},{"x":138,"y":678,"on":false},{"x":70,"y":654,"on":false},{"x":44,"y":635,"on":true},{"x":6,"y":712,"on":true},{"x":82,"y":765,"on":false}] + ] + }, + "uni0295": { + "advanceWidth": 410, + "references": [ + {"glyph":"uni0294","x":410,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0296": { + "advanceWidth": 410, + "contours": [ + [{"x":179,"y":-9,"on":true},{"x":80,"y":-9,"on":false},{"x":6,"y":44,"on":true},{"x":44,"y":121,"on":true},{"x":70,"y":102,"on":false},{"x":138,"y":77,"on":false},{"x":172,"y":77,"on":true},{"x":222,"y":77,"on":false},{"x":277,"y":135,"on":false},{"x":277,"y":188,"on":true},{"x":277,"y":251,"on":false},{"x":201,"y":360,"on":false},{"x":113,"y":402,"on":true},{"x":113,"y":762,"on":true},{"x":215,"y":762,"on":true},{"x":215,"y":447,"on":true},{"x":304,"y":395,"on":false},{"x":381,"y":262,"on":false},{"x":381,"y":184,"on":true},{"x":381,"y":95,"on":false},{"x":275,"y":-9,"on":false}] + ] + }, + "uni0297": { + "advanceWidth": 448, + "contours": [ + [{"x":283,"y":-240,"on":true},{"x":166,"y":-239,"on":false},{"x":48,"y":-48,"on":false},{"x":48,"y":151,"on":true},{"x":48,"y":356,"on":false},{"x":179,"y":549,"on":false},{"x":290,"y":549,"on":true},{"x":333,"y":549,"on":false},{"x":402,"y":531,"on":false},{"x":426,"y":518,"on":true},{"x":396,"y":435,"on":true},{"x":373,"y":446,"on":false},{"x":321,"y":461,"on":false},{"x":295,"y":461,"on":true},{"x":222,"y":461,"on":false},{"x":152,"y":304,"on":false},{"x":152,"y":153,"on":true},{"x":152,"y":-8,"on":false},{"x":224,"y":-152,"on":false},{"x":294,"y":-152,"on":true},{"x":331,"y":-152,"on":false},{"x":388,"y":-133,"on":false},{"x":414,"y":-119,"on":true},{"x":414,"y":-209,"on":true},{"x":388,"y":-224,"on":false},{"x":325,"y":-240,"on":false}] + ] + }, + "uni0298": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"periodcentered","x":229,"y":3,"a":0.95806884765625,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0299": { + "advanceWidth": 536, + "references": [ + {"glyph":"uni0432","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni029A": { + "advanceWidth": 558, + "contours": [ + [{"x":258,"y":549,"on":true},{"x":380,"y":549,"on":false},{"x":511,"y":404,"on":false},{"x":511,"y":270,"on":true},{"x":511,"y":136,"on":false},{"x":380,"y":-10,"on":false},{"x":260,"y":-10,"on":true},{"x":151,"y":-10,"on":false},{"x":41,"y":80,"on":false},{"x":41,"y":151,"on":true},{"x":41,"y":208,"on":false},{"x":106,"y":271,"on":false},{"x":153,"y":282,"on":true},{"x":153,"y":287,"on":true},{"x":109,"y":299,"on":false},{"x":59,"y":358,"on":false},{"x":59,"y":406,"on":true},{"x":59,"y":474,"on":false},{"x":166,"y":549,"on":false}], + [{"x":260,"y":466,"on":true},{"x":155,"y":466,"on":false},{"x":155,"y":396,"on":true},{"x":155,"y":356,"on":false},{"x":220,"y":320,"on":false},{"x":275,"y":320,"on":true},{"x":299,"y":320,"on":true},{"x":299,"y":241,"on":true},{"x":266,"y":241,"on":true},{"x":142,"y":241,"on":false},{"x":142,"y":157,"on":true},{"x":142,"y":114,"on":false},{"x":210,"y":74,"on":false},{"x":259,"y":74,"on":true},{"x":406,"y":74,"on":false},{"x":406,"y":269,"on":true},{"x":406,"y":466,"on":false}] + ] + }, + "uni029B": { + "advanceWidth": 524, + "contours": [ + [{"x":494,"y":767,"on":true},{"x":512,"y":767,"on":false},{"x":544,"y":758,"on":false},{"x":555,"y":754,"on":true},{"x":555,"y":670,"on":true},{"x":546,"y":674,"on":false},{"x":520,"y":680,"on":false},{"x":506,"y":680,"on":true},{"x":482,"y":680,"on":false},{"x":458,"y":653,"on":false},{"x":458,"y":622,"on":true},{"x":458,"y":513,"on":true},{"x":425,"y":431,"on":true},{"x":396,"y":445,"on":false},{"x":337,"y":462,"on":false},{"x":307,"y":462,"on":true},{"x":234,"y":462,"on":false},{"x":152,"y":365,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":175,"on":false},{"x":219,"y":77,"on":false},{"x":285,"y":77,"on":true},{"x":309,"y":77,"on":false},{"x":344,"y":81,"on":false},{"x":364,"y":86,"on":true},{"x":364,"y":221,"on":true},{"x":269,"y":221,"on":true},{"x":269,"y":298,"on":true},{"x":463,"y":298,"on":true},{"x":463,"y":27,"on":true},{"x":424,"y":10,"on":false},{"x":334,"y":-10,"on":false},{"x":284,"y":-10,"on":true},{"x":173,"y":-10,"on":false},{"x":48,"y":128,"on":false},{"x":48,"y":267,"on":true},{"x":48,"y":404,"on":false},{"x":184,"y":549,"on":false},{"x":297,"y":549,"on":true},{"x":335,"y":549,"on":false},{"x":368,"y":543,"on":true},{"x":368,"y":619,"on":true},{"x":368,"y":767,"on":false}] + ] + }, + "uni029C": { + "advanceWidth": 582, + "references": [ + {"glyph":"uni043D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni029D": { + "advanceWidth": 254, + "contours": [ + [{"x":129,"y":621,"on":true},{"x":104,"y":621,"on":false},{"x":70,"y":652,"on":false},{"x":70,"y":683,"on":true},{"x":70,"y":715,"on":false},{"x":103,"y":745,"on":false},{"x":129,"y":745,"on":true},{"x":154,"y":745,"on":false},{"x":186,"y":715,"on":false},{"x":186,"y":683,"on":true},{"x":186,"y":652,"on":false},{"x":154,"y":621,"on":false}], + [{"x":38,"y":-240,"on":true},{"x":-24,"y":-240,"on":false},{"x":-89,"y":-175,"on":false},{"x":-89,"y":-124,"on":true},{"x":-89,"y":-72,"on":false},{"x":-23,"y":-8,"on":false},{"x":45,"y":-8,"on":true},{"x":77,"y":-8,"on":true},{"x":77,"y":539,"on":true},{"x":179,"y":539,"on":true},{"x":179,"y":-8,"on":true},{"x":246,"y":-8,"on":true},{"x":246,"y":-77,"on":true},{"x":179,"y":-77,"on":true},{"x":177,"y":-162,"on":false},{"x":102,"y":-240,"on":false}], + [{"x":28,"y":-170,"on":true},{"x":77,"y":-170,"on":false},{"x":77,"y":-95,"on":true},{"x":77,"y":-77,"on":true},{"x":46,"y":-77,"on":true},{"x":21,"y":-77,"on":false},{"x":-11,"y":-100,"on":false},{"x":-11,"y":-126,"on":true},{"x":-11,"y":-145,"on":false},{"x":7,"y":-170,"on":false}] + ] + }, + "uni029E": { + "advanceWidth": 509, + "references": [ + {"glyph":"k","x":509,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni029F": { + "advanceWidth": 405, + "contours": [ + [{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":84,"on":true},{"x":389,"y":84,"on":true},{"x":389,"y":0,"on":true}] + ] + }, + "uni02A0": { + "advanceWidth": 566, + "contours": [ + [{"x":389,"y":-240,"on":true},{"x":389,"y":-10,"on":true},{"x":389,"y":6,"on":false},{"x":392,"y":54,"on":false},{"x":394,"y":71,"on":true},{"x":389,"y":71,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false},{"x":242,"y":-10,"on":true},{"x":153,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":407,"on":false},{"x":155,"y":549,"on":false},{"x":244,"y":549,"on":true},{"x":296,"y":549,"on":false},{"x":367,"y":507,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":393,"y":486,"on":false},{"x":389,"y":531,"on":false},{"x":389,"y":549,"on":true},{"x":389,"y":605,"on":true},{"x":389,"y":692,"on":false},{"x":464,"y":767,"on":false},{"x":525,"y":767,"on":true},{"x":573,"y":767,"on":false},{"x":596,"y":753,"on":true},{"x":596,"y":672,"on":true},{"x":587,"y":676,"on":false},{"x":560,"y":682,"on":false},{"x":545,"y":682,"on":true},{"x":518,"y":682,"on":false},{"x":491,"y":648,"on":false},{"x":491,"y":602,"on":true},{"x":491,"y":-240,"on":true}], + [{"x":268,"y":75,"on":true},{"x":334,"y":75,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":249,"on":true},{"x":391,"y":269,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":266,"on":true},{"x":152,"y":75,"on":false}] + ] + }, + "uni02A1": { + "advanceWidth": 410, + "contours": [ + [{"x":180,"y":765,"on":true},{"x":276,"y":765,"on":false},{"x":381,"y":662,"on":false},{"x":381,"y":573,"on":true},{"x":381,"y":495,"on":false},{"x":305,"y":362,"on":false},{"x":220,"y":309,"on":true},{"x":220,"y":231,"on":true},{"x":319,"y":231,"on":true},{"x":319,"y":153,"on":true},{"x":220,"y":153,"on":true},{"x":220,"y":0,"on":true},{"x":117,"y":0,"on":true},{"x":117,"y":153,"on":true},{"x":34,"y":153,"on":true},{"x":34,"y":231,"on":true},{"x":117,"y":231,"on":true},{"x":117,"y":354,"on":true},{"x":202,"y":396,"on":false},{"x":277,"y":505,"on":false},{"x":277,"y":568,"on":true},{"x":277,"y":621,"on":false},{"x":222,"y":678,"on":false},{"x":172,"y":678,"on":true},{"x":138,"y":678,"on":false},{"x":70,"y":654,"on":false},{"x":44,"y":635,"on":true},{"x":6,"y":712,"on":true},{"x":82,"y":765,"on":false}] + ] + }, + "uni02A2": { + "advanceWidth": 410, + "contours": [ + [{"x":229,"y":765,"on":true},{"x":329,"y":765,"on":false},{"x":403,"y":712,"on":true},{"x":366,"y":635,"on":true},{"x":339,"y":654,"on":false},{"x":271,"y":678,"on":false},{"x":237,"y":678,"on":true},{"x":188,"y":678,"on":false},{"x":133,"y":621,"on":false},{"x":133,"y":568,"on":true},{"x":133,"y":505,"on":false},{"x":208,"y":396,"on":false},{"x":292,"y":354,"on":true},{"x":292,"y":231,"on":true},{"x":375,"y":231,"on":true},{"x":375,"y":153,"on":true},{"x":292,"y":153,"on":true},{"x":292,"y":0,"on":true},{"x":190,"y":0,"on":true},{"x":190,"y":153,"on":true},{"x":91,"y":153,"on":true},{"x":91,"y":231,"on":true},{"x":190,"y":231,"on":true},{"x":190,"y":309,"on":true},{"x":105,"y":361,"on":false},{"x":29,"y":494,"on":false},{"x":29,"y":572,"on":true},{"x":29,"y":661,"on":false},{"x":133,"y":765,"on":false}] + ] + }, + "uni02A3": { + "advanceWidth": 877, + "contours": [ + [{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":486,"on":false},{"x":389,"y":536,"on":false},{"x":389,"y":555,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":539,"on":true},{"x":839,"y":539,"on":true},{"x":839,"y":467,"on":true},{"x":605,"y":81,"on":true},{"x":847,"y":81,"on":true},{"x":847,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}], + [{"x":491,"y":71,"on":true},{"x":726,"y":458,"on":true},{"x":491,"y":458,"on":true}] + ] + }, + "uni02A4": { + "advanceWidth": 925, + "contours": [ + [{"x":643,"y":-240,"on":true},{"x":537,"y":-240,"on":false},{"x":469,"y":-205,"on":true},{"x":469,"y":-110,"on":true},{"x":504,"y":-129,"on":false},{"x":593,"y":-154,"on":false},{"x":642,"y":-154,"on":true},{"x":714,"y":-154,"on":false},{"x":788,"y":-64,"on":false},{"x":788,"y":5,"on":true},{"x":788,"y":155,"on":false},{"x":615,"y":155,"on":true},{"x":561,"y":155,"on":true},{"x":561,"y":228,"on":true},{"x":746,"y":455,"on":true},{"x":491,"y":455,"on":true},{"x":491,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false},{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":485,"on":false},{"x":389,"y":536,"on":false},{"x":389,"y":555,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":539,"on":true},{"x":869,"y":539,"on":true},{"x":869,"y":468,"on":true},{"x":677,"y":234,"on":true},{"x":776,"y":225,"on":false},{"x":891,"y":106,"on":false},{"x":891,"y":3,"on":true},{"x":891,"y":-68,"on":false},{"x":833,"y":-178,"on":false},{"x":722,"y":-240,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "uni02A5": { + "advanceWidth": 966, + "contours": [ + [{"x":678,"y":-82,"on":true},{"x":611,"y":-58,"on":true},{"x":617,"y":-43,"on":false},{"x":629,"y":-14,"on":false},{"x":634,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false},{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":393,"y":490,"on":false},{"x":389,"y":537,"on":false},{"x":389,"y":555,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":539,"on":true},{"x":851,"y":539,"on":true},{"x":851,"y":468,"on":true},{"x":606,"y":81,"on":true},{"x":669,"y":81,"on":true},{"x":708,"y":161,"on":false},{"x":786,"y":236,"on":false},{"x":844,"y":236,"on":true},{"x":894,"y":236,"on":false},{"x":956,"y":174,"on":false},{"x":956,"y":127,"on":true},{"x":956,"y":64,"on":false},{"x":874,"y":0,"on":false},{"x":797,"y":0,"on":true},{"x":710,"y":0,"on":true},{"x":702,"y":-19,"on":false},{"x":686,"y":-60,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}], + [{"x":491,"y":69,"on":true},{"x":737,"y":458,"on":true},{"x":491,"y":458,"on":true}], + [{"x":747,"y":81,"on":true},{"x":803,"y":81,"on":true},{"x":840,"y":81,"on":false},{"x":870,"y":108,"on":false},{"x":870,"y":128,"on":true},{"x":870,"y":144,"on":false},{"x":850,"y":165,"on":false},{"x":831,"y":165,"on":true},{"x":808,"y":165,"on":false},{"x":769,"y":126,"on":false}] + ] + }, + "uni02A6": { + "advanceWidth": 716, + "contours": [ + [{"x":226,"y":-4,"on":true},{"x":162,"y":-4,"on":false},{"x":83,"y":69,"on":false},{"x":83,"y":160,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":88,"y":543,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":539,"on":true},{"x":434,"y":539,"on":true},{"x":451,"y":544,"on":false},{"x":489,"y":549,"on":false},{"x":511,"y":549,"on":true},{"x":555,"y":549,"on":false},{"x":633,"y":530,"on":false},{"x":670,"y":512,"on":true},{"x":637,"y":433,"on":true},{"x":606,"y":448,"on":false},{"x":542,"y":467,"on":false},{"x":509,"y":467,"on":true},{"x":467,"y":467,"on":false},{"x":422,"y":436,"on":false},{"x":422,"y":409,"on":true},{"x":422,"y":390,"on":false},{"x":443,"y":362,"on":false},{"x":492,"y":334,"on":false},{"x":536,"y":315,"on":true},{"x":580,"y":296,"on":false},{"x":643,"y":254,"on":false},{"x":677,"y":196,"on":false},{"x":677,"y":152,"on":true},{"x":677,"y":74,"on":false},{"x":572,"y":-4,"on":false},{"x":478,"y":-4,"on":true}], + [{"x":252,"y":80,"on":true},{"x":480,"y":80,"on":true},{"x":577,"y":80,"on":false},{"x":577,"y":145,"on":true},{"x":577,"y":164,"on":false},{"x":559,"y":193,"on":false},{"x":511,"y":222,"on":false},{"x":466,"y":241,"on":true},{"x":421,"y":262,"on":false},{"x":358,"y":304,"on":false},{"x":324,"y":361,"on":false},{"x":324,"y":404,"on":true},{"x":324,"y":420,"on":false},{"x":331,"y":447,"on":false},{"x":337,"y":459,"on":true},{"x":185,"y":459,"on":true},{"x":185,"y":163,"on":true},{"x":185,"y":80,"on":false}] + ] + }, + "uni02A7": { + "advanceWidth": 521, + "contours": [ + [{"x":446,"y":-78,"on":true},{"x":446,"y":-164,"on":false},{"x":377,"y":-240,"on":false},{"x":315,"y":-240,"on":true},{"x":267,"y":-240,"on":false},{"x":238,"y":-223,"on":true},{"x":238,"y":-143,"on":true},{"x":248,"y":-148,"on":false},{"x":278,"y":-154,"on":false},{"x":292,"y":-154,"on":true},{"x":318,"y":-154,"on":false},{"x":344,"y":-122,"on":false},{"x":344,"y":-78,"on":true},{"x":344,"y":8,"on":true},{"x":301,"y":-10,"on":false},{"x":240,"y":-10,"on":true},{"x":170,"y":-10,"on":false},{"x":83,"y":62,"on":false},{"x":83,"y":154,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":88,"y":543,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":539,"on":true},{"x":344,"y":539,"on":true},{"x":343,"y":603,"on":true},{"x":343,"y":692,"on":false},{"x":420,"y":765,"on":false},{"x":482,"y":765,"on":true},{"x":502,"y":765,"on":false},{"x":540,"y":757,"on":false},{"x":550,"y":752,"on":true},{"x":550,"y":670,"on":true},{"x":541,"y":674,"on":false},{"x":515,"y":679,"on":false},{"x":502,"y":679,"on":true},{"x":474,"y":679,"on":false},{"x":446,"y":647,"on":false},{"x":446,"y":601,"on":true}], + [{"x":264,"y":75,"on":true},{"x":284,"y":75,"on":false},{"x":326,"y":82,"on":false},{"x":344,"y":87,"on":true},{"x":344,"y":459,"on":true},{"x":185,"y":459,"on":true},{"x":185,"y":158,"on":true},{"x":185,"y":75,"on":false}] + ] + }, + "uni02A8": { + "advanceWidth": 785, + "contours": [ + [{"x":226,"y":-10,"on":true},{"x":162,"y":-10,"on":false},{"x":83,"y":63,"on":false},{"x":83,"y":154,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":88,"y":543,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":539,"on":true},{"x":318,"y":539,"on":true},{"x":318,"y":459,"on":true},{"x":185,"y":459,"on":true},{"x":185,"y":158,"on":true},{"x":185,"y":116,"on":false},{"x":219,"y":75,"on":false},{"x":248,"y":75,"on":true},{"x":284,"y":75,"on":false},{"x":348,"y":112,"on":false},{"x":379,"y":137,"on":true},{"x":359,"y":191,"on":false},{"x":359,"y":267,"on":true},{"x":359,"y":409,"on":false},{"x":486,"y":549,"on":false},{"x":593,"y":549,"on":true},{"x":634,"y":549,"on":false},{"x":703,"y":532,"on":false},{"x":728,"y":519,"on":true},{"x":698,"y":436,"on":true},{"x":673,"y":446,"on":false},{"x":620,"y":462,"on":false},{"x":594,"y":462,"on":true},{"x":464,"y":462,"on":false},{"x":464,"y":268,"on":true},{"x":464,"y":249,"on":false},{"x":468,"y":217,"on":false},{"x":470,"y":201,"on":true},{"x":500,"y":222,"on":false},{"x":570,"y":252,"on":false},{"x":614,"y":252,"on":true},{"x":679,"y":252,"on":false},{"x":753,"y":183,"on":false},{"x":753,"y":127,"on":true},{"x":753,"y":81,"on":false},{"x":708,"y":20,"on":false},{"x":634,"y":-10,"on":false},{"x":590,"y":-10,"on":true},{"x":533,"y":-10,"on":false},{"x":443,"y":28,"on":false},{"x":413,"y":67,"on":true},{"x":373,"y":35,"on":false},{"x":281,"y":-10,"on":false}], + [{"x":596,"y":69,"on":true},{"x":628,"y":69,"on":false},{"x":667,"y":102,"on":false},{"x":667,"y":127,"on":true},{"x":667,"y":149,"on":false},{"x":638,"y":177,"on":false},{"x":607,"y":177,"on":true},{"x":576,"y":177,"on":false},{"x":520,"y":147,"on":false},{"x":494,"y":126,"on":true},{"x":526,"y":69,"on":false}] + ] + }, + "uni02A9": { + "advanceWidth": 830, + "contours": [ + [{"x":617,"y":-240,"on":true},{"x":576,"y":-240,"on":false},{"x":548,"y":-229,"on":true},{"x":548,"y":-145,"on":true},{"x":561,"y":-149,"on":false},{"x":585,"y":-154,"on":false},{"x":599,"y":-154,"on":true},{"x":624,"y":-154,"on":false},{"x":656,"y":-118,"on":false},{"x":656,"y":-71,"on":true},{"x":656,"y":340,"on":true},{"x":656,"y":462,"on":false},{"x":562,"y":462,"on":true},{"x":492,"y":462,"on":false},{"x":437,"y":370,"on":false},{"x":437,"y":273,"on":true},{"x":437,"y":0,"on":true},{"x":335,"y":0,"on":true},{"x":335,"y":459,"on":true},{"x":197,"y":459,"on":true},{"x":197,"y":0,"on":true},{"x":95,"y":0,"on":true},{"x":95,"y":459,"on":true},{"x":14,"y":459,"on":true},{"x":14,"y":509,"on":true},{"x":95,"y":541,"on":true},{"x":95,"y":573,"on":true},{"x":95,"y":674,"on":false},{"x":175,"y":765,"on":false},{"x":255,"y":765,"on":true},{"x":286,"y":765,"on":false},{"x":337,"y":754,"on":false},{"x":359,"y":746,"on":true},{"x":334,"y":668,"on":true},{"x":318,"y":672,"on":false},{"x":283,"y":681,"on":false},{"x":264,"y":681,"on":true},{"x":229,"y":681,"on":false},{"x":197,"y":630,"on":false},{"x":197,"y":574,"on":true},{"x":197,"y":539,"on":true},{"x":416,"y":539,"on":true},{"x":430,"y":467,"on":true},{"x":436,"y":467,"on":true},{"x":458,"y":508,"on":false},{"x":538,"y":549,"on":false},{"x":585,"y":549,"on":true},{"x":758,"y":549,"on":false},{"x":758,"y":352,"on":true},{"x":758,"y":-74,"on":true},{"x":758,"y":-149,"on":false},{"x":690,"y":-240,"on":false}] + ] + }, + "uni02AA": { + "advanceWidth": 628, + "contours": [ + [{"x":364,"y":-10,"on":true},{"x":306,"y":-10,"on":false},{"x":216,"y":12,"on":false},{"x":178,"y":32,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":124,"on":true},{"x":220,"y":100,"on":false},{"x":317,"y":73,"on":false},{"x":366,"y":73,"on":true},{"x":431,"y":73,"on":false},{"x":490,"y":111,"on":false},{"x":490,"y":143,"on":true},{"x":490,"y":161,"on":false},{"x":472,"y":190,"on":false},{"x":425,"y":220,"on":false},{"x":381,"y":240,"on":true},{"x":314,"y":270,"on":false},{"x":240,"y":340,"on":false},{"x":240,"y":404,"on":true},{"x":240,"y":473,"on":false},{"x":342,"y":549,"on":false},{"x":425,"y":549,"on":true},{"x":469,"y":549,"on":false},{"x":547,"y":530,"on":false},{"x":583,"y":512,"on":true},{"x":550,"y":433,"on":true},{"x":520,"y":448,"on":false},{"x":457,"y":467,"on":false},{"x":424,"y":467,"on":true},{"x":383,"y":467,"on":false},{"x":339,"y":436,"on":false},{"x":339,"y":408,"on":true},{"x":339,"y":388,"on":false},{"x":359,"y":360,"on":false},{"x":408,"y":332,"on":false},{"x":451,"y":313,"on":true},{"x":516,"y":284,"on":false},{"x":590,"y":216,"on":false},{"x":590,"y":152,"on":true},{"x":590,"y":72,"on":false},{"x":473,"y":-10,"on":false}] + ] + }, + "uni02AB": { + "advanceWidth": 563, + "contours": [ + [{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":539,"on":true},{"x":525,"y":539,"on":true},{"x":525,"y":467,"on":true},{"x":292,"y":81,"on":true},{"x":533,"y":81,"on":true},{"x":533,"y":0,"on":true}], + [{"x":178,"y":71,"on":true},{"x":412,"y":458,"on":true},{"x":178,"y":458,"on":true}] + ] + }, + "uni02AC": { + "advanceWidth": 488, + "contours": [ + [{"x":487,"y":714,"on":true},{"x":395,"y":378,"on":true},{"x":305,"y":378,"on":true},{"x":243,"y":622,"on":true},{"x":179,"y":378,"on":true},{"x":90,"y":378,"on":true},{"x":2,"y":714,"on":true},{"x":81,"y":714,"on":true},{"x":137,"y":468,"on":true},{"x":202,"y":714,"on":true},{"x":286,"y":714,"on":true},{"x":348,"y":467,"on":true},{"x":408,"y":714,"on":true}], + [{"x":487,"y":336,"on":true},{"x":395,"y":0,"on":true},{"x":305,"y":0,"on":true},{"x":243,"y":244,"on":true},{"x":179,"y":0,"on":true},{"x":90,"y":0,"on":true},{"x":2,"y":336,"on":true},{"x":81,"y":336,"on":true},{"x":137,"y":89,"on":true},{"x":202,"y":336,"on":true},{"x":286,"y":336,"on":true},{"x":348,"y":89,"on":true},{"x":408,"y":336,"on":true}] + ] + }, + "uni02AD": { + "advanceWidth": 558, + "contours": [ + [{"x":76,"y":714,"on":true},{"x":482,"y":714,"on":true},{"x":482,"y":475,"on":true},{"x":390,"y":475,"on":true},{"x":390,"y":627,"on":true},{"x":168,"y":627,"on":true},{"x":168,"y":475,"on":true},{"x":76,"y":475,"on":true}], + [{"x":76,"y":239,"on":true},{"x":482,"y":239,"on":true},{"x":482,"y":0,"on":true},{"x":390,"y":0,"on":true},{"x":390,"y":153,"on":true},{"x":168,"y":153,"on":true},{"x":168,"y":0,"on":true},{"x":76,"y":0,"on":true}] + ] + }, + "uni02AE": { + "advanceWidth": 584, + "contours": [ + [{"x":53,"y":549,"on":true},{"x":114,"y":549,"on":false},{"x":188,"y":481,"on":false},{"x":188,"y":403,"on":true},{"x":188,"y":202,"on":true},{"x":188,"y":77,"on":false},{"x":281,"y":77,"on":true},{"x":352,"y":77,"on":false},{"x":407,"y":172,"on":false},{"x":407,"y":267,"on":true},{"x":407,"y":539,"on":true},{"x":509,"y":539,"on":true},{"x":509,"y":-240,"on":true},{"x":407,"y":-240,"on":true},{"x":407,"y":-9,"on":true},{"x":407,"y":11,"on":false},{"x":410,"y":55,"on":false},{"x":413,"y":72,"on":true},{"x":407,"y":72,"on":true},{"x":384,"y":32,"on":false},{"x":308,"y":-10,"on":false},{"x":260,"y":-10,"on":true},{"x":174,"y":-10,"on":false},{"x":86,"y":85,"on":false},{"x":86,"y":184,"on":true},{"x":86,"y":399,"on":true},{"x":86,"y":434,"on":false},{"x":60,"y":464,"on":false},{"x":34,"y":464,"on":true},{"x":21,"y":464,"on":false},{"x":-5,"y":458,"on":false},{"x":-14,"y":455,"on":true},{"x":-14,"y":537,"on":true},{"x":-4,"y":542,"on":false},{"x":34,"y":549,"on":false}] + ] + }, + "uni02AF": { + "advanceWidth": 584, + "contours": [ + [{"x":53,"y":549,"on":true},{"x":114,"y":549,"on":false},{"x":188,"y":481,"on":false},{"x":188,"y":403,"on":true},{"x":188,"y":202,"on":true},{"x":188,"y":77,"on":false},{"x":281,"y":77,"on":true},{"x":352,"y":77,"on":false},{"x":407,"y":172,"on":false},{"x":407,"y":267,"on":true},{"x":407,"y":539,"on":true},{"x":509,"y":539,"on":true},{"x":509,"y":-77,"on":true},{"x":509,"y":-121,"on":false},{"x":531,"y":-154,"on":false},{"x":554,"y":-154,"on":true},{"x":570,"y":-154,"on":false},{"x":597,"y":-148,"on":false},{"x":607,"y":-143,"on":true},{"x":607,"y":-223,"on":true},{"x":579,"y":-240,"on":false},{"x":529,"y":-240,"on":true},{"x":470,"y":-240,"on":false},{"x":407,"y":-167,"on":false},{"x":407,"y":-83,"on":true},{"x":407,"y":-11,"on":true},{"x":407,"y":34,"on":false},{"x":413,"y":72,"on":true},{"x":407,"y":72,"on":true},{"x":384,"y":32,"on":false},{"x":308,"y":-10,"on":false},{"x":260,"y":-10,"on":true},{"x":174,"y":-10,"on":false},{"x":86,"y":85,"on":false},{"x":86,"y":184,"on":true},{"x":86,"y":399,"on":true},{"x":86,"y":434,"on":false},{"x":60,"y":464,"on":false},{"x":34,"y":464,"on":true},{"x":21,"y":464,"on":false},{"x":-5,"y":458,"on":false},{"x":-14,"y":455,"on":true},{"x":-14,"y":537,"on":true},{"x":-4,"y":542,"on":false},{"x":34,"y":549,"on":false}] + ] + }, + "uni02B0": { + "advanceWidth": 371, + "references": [ + {"glyph":"h","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02B1": { + "advanceWidth": 371, + "references": [ + {"glyph":"uni0266","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02B2": { + "advanceWidth": 165, + "references": [ + {"glyph":"j","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02B3": { + "advanceWidth": 250, + "references": [ + {"glyph":"r","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02B4": { + "advanceWidth": 250, + "references": [ + {"glyph":"uni0279","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02B5": { + "advanceWidth": 250, + "references": [ + {"glyph":"uni027B","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02B6": { + "advanceWidth": 331, + "references": [ + {"glyph":"uni0281","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02B7": { + "advanceWidth": 482, + "references": [ + {"glyph":"w","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02B8": { + "advanceWidth": 311, + "references": [ + {"glyph":"y","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02B9": { + "advanceWidth": 193, + "references": [ + {"glyph":"glyph2789","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02BA": { + "advanceWidth": 383, + "references": [ + {"glyph":"glyph2790","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02BB": { + "advanceWidth": 194, + "references": [ + {"glyph":"glyph2788","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02BC": { + "advanceWidth": 194, + "references": [ + {"glyph":"glyph2789","x":-1,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02BD": { + "advanceWidth": 193, + "references": [ + {"glyph":"quotereversed","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02BE": { + "advanceWidth": 175, + "contours": [ + [{"x":30,"y":795,"on":true},{"x":80,"y":795,"on":false},{"x":145,"y":737,"on":false},{"x":145,"y":685,"on":true},{"x":145,"y":633,"on":false},{"x":80,"y":575,"on":false},{"x":30,"y":575,"on":true},{"x":30,"y":630,"on":true},{"x":53,"y":630,"on":false},{"x":85,"y":659,"on":false},{"x":85,"y":685,"on":true},{"x":85,"y":710,"on":false},{"x":56,"y":739,"on":false},{"x":30,"y":739,"on":true}] + ] + }, + "uni02BF": { + "advanceWidth": 175, + "contours": [ + [{"x":145,"y":575,"on":true},{"x":95,"y":575,"on":false},{"x":30,"y":633,"on":false},{"x":30,"y":685,"on":true},{"x":30,"y":737,"on":false},{"x":95,"y":795,"on":false},{"x":145,"y":795,"on":true},{"x":145,"y":739,"on":true},{"x":122,"y":739,"on":false},{"x":90,"y":710,"on":false},{"x":90,"y":685,"on":true},{"x":90,"y":660,"on":false},{"x":120,"y":630,"on":false},{"x":145,"y":630,"on":true}] + ] + }, + "uni02C0": { + "advanceWidth": 274, + "contours": [ + [{"x":72,"y":478,"on":true},{"x":72,"y":564,"on":true},{"x":173,"y":587,"on":false},{"x":173,"y":647,"on":true},{"x":173,"y":670,"on":false},{"x":143,"y":704,"on":false},{"x":112,"y":704,"on":true},{"x":91,"y":704,"on":false},{"x":49,"y":689,"on":false},{"x":32,"y":677,"on":true},{"x":8,"y":735,"on":true},{"x":29,"y":748,"on":false},{"x":86,"y":766,"on":false},{"x":120,"y":766,"on":true},{"x":187,"y":766,"on":false},{"x":254,"y":699,"on":false},{"x":254,"y":649,"on":true},{"x":254,"y":606,"on":false},{"x":203,"y":544,"on":false},{"x":145,"y":526,"on":true},{"x":145,"y":478,"on":true}] + ] + }, + "uni02C1": { + "advanceWidth": 274, + "references": [ + {"glyph":"uni02C0","x":274,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02C2": { + "advanceWidth": 261, + "references": [ + {"glyph":"less","x":0,"y":482,"a":0.5,"b":0,"c":0,"d":0.5,"roundToGrid":true} + ] + }, + "uni02C3": { + "advanceWidth": 261, + "references": [ + {"glyph":"greater","x":0,"y":482,"a":0.5,"b":0,"c":0,"d":0.5,"roundToGrid":true} + ] + }, + "uni02C4": { + "advanceWidth": 285, + "contours": [ + [{"x":17,"y":545,"on":true},{"x":126,"y":782,"on":true},{"x":156,"y":782,"on":true},{"x":268,"y":545,"on":true},{"x":223,"y":545,"on":true},{"x":141,"y":726,"on":true},{"x":61,"y":545,"on":true}] + ] + }, + "uni02C5": { + "advanceWidth": 285, + "references": [ + {"glyph":"uni02C4","x":280,"y":1327,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "circumflex": { + "advanceWidth": 411, + "contours": [ + [{"x":258,"y":766,"on":true},{"x":270,"y":744,"on":false},{"x":310,"y":690,"on":false},{"x":353,"y":638,"on":false},{"x":371,"y":617,"on":true},{"x":371,"y":606,"on":true},{"x":305,"y":606,"on":true},{"x":281,"y":622,"on":false},{"x":230,"y":669,"on":false},{"x":205,"y":695,"on":true},{"x":180,"y":669,"on":false},{"x":128,"y":622,"on":false},{"x":105,"y":606,"on":true},{"x":40,"y":606,"on":true},{"x":40,"y":617,"on":true},{"x":58,"y":638,"on":false},{"x":101,"y":691,"on":false},{"x":140,"y":744,"on":false},{"x":152,"y":766,"on":true}] + ] + }, + "caron": { + "advanceWidth": 411, + "contours": [ + [{"x":152,"y":606,"on":true},{"x":140,"y":628,"on":false},{"x":101,"y":682,"on":false},{"x":58,"y":734,"on":false},{"x":40,"y":754,"on":true},{"x":40,"y":766,"on":true},{"x":105,"y":766,"on":true},{"x":128,"y":750,"on":false},{"x":181,"y":702,"on":false},{"x":205,"y":676,"on":true},{"x":230,"y":704,"on":false},{"x":280,"y":746,"on":false},{"x":305,"y":766,"on":true},{"x":371,"y":766,"on":true},{"x":371,"y":754,"on":true},{"x":354,"y":734,"on":false},{"x":310,"y":682,"on":false},{"x":270,"y":628,"on":false},{"x":258,"y":606,"on":true}] + ] + }, + "uni02C8": { + "advanceWidth": 158, + "references": [ + {"glyph":"uni030D","x":79,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02C9": { + "advanceWidth": 367, + "contours": [ + [{"x":327,"y":687,"on":true},{"x":327,"y":609,"on":true},{"x":40,"y":609,"on":true},{"x":40,"y":687,"on":true}] + ] + }, + "uni02CA": { + "advanceWidth": 296, + "references": [ + {"glyph":"acute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02CB": { + "advanceWidth": 296, + "references": [ + {"glyph":"grave","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02CC": { + "advanceWidth": 158, + "references": [ + {"glyph":"uni030D","x":79,"y":-804,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02CD": { + "advanceWidth": 367, + "references": [ + {"glyph":"uni02C9","x":0,"y":-764,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02CE": { + "advanceWidth": 296, + "references": [ + {"glyph":"uni0316","x":156,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02CF": { + "advanceWidth": 296, + "references": [ + {"glyph":"uni0317","x":134,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02D0": { + "advanceWidth": 288, + "contours": [ + [{"x":144,"y":403,"on":true},{"x":64,"y":537,"on":true},{"x":224,"y":537,"on":true}], + [{"x":64,"y":0,"on":true},{"x":144,"y":135,"on":true},{"x":224,"y":0,"on":true}] + ] + }, + "uni02D1": { + "advanceWidth": 288, + "contours": [ + [{"x":144,"y":400,"on":true},{"x":64,"y":537,"on":true},{"x":224,"y":537,"on":true}] + ] + }, + "uni02D2": { + "advanceWidth": 195, + "references": [ + {"glyph":"uni02BE","x":10,"y":-387,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02D3": { + "advanceWidth": 195, + "references": [ + {"glyph":"uni02BF","x":10,"y":-387,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02D4": { + "advanceWidth": 257, + "references": [ + {"glyph":"uni031D","x":128,"y":426,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02D5": { + "advanceWidth": 257, + "references": [ + {"glyph":"uni031E","x":128,"y":426,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02D6": { + "advanceWidth": 258, + "references": [ + {"glyph":"uni031F","x":129,"y":426,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02D7": { + "advanceWidth": 272, + "contours": [ + [{"x":238,"y":270,"on":true},{"x":34,"y":270,"on":true},{"x":34,"y":327,"on":true},{"x":238,"y":327,"on":true}] + ] + }, + "breve": { + "advanceWidth": 385, + "contours": [ + [{"x":345,"y":749,"on":true},{"x":341,"y":684,"on":false},{"x":259,"y":606,"on":false},{"x":190,"y":606,"on":true},{"x":120,"y":606,"on":false},{"x":43,"y":682,"on":false},{"x":40,"y":749,"on":true},{"x":102,"y":749,"on":true},{"x":106,"y":710,"on":false},{"x":152,"y":683,"on":false},{"x":192,"y":683,"on":true},{"x":227,"y":683,"on":false},{"x":278,"y":711,"on":false},{"x":283,"y":749,"on":true}] + ] + }, + "dotaccent": { + "advanceWidth": 196, + "contours": [ + [{"x":98,"y":745,"on":true},{"x":124,"y":745,"on":false},{"x":156,"y":715,"on":false},{"x":156,"y":683,"on":true},{"x":156,"y":652,"on":false},{"x":124,"y":621,"on":false},{"x":98,"y":621,"on":true},{"x":72,"y":621,"on":false},{"x":40,"y":652,"on":false},{"x":40,"y":683,"on":true},{"x":40,"y":715,"on":false},{"x":72,"y":745,"on":false}] + ] + }, + "ring": { + "advanceWidth": 303, + "contours": [ + [{"x":151,"y":607,"on":true},{"x":101,"y":607,"on":false},{"x":40,"y":664,"on":false},{"x":40,"y":714,"on":true},{"x":40,"y":764,"on":false},{"x":101,"y":821,"on":false},{"x":151,"y":821,"on":true},{"x":199,"y":821,"on":false},{"x":263,"y":764,"on":false},{"x":263,"y":715,"on":true},{"x":263,"y":665,"on":false},{"x":200,"y":607,"on":false}], + [{"x":151,"y":662,"on":true},{"x":174,"y":662,"on":false},{"x":204,"y":690,"on":false},{"x":204,"y":714,"on":true},{"x":204,"y":738,"on":false},{"x":174,"y":766,"on":false},{"x":151,"y":766,"on":true},{"x":128,"y":766,"on":false},{"x":99,"y":738,"on":false},{"x":99,"y":714,"on":true},{"x":99,"y":690,"on":false},{"x":126,"y":662,"on":false}] + ] + }, + "ogonek": { + "advanceWidth": 247, + "contours": [ + [{"x":120,"y":-114,"on":true},{"x":120,"y":-159,"on":false},{"x":163,"y":-159,"on":true},{"x":178,"y":-159,"on":false},{"x":200,"y":-154,"on":false},{"x":207,"y":-152,"on":true},{"x":207,"y":-217,"on":true},{"x":194,"y":-221,"on":false},{"x":166,"y":-226,"on":false},{"x":146,"y":-226,"on":true},{"x":93,"y":-226,"on":false},{"x":40,"y":-174,"on":false},{"x":40,"y":-128,"on":true},{"x":40,"y":-88,"on":false},{"x":95,"y":-11,"on":false},{"x":132,"y":15,"on":true},{"x":185,"y":0,"on":true},{"x":151,"y":-33,"on":false},{"x":120,"y":-86,"on":false}] + ] + }, + "tilde": { + "advanceWidth": 431, + "contours": [ + [{"x":40,"y":605,"on":true},{"x":45,"y":664,"on":false},{"x":98,"y":738,"on":false},{"x":145,"y":738,"on":true},{"x":172,"y":738,"on":false},{"x":222,"y":710,"on":false},{"x":268,"y":683,"on":false},{"x":288,"y":683,"on":true},{"x":307,"y":683,"on":false},{"x":329,"y":712,"on":false},{"x":335,"y":739,"on":true},{"x":391,"y":739,"on":true},{"x":386,"y":675,"on":false},{"x":330,"y":606,"on":false},{"x":287,"y":606,"on":true},{"x":260,"y":606,"on":false},{"x":210,"y":634,"on":false},{"x":164,"y":662,"on":false},{"x":144,"y":662,"on":true},{"x":109,"y":662,"on":false},{"x":97,"y":605,"on":true}] + ] + }, + "hungarumlaut": { + "advanceWidth": 440, + "contours": [ + [{"x":400,"y":766,"on":true},{"x":400,"y":756,"on":true},{"x":390,"y":737,"on":false},{"x":342,"y":680,"on":false},{"x":286,"y":624,"on":false},{"x":265,"y":606,"on":true},{"x":210,"y":606,"on":true},{"x":210,"y":618,"on":true},{"x":224,"y":639,"on":false},{"x":257,"y":693,"on":false},{"x":286,"y":746,"on":false},{"x":295,"y":766,"on":true}], + [{"x":230,"y":766,"on":true},{"x":230,"y":756,"on":true},{"x":220,"y":737,"on":false},{"x":173,"y":681,"on":false},{"x":118,"y":625,"on":false},{"x":94,"y":606,"on":true},{"x":40,"y":606,"on":true},{"x":40,"y":618,"on":true},{"x":62,"y":650,"on":false},{"x":111,"y":736,"on":false},{"x":125,"y":766,"on":true}] + ] + }, + "uni02DE": { + "advanceWidth": 219, + "contours": [ + [{"x":117,"y":176,"on":true},{"x":76,"y":176,"on":false},{"x":18,"y":233,"on":false},{"x":0,"y":298,"on":true},{"x":-100,"y":267,"on":true},{"x":-120,"y":338,"on":true},{"x":58,"y":392,"on":true},{"x":72,"y":338,"on":true},{"x":84,"y":291,"on":false},{"x":109,"y":254,"on":false},{"x":130,"y":254,"on":true},{"x":149,"y":254,"on":false},{"x":181,"y":268,"on":false},{"x":196,"y":278,"on":true},{"x":219,"y":213,"on":true},{"x":199,"y":196,"on":false},{"x":146,"y":176,"on":false}] + ] + }, + "uni02DF": { + "advanceWidth": 280, + "references": [ + {"glyph":"uni033D","x":140,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02E0": { + "advanceWidth": 310, + "references": [ + {"glyph":"uni0263","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02E1": { + "advanceWidth": 164, + "references": [ + {"glyph":"l","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02E2": { + "advanceWidth": 282, + "references": [ + {"glyph":"s","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02E3": { + "advanceWidth": 317, + "references": [ + {"glyph":"x","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02E4": { + "advanceWidth": 266, + "references": [ + {"glyph":"uni0295","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni02E5": { + "advanceWidth": 418, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":622,"on":true},{"x":78,"y":622,"on":true},{"x":78,"y":688,"on":true},{"x":340,"y":688,"on":true},{"x":340,"y":0,"on":true}] + ] + }, + "uni02E6": { + "advanceWidth": 418, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":457,"on":true},{"x":78,"y":457,"on":true},{"x":78,"y":523,"on":true},{"x":274,"y":523,"on":true},{"x":274,"y":688,"on":true},{"x":340,"y":688,"on":true},{"x":340,"y":0,"on":true}] + ] + }, + "uni02E7": { + "advanceWidth": 418, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":326,"on":true},{"x":78,"y":326,"on":true},{"x":78,"y":392,"on":true},{"x":274,"y":392,"on":true},{"x":274,"y":688,"on":true},{"x":340,"y":688,"on":true},{"x":340,"y":0,"on":true}] + ] + }, + "uni02E8": { + "advanceWidth": 418, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":167,"on":true},{"x":78,"y":167,"on":true},{"x":78,"y":233,"on":true},{"x":274,"y":233,"on":true},{"x":274,"y":688,"on":true},{"x":340,"y":688,"on":true},{"x":340,"y":0,"on":true}] + ] + }, + "uni02E9": { + "advanceWidth": 418, + "contours": [ + [{"x":340,"y":0,"on":true},{"x":78,"y":0,"on":true},{"x":78,"y":66,"on":true},{"x":274,"y":66,"on":true},{"x":274,"y":688,"on":true},{"x":340,"y":688,"on":true}] + ] + }, + "uni02EA": { + "advanceWidth": 418, + "contours": [ + [{"x":78,"y":528,"on":true},{"x":144,"y":528,"on":true},{"x":144,"y":232,"on":true},{"x":340,"y":232,"on":true},{"x":340,"y":166,"on":true},{"x":78,"y":166,"on":true}] + ] + }, + "uni02EB": { + "advanceWidth": 418, + "contours": [ + [{"x":78,"y":528,"on":true},{"x":144,"y":528,"on":true},{"x":144,"y":380,"on":true},{"x":340,"y":380,"on":true},{"x":340,"y":314,"on":true},{"x":144,"y":314,"on":true},{"x":144,"y":166,"on":true},{"x":78,"y":166,"on":true}] + ] + }, + "uni02EC": { + "advanceWidth": 411, + "references": [ + {"glyph":"caron","x":0,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02ED": { + "advanceWidth": 509, + "references": [ + {"glyph":"underscoredbl","x":42,"y":823,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02EE": { + "advanceWidth": 383, + "references": [ + {"glyph":"glyph2790","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02EF": { + "advanceWidth": 376, + "contours": [ + [{"x":167,"y":-234,"on":true},{"x":40,"y":-21,"on":true},{"x":108,"y":-21,"on":true},{"x":188,"y":-155,"on":true},{"x":269,"y":-21,"on":true},{"x":336,"y":-21,"on":true},{"x":209,"y":-234,"on":true}] + ] + }, + "uni02F0": { + "advanceWidth": 376, + "contours": [ + [{"x":40,"y":-234,"on":true},{"x":166,"y":-23,"on":true},{"x":209,"y":-23,"on":true},{"x":336,"y":-234,"on":true},{"x":268,"y":-234,"on":true},{"x":188,"y":-101,"on":true},{"x":107,"y":-234,"on":true}] + ] + }, + "uni02F1": { + "advanceWidth": 303, + "contours": [ + [{"x":262,"y":-235,"on":true},{"x":40,"y":-131,"on":true},{"x":40,"y":-86,"on":true},{"x":263,"y":18,"on":true},{"x":262,"y":-45,"on":true},{"x":116,"y":-108,"on":true},{"x":262,"y":-172,"on":true}] + ] + }, + "uni02F2": { + "advanceWidth": 303, + "contours": [ + [{"x":40,"y":-235,"on":true},{"x":40,"y":-172,"on":true},{"x":186,"y":-109,"on":true},{"x":40,"y":-45,"on":true},{"x":40,"y":18,"on":true},{"x":263,"y":-86,"on":true},{"x":263,"y":-131,"on":true}] + ] + }, + "uni02F3": { + "advanceWidth": 346, + "contours": [ + [{"x":172,"y":-275,"on":true},{"x":122,"y":-275,"on":false},{"x":61,"y":-217,"on":false},{"x":61,"y":-167,"on":true},{"x":61,"y":-118,"on":false},{"x":122,"y":-60,"on":false},{"x":172,"y":-60,"on":true},{"x":221,"y":-60,"on":false},{"x":285,"y":-117,"on":false},{"x":285,"y":-166,"on":true},{"x":285,"y":-216,"on":false},{"x":222,"y":-275,"on":false}], + [{"x":172,"y":-219,"on":true},{"x":194,"y":-219,"on":false},{"x":224,"y":-191,"on":false},{"x":224,"y":-167,"on":true},{"x":224,"y":-143,"on":false},{"x":195,"y":-115,"on":false},{"x":172,"y":-115,"on":true},{"x":149,"y":-115,"on":false},{"x":119,"y":-143,"on":false},{"x":119,"y":-167,"on":true},{"x":119,"y":-191,"on":false},{"x":146,"y":-219,"on":false}] + ] + }, + "uni02F4": { + "advanceWidth": 296, + "references": [ + {"glyph":"grave","x":0,"y":-325,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02F5": { + "advanceWidth": 440, + "references": [ + {"glyph":"hungarumlaut","x":440,"y":-325,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni02F6": { + "advanceWidth": 440, + "references": [ + {"glyph":"hungarumlaut","x":0,"y":-325,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02F7": { + "advanceWidth": 431, + "references": [ + {"glyph":"tilde","x":0,"y":-802,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02F8": { + "advanceWidth": 260, + "references": [ + {"glyph":"colon","x":0,"y":210,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni02F9": { + "advanceWidth": 246, + "contours": [ + [{"x":40,"y":681,"on":true},{"x":206,"y":681,"on":true},{"x":206,"y":628,"on":true},{"x":93,"y":628,"on":true},{"x":93,"y":415,"on":true},{"x":40,"y":415,"on":true}] + ] + }, + "uni02FA": { + "advanceWidth": 246, + "contours": [ + [{"x":206,"y":681,"on":true},{"x":206,"y":415,"on":true},{"x":153,"y":415,"on":true},{"x":153,"y":628,"on":true},{"x":40,"y":628,"on":true},{"x":40,"y":681,"on":true}] + ] + }, + "uni02FB": { + "advanceWidth": 246, + "contours": [ + [{"x":40,"y":0,"on":true},{"x":40,"y":266,"on":true},{"x":93,"y":266,"on":true},{"x":93,"y":53,"on":true},{"x":206,"y":53,"on":true},{"x":206,"y":0,"on":true}] + ] + }, + "uni02FC": { + "advanceWidth": 246, + "contours": [ + [{"x":206,"y":0,"on":true},{"x":40,"y":0,"on":true},{"x":40,"y":53,"on":true},{"x":153,"y":53,"on":true},{"x":153,"y":266,"on":true},{"x":206,"y":266,"on":true}] + ] + }, + "uni02FD": { + "advanceWidth": 457, + "contours": [ + [{"x":417,"y":-204,"on":true},{"x":40,"y":-204,"on":true},{"x":40,"y":-44,"on":true},{"x":93,"y":-44,"on":true},{"x":93,"y":-144,"on":true},{"x":362,"y":-144,"on":true},{"x":362,"y":-44,"on":true},{"x":417,"y":-44,"on":true}] + ] + }, + "uni02FE": { + "advanceWidth": 452, + "contours": [ + [{"x":412,"y":-204,"on":true},{"x":40,"y":-204,"on":true},{"x":40,"y":-43,"on":true},{"x":93,"y":-43,"on":true},{"x":93,"y":-144,"on":true},{"x":412,"y":-144,"on":true}] + ] + }, + "uni02FF": { + "advanceWidth": 484, + "contours": [ + [{"x":262,"y":-234,"on":true},{"x":40,"y":-104,"on":true},{"x":40,"y":-60,"on":true},{"x":262,"y":69,"on":true},{"x":262,"y":13,"on":true},{"x":143,"y":-55,"on":true},{"x":444,"y":-55,"on":true},{"x":444,"y":-109,"on":true},{"x":143,"y":-109,"on":true},{"x":262,"y":-178,"on":true}] + ] + }, + "gravecomb": { + "advanceWidth": 0, + "references": [ + {"glyph":"grave","x":-504,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "acutecomb": { + "advanceWidth": 0, + "references": [ + {"glyph":"acute","x":-372,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0302": { + "advanceWidth": 0, + "references": [ + {"glyph":"circumflex","x":-205,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "tildecomb": { + "advanceWidth": 0, + "references": [ + {"glyph":"tilde","x":-508,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0304": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02C9","x":-183,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0305": { + "advanceWidth": 0, + "contours": [ + [{"x":-187,"y":841,"on":true},{"x":188,"y":841,"on":true},{"x":188,"y":762,"on":true},{"x":-187,"y":762,"on":true}] + ] + }, + "uni0306": { + "advanceWidth": 0, + "references": [ + {"glyph":"breve","x":-192,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0307": { + "advanceWidth": 0, + "references": [ + {"glyph":"dotaccent","x":-97,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0308": { + "advanceWidth": 0, + "references": [ + {"glyph":"dieresis","x":-280,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "hookabovecomb": { + "advanceWidth": 0, + "references": [ + {"glyph":"glyph2794","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni030A": { + "advanceWidth": 0, + "references": [ + {"glyph":"ring","x":-150,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni030B": { + "advanceWidth": 0, + "references": [ + {"glyph":"hungarumlaut","x":-163,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni030C": { + "advanceWidth": 0, + "references": [ + {"glyph":"caron","x":-205,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni030D": { + "advanceWidth": 0, + "contours": [ + [{"x":39,"y":764,"on":true},{"x":39,"y":596,"on":true},{"x":-39,"y":596,"on":true},{"x":-39,"y":764,"on":true}] + ] + }, + "uni030E": { + "advanceWidth": 0, + "contours": [ + [{"x":-34,"y":764,"on":true},{"x":-34,"y":596,"on":true},{"x":-113,"y":596,"on":true},{"x":-113,"y":764,"on":true}], + [{"x":113,"y":764,"on":true},{"x":113,"y":596,"on":true},{"x":35,"y":596,"on":true},{"x":35,"y":764,"on":true}] + ] + }, + "uni030F": { + "advanceWidth": 0, + "contours": [ + [{"x":-242,"y":766,"on":true},{"x":-232,"y":746,"on":false},{"x":-204,"y":692,"on":false},{"x":-173,"y":638,"on":false},{"x":-159,"y":618,"on":true},{"x":-159,"y":606,"on":true},{"x":-213,"y":606,"on":true},{"x":-235,"y":624,"on":false},{"x":-290,"y":681,"on":false},{"x":-337,"y":738,"on":false},{"x":-347,"y":756,"on":true},{"x":-347,"y":766,"on":true}], + [{"x":-412,"y":766,"on":true},{"x":-396,"y":732,"on":false},{"x":-351,"y":650,"on":false},{"x":-329,"y":618,"on":true},{"x":-329,"y":606,"on":true},{"x":-384,"y":606,"on":true},{"x":-406,"y":624,"on":false},{"x":-460,"y":681,"on":false},{"x":-508,"y":738,"on":false},{"x":-518,"y":756,"on":true},{"x":-518,"y":766,"on":true}] + ] + }, + "uni0310": { + "advanceWidth": 0, + "contours": [ + [{"x":-1,"y":835,"on":true},{"x":21,"y":835,"on":false},{"x":49,"y":808,"on":false},{"x":49,"y":779,"on":true},{"x":49,"y":752,"on":false},{"x":21,"y":724,"on":false},{"x":-1,"y":724,"on":true},{"x":-23,"y":724,"on":false},{"x":-50,"y":751,"on":false},{"x":-50,"y":779,"on":true},{"x":-50,"y":808,"on":false},{"x":-23,"y":835,"on":false}], + [{"x":151,"y":750,"on":true},{"x":146,"y":685,"on":false},{"x":68,"y":606,"on":false},{"x":-2,"y":606,"on":true},{"x":-75,"y":606,"on":false},{"x":-148,"y":683,"on":false},{"x":-151,"y":750,"on":true},{"x":-95,"y":750,"on":true},{"x":-90,"y":708,"on":false},{"x":-42,"y":675,"on":false},{"x":-1,"y":675,"on":true},{"x":37,"y":675,"on":false},{"x":88,"y":710,"on":false},{"x":93,"y":750,"on":true}] + ] + }, + "uni0311": { + "advanceWidth": 0, + "contours": [ + [{"x":2,"y":749,"on":true},{"x":72,"y":749,"on":false},{"x":149,"y":674,"on":false},{"x":152,"y":606,"on":true},{"x":90,"y":606,"on":true},{"x":86,"y":646,"on":false},{"x":40,"y":672,"on":false},{"x":1,"y":672,"on":true},{"x":-34,"y":672,"on":false},{"x":-86,"y":645,"on":false},{"x":-90,"y":606,"on":true},{"x":-153,"y":606,"on":true},{"x":-149,"y":671,"on":false},{"x":-66,"y":749,"on":false}] + ] + }, + "uni0312": { + "advanceWidth": 0, + "references": [ + {"glyph":"glyph2788","x":-94,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0313": { + "advanceWidth": 0, + "references": [ + {"glyph":"glyph2789","x":-93,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0314": { + "advanceWidth": 0, + "references": [ + {"glyph":"quotereversed","x":-103,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0315": { + "advanceWidth": 0, + "references": [ + {"glyph":"glyph2789","x":-92,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0316": { + "advanceWidth": 0, + "references": [ + {"glyph":"grave","x":-156,"y":-810,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0317": { + "advanceWidth": 0, + "references": [ + {"glyph":"acute","x":-134,"y":-810,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0318": { + "advanceWidth": 0, + "contours": [ + [{"x":-79,"y":-95,"on":true},{"x":20,"y":-95,"on":true},{"x":20,"y":-30,"on":true},{"x":79,"y":-30,"on":true},{"x":79,"y":-216,"on":true},{"x":20,"y":-216,"on":true},{"x":20,"y":-151,"on":true},{"x":-79,"y":-151,"on":true}] + ] + }, + "uni0319": { + "advanceWidth": 0, + "contours": [ + [{"x":79,"y":-151,"on":true},{"x":-19,"y":-151,"on":true},{"x":-19,"y":-216,"on":true},{"x":-79,"y":-216,"on":true},{"x":-79,"y":-30,"on":true},{"x":-19,"y":-30,"on":true},{"x":-19,"y":-95,"on":true},{"x":79,"y":-95,"on":true}] + ] + }, + "uni031A": { + "advanceWidth": 0, + "contours": [ + [{"x":-157,"y":797,"on":true},{"x":158,"y":797,"on":true},{"x":158,"y":607,"on":true},{"x":98,"y":607,"on":true},{"x":98,"y":742,"on":true},{"x":-157,"y":742,"on":true}] + ] + }, + "uni031B": { + "advanceWidth": 0, + "contours": [ + [{"x":-93,"y":614,"on":true},{"x":-1,"y":629,"on":false},{"x":-1,"y":760,"on":true},{"x":101,"y":760,"on":true},{"x":107,"y":749,"on":true},{"x":95,"y":658,"on":false},{"x":6,"y":556,"on":false},{"x":-93,"y":545,"on":true}] + ] + }, + "uni031C": { + "advanceWidth": 0, + "contours": [ + [{"x":58,"y":-232,"on":true},{"x":6,"y":-232,"on":false},{"x":-57,"y":-174,"on":false},{"x":-57,"y":-123,"on":true},{"x":-57,"y":-73,"on":false},{"x":6,"y":-16,"on":false},{"x":58,"y":-16,"on":true},{"x":58,"y":-70,"on":true},{"x":34,"y":-70,"on":false},{"x":3,"y":-98,"on":false},{"x":3,"y":-123,"on":true},{"x":3,"y":-177,"on":false},{"x":58,"y":-177,"on":true}] + ] + }, + "uni031D": { + "advanceWidth": 0, + "contours": [ + [{"x":30,"y":-48,"on":true},{"x":30,"y":-150,"on":true},{"x":94,"y":-150,"on":true},{"x":94,"y":-206,"on":true},{"x":-94,"y":-206,"on":true},{"x":-94,"y":-150,"on":true},{"x":-30,"y":-150,"on":true},{"x":-30,"y":-48,"on":true}] + ] + }, + "uni031E": { + "advanceWidth": 0, + "contours": [ + [{"x":-30,"y":-206,"on":true},{"x":-30,"y":-104,"on":true},{"x":-94,"y":-104,"on":true},{"x":-94,"y":-48,"on":true},{"x":94,"y":-48,"on":true},{"x":94,"y":-104,"on":true},{"x":30,"y":-104,"on":true},{"x":30,"y":-206,"on":true}] + ] + }, + "uni031F": { + "advanceWidth": 0, + "contours": [ + [{"x":-94,"y":-154,"on":true},{"x":-94,"y":-98,"on":true},{"x":-30,"y":-98,"on":true},{"x":-30,"y":-32,"on":true},{"x":30,"y":-32,"on":true},{"x":30,"y":-98,"on":true},{"x":95,"y":-98,"on":true},{"x":95,"y":-154,"on":true},{"x":30,"y":-154,"on":true},{"x":30,"y":-220,"on":true},{"x":-30,"y":-220,"on":true},{"x":-30,"y":-154,"on":true}] + ] + }, + "uni0320": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02D7","x":-136,"y":-424,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0321": { + "advanceWidth": 0, + "contours": [ + [{"x":-115,"y":-238,"on":true},{"x":-134,"y":-238,"on":false},{"x":-165,"y":-230,"on":false},{"x":-176,"y":-226,"on":true},{"x":-176,"y":-148,"on":true},{"x":-168,"y":-151,"on":false},{"x":-146,"y":-157,"on":false},{"x":-133,"y":-157,"on":true},{"x":-111,"y":-157,"on":false},{"x":-88,"y":-131,"on":false},{"x":-88,"y":-102,"on":true},{"x":-88,"y":44,"on":true},{"x":0,"y":44,"on":true},{"x":0,"y":-100,"on":true},{"x":0,"y":-238,"on":false}] + ] + }, + "uni0322": { + "advanceWidth": 0, + "contours": [ + [{"x":113,"y":-238,"on":true},{"x":59,"y":-238,"on":false},{"x":0,"y":-173,"on":false},{"x":0,"y":-104,"on":true},{"x":0,"y":44,"on":true},{"x":88,"y":44,"on":true},{"x":88,"y":-102,"on":true},{"x":88,"y":-131,"on":false},{"x":112,"y":-157,"on":false},{"x":133,"y":-157,"on":true},{"x":146,"y":-157,"on":false},{"x":169,"y":-151,"on":false},{"x":177,"y":-148,"on":true},{"x":177,"y":-226,"on":true},{"x":165,"y":-230,"on":false},{"x":132,"y":-238,"on":false}] + ] + }, + "dotbelowcomb": { + "advanceWidth": 0, + "contours": [ + [{"x":-296,"y":-187,"on":true},{"x":-322,"y":-187,"on":false},{"x":-355,"y":-158,"on":false},{"x":-355,"y":-126,"on":true},{"x":-355,"y":-94,"on":false},{"x":-322,"y":-64,"on":false},{"x":-296,"y":-64,"on":true},{"x":-270,"y":-64,"on":false},{"x":-238,"y":-94,"on":false},{"x":-238,"y":-126,"on":true},{"x":-238,"y":-158,"on":false},{"x":-271,"y":-187,"on":false}] + ] + }, + "uni0324": { + "advanceWidth": 0, + "references": [ + {"glyph":"dieresis","x":-280,"y":-808,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0325": { + "advanceWidth": 0, + "references": [ + {"glyph":"ring","x":-150,"y":-830,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0326": { + "advanceWidth": 0, + "references": [ + {"glyph":"glyph2833","x":-237,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0327": { + "advanceWidth": 0, + "references": [ + {"glyph":"cedilla","x":-101,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0328": { + "advanceWidth": 0, + "references": [ + {"glyph":"ogonek","x":-127,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0329": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni030D","x":0,"y":-804,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni032A": { + "advanceWidth": 0, + "contours": [ + [{"x":-160,"y":-48,"on":true},{"x":159,"y":-48,"on":true},{"x":159,"y":-212,"on":true},{"x":100,"y":-212,"on":true},{"x":100,"y":-104,"on":true},{"x":-100,"y":-104,"on":true},{"x":-100,"y":-212,"on":true},{"x":-160,"y":-212,"on":true}] + ] + }, + "uni032B": { + "advanceWidth": 0, + "contours": [ + [{"x":170,"y":-61,"on":true},{"x":170,"y":-120,"on":false},{"x":114,"y":-175,"on":false},{"x":71,"y":-175,"on":true},{"x":46,"y":-175,"on":false},{"x":11,"y":-155,"on":false},{"x":0,"y":-138,"on":true},{"x":-24,"y":-175,"on":false},{"x":-72,"y":-175,"on":true},{"x":-115,"y":-175,"on":false},{"x":-170,"y":-120,"on":false},{"x":-170,"y":-61,"on":true},{"x":-120,"y":-61,"on":true},{"x":-120,"y":-127,"on":false},{"x":-72,"y":-127,"on":true},{"x":-50,"y":-127,"on":false},{"x":-23,"y":-95,"on":false},{"x":-23,"y":-61,"on":true},{"x":22,"y":-61,"on":true},{"x":22,"y":-127,"on":false},{"x":71,"y":-127,"on":true},{"x":94,"y":-127,"on":false},{"x":121,"y":-95,"on":false},{"x":121,"y":-61,"on":true}] + ] + }, + "uni032C": { + "advanceWidth": 0, + "references": [ + {"glyph":"caron","x":-205,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni032D": { + "advanceWidth": 0, + "references": [ + {"glyph":"circumflex","x":-206,"y":-806,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni032E": { + "advanceWidth": 0, + "references": [ + {"glyph":"breve","x":-193,"y":-803,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni032F": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0311","x":0,"y":-805,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0330": { + "advanceWidth": 0, + "references": [ + {"glyph":"tilde","x":-216,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0331": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02C9","x":-183,"y":-768,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0332": { + "advanceWidth": 0, + "contours": [ + [{"x":227,"y":-154,"on":true},{"x":-226,"y":-154,"on":true},{"x":-226,"y":-86,"on":true},{"x":227,"y":-86,"on":true}] + ] + }, + "uni0333": { + "advanceWidth": 0, + "references": [ + {"glyph":"underscoredbl","x":-212,"y":-2,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0334": { + "advanceWidth": 0, + "references": [ + {"glyph":"tilde","x":-213,"y":-395,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0335": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0305","x":0,"y":-518,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0336": { + "advanceWidth": 0, + "contours": [ + [{"x":-328,"y":240,"on":true},{"x":-328,"y":319,"on":true},{"x":328,"y":319,"on":true},{"x":328,"y":240,"on":true}] + ] + }, + "uni0337": { + "advanceWidth": 0, + "contours": [ + [{"x":-148,"y":232,"on":true},{"x":106,"y":402,"on":true},{"x":148,"y":338,"on":true},{"x":-106,"y":168,"on":true}] + ] + }, + "uni0338": { + "advanceWidth": 0, + "contours": [ + [{"x":181,"y":759,"on":true},{"x":-106,"y":-58,"on":true},{"x":-181,"y":-58,"on":true},{"x":106,"y":759,"on":true}] + ] + }, + "uni0339": { + "advanceWidth": 0, + "contours": [ + [{"x":-57,"y":-16,"on":true},{"x":-5,"y":-16,"on":false},{"x":58,"y":-73,"on":false},{"x":58,"y":-124,"on":true},{"x":58,"y":-174,"on":false},{"x":-5,"y":-232,"on":false},{"x":-57,"y":-232,"on":true},{"x":-57,"y":-177,"on":true},{"x":-32,"y":-177,"on":false},{"x":-2,"y":-150,"on":false},{"x":-2,"y":-124,"on":true},{"x":-2,"y":-98,"on":false},{"x":-32,"y":-70,"on":false},{"x":-57,"y":-70,"on":true}] + ] + }, + "uni033A": { + "advanceWidth": 0, + "contours": [ + [{"x":160,"y":-212,"on":true},{"x":-160,"y":-212,"on":true},{"x":-160,"y":-48,"on":true},{"x":-100,"y":-48,"on":true},{"x":-100,"y":-156,"on":true},{"x":100,"y":-156,"on":true},{"x":100,"y":-48,"on":true},{"x":160,"y":-48,"on":true}] + ] + }, + "uni033B": { + "advanceWidth": 0, + "contours": [ + [{"x":175,"y":-228,"on":true},{"x":-175,"y":-228,"on":true},{"x":-175,"y":-28,"on":true},{"x":175,"y":-28,"on":true}], + [{"x":-122,"y":-177,"on":true},{"x":122,"y":-177,"on":true},{"x":122,"y":-79,"on":true},{"x":-122,"y":-79,"on":true}] + ] + }, + "uni033C": { + "advanceWidth": 0, + "contours": [ + [{"x":-170,"y":-175,"on":true},{"x":-170,"y":-116,"on":false},{"x":-114,"y":-61,"on":false},{"x":-71,"y":-61,"on":true},{"x":-46,"y":-61,"on":false},{"x":-10,"y":-81,"on":false},{"x":1,"y":-98,"on":true},{"x":24,"y":-61,"on":false},{"x":72,"y":-61,"on":true},{"x":116,"y":-61,"on":false},{"x":170,"y":-116,"on":false},{"x":170,"y":-175,"on":true},{"x":120,"y":-175,"on":true},{"x":120,"y":-109,"on":false},{"x":72,"y":-109,"on":true},{"x":50,"y":-109,"on":false},{"x":23,"y":-141,"on":false},{"x":23,"y":-175,"on":true},{"x":-22,"y":-175,"on":true},{"x":-22,"y":-109,"on":false},{"x":-71,"y":-109,"on":true},{"x":-94,"y":-109,"on":false},{"x":-120,"y":-141,"on":false},{"x":-120,"y":-175,"on":true}] + ] + }, + "uni033D": { + "advanceWidth": 0, + "contours": [ + [{"x":-100,"y":732,"on":true},{"x":-60,"y":773,"on":true},{"x":0,"y":713,"on":true},{"x":59,"y":773,"on":true},{"x":100,"y":732,"on":true},{"x":40,"y":673,"on":true},{"x":100,"y":613,"on":true},{"x":59,"y":573,"on":true},{"x":0,"y":632,"on":true},{"x":-60,"y":573,"on":true},{"x":-100,"y":613,"on":true},{"x":-41,"y":673,"on":true}] + ] + }, + "uni033E": { + "advanceWidth": 0, + "contours": [ + [{"x":-62,"y":784,"on":true},{"x":-62,"y":819,"on":false},{"x":-1,"y":864,"on":false},{"x":54,"y":866,"on":true},{"x":54,"y":819,"on":true},{"x":26,"y":818,"on":false},{"x":1,"y":796,"on":false},{"x":1,"y":780,"on":true},{"x":1,"y":765,"on":false},{"x":28,"y":730,"on":false},{"x":54,"y":686,"on":false},{"x":54,"y":660,"on":true},{"x":54,"y":624,"on":false},{"x":-6,"y":578,"on":false},{"x":-61,"y":576,"on":true},{"x":-61,"y":623,"on":true},{"x":-34,"y":624,"on":false},{"x":-8,"y":647,"on":false},{"x":-8,"y":662,"on":true},{"x":-8,"y":680,"on":false},{"x":-35,"y":716,"on":false},{"x":-62,"y":758,"on":false}] + ] + }, + "uni033F": { + "advanceWidth": 0, + "references": [ + {"glyph":"underscoredbl","x":-213,"y":981,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0340": { + "advanceWidth": 0, + "references": [ + {"glyph":"grave","x":-222,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0341": { + "advanceWidth": 0, + "references": [ + {"glyph":"acute","x":-67,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0342": { + "advanceWidth": 0, + "references": [ + {"glyph":"tilde","x":-216,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0343": { + "advanceWidth": 0, + "references": [ + {"glyph":"glyph2792","x":-251,"y":-46,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0344": { + "advanceWidth": 0, + "references": [ + {"glyph":"dieresistonos","x":-549,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0345": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni1FBE","x":-284,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0346": { + "advanceWidth": 0, + "contours": [ + [{"x":-185,"y":758,"on":true},{"x":185,"y":758,"on":true},{"x":185,"y":594,"on":true},{"x":125,"y":594,"on":true},{"x":125,"y":702,"on":true},{"x":-126,"y":702,"on":true},{"x":-126,"y":594,"on":true},{"x":-185,"y":594,"on":true}] + ] + }, + "uni0347": { + "advanceWidth": 0, + "references": [ + {"glyph":"underscoredbl","x":-213,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0348": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni030E","x":0,"y":-804,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0349": { + "advanceWidth": 0, + "contours": [ + [{"x":-84,"y":-62,"on":true},{"x":84,"y":-62,"on":true},{"x":84,"y":-236,"on":true},{"x":24,"y":-236,"on":true},{"x":24,"y":-118,"on":true},{"x":-84,"y":-118,"on":true}] + ] + }, + "uni034A": { + "advanceWidth": 0, + "contours": [ + [{"x":68,"y":607,"on":true},{"x":52,"y":607,"on":false},{"x":19,"y":620,"on":false},{"x":4,"y":629,"on":true},{"x":-32,"y":567,"on":true},{"x":-75,"y":592,"on":true},{"x":-39,"y":654,"on":true},{"x":-47,"y":658,"on":false},{"x":-62,"y":665,"on":false},{"x":-70,"y":665,"on":true},{"x":-91,"y":665,"on":false},{"x":-112,"y":635,"on":false},{"x":-118,"y":606,"on":true},{"x":-169,"y":606,"on":true},{"x":-164,"y":661,"on":false},{"x":-113,"y":729,"on":false},{"x":-68,"y":729,"on":true},{"x":-52,"y":729,"on":false},{"x":-20,"y":718,"on":false},{"x":-7,"y":710,"on":true},{"x":27,"y":768,"on":true},{"x":70,"y":743,"on":true},{"x":36,"y":683,"on":true},{"x":45,"y":678,"on":false},{"x":63,"y":671,"on":false},{"x":71,"y":671,"on":true},{"x":91,"y":671,"on":false},{"x":112,"y":701,"on":false},{"x":117,"y":729,"on":true},{"x":168,"y":729,"on":true},{"x":163,"y":675,"on":false},{"x":113,"y":607,"on":false}] + ] + }, + "uni034B": { + "advanceWidth": 0, + "contours": [ + [{"x":0,"y":929,"on":true},{"x":20,"y":929,"on":false},{"x":47,"y":903,"on":false},{"x":47,"y":877,"on":true},{"x":47,"y":852,"on":false},{"x":20,"y":825,"on":false},{"x":0,"y":825,"on":true},{"x":-20,"y":825,"on":false},{"x":-45,"y":851,"on":false},{"x":-45,"y":877,"on":true},{"x":-45,"y":904,"on":false},{"x":-20,"y":929,"on":false}], + [{"x":168,"y":812,"on":true},{"x":164,"y":755,"on":false},{"x":112,"y":689,"on":false},{"x":69,"y":689,"on":true},{"x":43,"y":689,"on":false},{"x":-6,"y":716,"on":false},{"x":-52,"y":743,"on":false},{"x":-71,"y":743,"on":true},{"x":-106,"y":743,"on":false},{"x":-116,"y":688,"on":true},{"x":-169,"y":688,"on":true},{"x":-164,"y":745,"on":false},{"x":-112,"y":811,"on":false},{"x":-68,"y":811,"on":true},{"x":-41,"y":811,"on":false},{"x":8,"y":784,"on":false},{"x":52,"y":757,"on":false},{"x":71,"y":757,"on":true},{"x":105,"y":757,"on":false},{"x":116,"y":812,"on":true}], + [{"x":0,"y":675,"on":true},{"x":20,"y":675,"on":false},{"x":47,"y":650,"on":false},{"x":47,"y":623,"on":true},{"x":47,"y":598,"on":false},{"x":20,"y":572,"on":false},{"x":0,"y":572,"on":true},{"x":-20,"y":572,"on":false},{"x":-46,"y":598,"on":false},{"x":-46,"y":623,"on":true},{"x":-46,"y":650,"on":false},{"x":-20,"y":675,"on":false}] + ] + }, + "uni034C": { + "advanceWidth": 0, + "contours": [ + [{"x":65,"y":746,"on":true},{"x":40,"y":746,"on":false},{"x":-6,"y":770,"on":false},{"x":-48,"y":793,"on":false},{"x":-65,"y":793,"on":true},{"x":-84,"y":793,"on":false},{"x":-102,"y":769,"on":false},{"x":-106,"y":745,"on":true},{"x":-157,"y":745,"on":true},{"x":-152,"y":795,"on":false},{"x":-108,"y":855,"on":false},{"x":-65,"y":855,"on":true},{"x":-38,"y":855,"on":false},{"x":8,"y":832,"on":false},{"x":49,"y":808,"on":false},{"x":67,"y":808,"on":true},{"x":86,"y":808,"on":false},{"x":102,"y":833,"on":false},{"x":106,"y":856,"on":true},{"x":156,"y":856,"on":true},{"x":152,"y":806,"on":false},{"x":108,"y":746,"on":false}], + [{"x":65,"y":610,"on":true},{"x":40,"y":610,"on":false},{"x":-6,"y":634,"on":false},{"x":-48,"y":657,"on":false},{"x":-65,"y":657,"on":true},{"x":-84,"y":657,"on":false},{"x":-102,"y":634,"on":false},{"x":-106,"y":610,"on":true},{"x":-157,"y":610,"on":true},{"x":-152,"y":660,"on":false},{"x":-108,"y":720,"on":false},{"x":-65,"y":720,"on":true},{"x":-38,"y":720,"on":false},{"x":8,"y":696,"on":false},{"x":49,"y":673,"on":false},{"x":67,"y":673,"on":true},{"x":86,"y":673,"on":false},{"x":102,"y":697,"on":false},{"x":106,"y":720,"on":true},{"x":156,"y":720,"on":true},{"x":152,"y":670,"on":false},{"x":108,"y":610,"on":false}] + ] + }, + "uni034D": { + "advanceWidth": 0, + "contours": [ + [{"x":-155,"y":-127,"on":true},{"x":-45,"y":-40,"on":true},{"x":-45,"y":-100,"on":true},{"x":45,"y":-100,"on":true},{"x":45,"y":-40,"on":true},{"x":155,"y":-127,"on":true},{"x":45,"y":-214,"on":true},{"x":45,"y":-154,"on":true},{"x":-45,"y":-154,"on":true},{"x":-45,"y":-214,"on":true}] + ] + }, + "uni034E": { + "advanceWidth": 0, + "contours": [ + [{"x":-29,"y":-237,"on":true},{"x":-29,"y":-121,"on":true},{"x":-81,"y":-121,"on":true},{"x":1,"y":-28,"on":true},{"x":82,"y":-121,"on":true},{"x":30,"y":-121,"on":true},{"x":30,"y":-237,"on":true}] + ] + }, + "uni034F": { + "advanceWidth": 0, + "contours": [ + [{"x":-357,"y":558,"on":true},{"x":-357,"y":714,"on":true},{"x":-201,"y":714,"on":true},{"x":-201,"y":660,"on":true},{"x":-303,"y":660,"on":true},{"x":-303,"y":558,"on":true}], + [{"x":304,"y":558,"on":true},{"x":304,"y":660,"on":true},{"x":201,"y":660,"on":true},{"x":201,"y":714,"on":true},{"x":357,"y":714,"on":true},{"x":357,"y":558,"on":true}], + [{"x":-79,"y":660,"on":true},{"x":-79,"y":714,"on":true},{"x":79,"y":714,"on":true},{"x":79,"y":660,"on":true}], + [{"x":0,"y":548,"on":true},{"x":-27,"y":548,"on":false},{"x":-27,"y":575,"on":true},{"x":-27,"y":602,"on":false},{"x":0,"y":602,"on":true},{"x":27,"y":602,"on":false},{"x":27,"y":575,"on":true},{"x":27,"y":548,"on":false}], + [{"x":86,"y":532,"on":true},{"x":59,"y":532,"on":false},{"x":59,"y":559,"on":true},{"x":59,"y":586,"on":false},{"x":86,"y":586,"on":true},{"x":113,"y":586,"on":false},{"x":113,"y":559,"on":true},{"x":113,"y":532,"on":false}], + [{"x":-86,"y":532,"on":true},{"x":-113,"y":532,"on":false},{"x":-113,"y":559,"on":true},{"x":-113,"y":586,"on":false},{"x":-86,"y":586,"on":true},{"x":-59,"y":586,"on":false},{"x":-59,"y":559,"on":true},{"x":-59,"y":532,"on":false}], + [{"x":157,"y":486,"on":true},{"x":130,"y":486,"on":false},{"x":130,"y":513,"on":true},{"x":130,"y":540,"on":false},{"x":157,"y":540,"on":true},{"x":184,"y":540,"on":false},{"x":184,"y":513,"on":true},{"x":184,"y":486,"on":false}], + [{"x":-157,"y":486,"on":true},{"x":-184,"y":486,"on":false},{"x":-184,"y":513,"on":true},{"x":-184,"y":540,"on":false},{"x":-157,"y":540,"on":true},{"x":-130,"y":540,"on":false},{"x":-130,"y":513,"on":true},{"x":-130,"y":486,"on":false}], + [{"x":204,"y":416,"on":true},{"x":177,"y":416,"on":false},{"x":177,"y":443,"on":true},{"x":177,"y":470,"on":false},{"x":204,"y":470,"on":true},{"x":231,"y":470,"on":false},{"x":231,"y":443,"on":true},{"x":231,"y":416,"on":false}], + [{"x":-200,"y":416,"on":true},{"x":-227,"y":416,"on":false},{"x":-227,"y":443,"on":true},{"x":-227,"y":470,"on":false},{"x":-200,"y":470,"on":true},{"x":-173,"y":470,"on":false},{"x":-173,"y":443,"on":true},{"x":-173,"y":416,"on":false}], + [{"x":-357,"y":279,"on":true},{"x":-357,"y":436,"on":true},{"x":-303,"y":436,"on":true},{"x":-303,"y":279,"on":true}], + [{"x":304,"y":279,"on":true},{"x":304,"y":436,"on":true},{"x":357,"y":436,"on":true},{"x":357,"y":279,"on":true}], + [{"x":-218,"y":330,"on":true},{"x":-245,"y":330,"on":false},{"x":-245,"y":357,"on":true},{"x":-245,"y":384,"on":false},{"x":-218,"y":384,"on":true},{"x":-191,"y":384,"on":false},{"x":-191,"y":357,"on":true},{"x":-191,"y":330,"on":false}], + [{"x":223,"y":330,"on":true},{"x":196,"y":330,"on":false},{"x":196,"y":357,"on":true},{"x":196,"y":384,"on":false},{"x":223,"y":384,"on":true},{"x":250,"y":384,"on":false},{"x":250,"y":357,"on":true},{"x":250,"y":330,"on":false}], + [{"x":-200,"y":244,"on":true},{"x":-227,"y":244,"on":false},{"x":-227,"y":271,"on":true},{"x":-227,"y":298,"on":false},{"x":-200,"y":298,"on":true},{"x":-173,"y":298,"on":false},{"x":-173,"y":271,"on":true},{"x":-173,"y":244,"on":false}], + [{"x":204,"y":244,"on":true},{"x":177,"y":244,"on":false},{"x":177,"y":271,"on":true},{"x":177,"y":298,"on":false},{"x":204,"y":298,"on":true},{"x":231,"y":298,"on":false},{"x":231,"y":271,"on":true},{"x":231,"y":244,"on":false}], + [{"x":-157,"y":174,"on":true},{"x":-184,"y":174,"on":false},{"x":-184,"y":201,"on":true},{"x":-184,"y":228,"on":false},{"x":-157,"y":228,"on":true},{"x":-130,"y":228,"on":false},{"x":-130,"y":201,"on":true},{"x":-130,"y":174,"on":false}], + [{"x":157,"y":174,"on":true},{"x":130,"y":174,"on":false},{"x":130,"y":201,"on":true},{"x":130,"y":228,"on":false},{"x":157,"y":228,"on":true},{"x":184,"y":228,"on":false},{"x":184,"y":201,"on":true},{"x":184,"y":174,"on":false}], + [{"x":86,"y":128,"on":true},{"x":59,"y":128,"on":false},{"x":59,"y":155,"on":true},{"x":59,"y":182,"on":false},{"x":86,"y":182,"on":true},{"x":113,"y":182,"on":false},{"x":113,"y":155,"on":true},{"x":113,"y":128,"on":false}], + [{"x":-86,"y":128,"on":true},{"x":-113,"y":128,"on":false},{"x":-113,"y":155,"on":true},{"x":-113,"y":182,"on":false},{"x":-86,"y":182,"on":true},{"x":-59,"y":182,"on":false},{"x":-59,"y":155,"on":true},{"x":-59,"y":128,"on":false}], + [{"x":0,"y":112,"on":true},{"x":-27,"y":112,"on":false},{"x":-27,"y":139,"on":true},{"x":-27,"y":166,"on":false},{"x":0,"y":166,"on":true},{"x":27,"y":166,"on":false},{"x":27,"y":139,"on":true},{"x":27,"y":112,"on":false}], + [{"x":201,"y":0,"on":true},{"x":201,"y":54,"on":true},{"x":304,"y":54,"on":true},{"x":304,"y":157,"on":true},{"x":357,"y":157,"on":true},{"x":357,"y":0,"on":true}], + [{"x":-357,"y":0,"on":true},{"x":-357,"y":157,"on":true},{"x":-303,"y":157,"on":true},{"x":-303,"y":54,"on":true},{"x":-201,"y":54,"on":true},{"x":-201,"y":0,"on":true}], + [{"x":-79,"y":0,"on":true},{"x":-79,"y":54,"on":true},{"x":79,"y":54,"on":true},{"x":79,"y":0,"on":true}] + ] + }, + "uni0350": { + "advanceWidth": 0, + "contours": [ + [{"x":-65,"y":792,"on":true},{"x":-48,"y":781,"on":false},{"x":1,"y":753,"on":false},{"x":52,"y":728,"on":false},{"x":72,"y":720,"on":true},{"x":72,"y":660,"on":true},{"x":41,"y":650,"on":false},{"x":-37,"y":609,"on":false},{"x":-65,"y":590,"on":true},{"x":-74,"y":590,"on":true},{"x":-74,"y":637,"on":true},{"x":-58,"y":650,"on":false},{"x":-16,"y":677,"on":false},{"x":9,"y":691,"on":true},{"x":-41,"y":720,"on":false},{"x":-74,"y":746,"on":true},{"x":-74,"y":792,"on":true}] + ] + }, + "uni0351": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02BF","x":-79,"y":16,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0352": { + "advanceWidth": 0, + "contours": [ + [{"x":-151,"y":690,"on":true},{"x":-146,"y":755,"on":false},{"x":-68,"y":834,"on":false},{"x":2,"y":834,"on":true},{"x":74,"y":834,"on":false},{"x":147,"y":757,"on":false},{"x":151,"y":690,"on":true},{"x":94,"y":690,"on":true},{"x":90,"y":732,"on":false},{"x":40,"y":765,"on":false},{"x":0,"y":765,"on":true},{"x":-38,"y":765,"on":false},{"x":-88,"y":730,"on":false},{"x":-93,"y":690,"on":true}], + [{"x":1,"y":606,"on":true},{"x":-21,"y":606,"on":false},{"x":-49,"y":634,"on":false},{"x":-49,"y":662,"on":true},{"x":-49,"y":690,"on":false},{"x":-21,"y":718,"on":false},{"x":1,"y":718,"on":true},{"x":22,"y":718,"on":false},{"x":50,"y":690,"on":false},{"x":50,"y":662,"on":true},{"x":50,"y":634,"on":false},{"x":22,"y":606,"on":false}] + ] + }, + "uni0353": { + "advanceWidth": 0, + "contours": [ + [{"x":-88,"y":-78,"on":true},{"x":-50,"y":-40,"on":true},{"x":-1,"y":-88,"on":true},{"x":46,"y":-41,"on":true},{"x":86,"y":-82,"on":true},{"x":39,"y":-129,"on":true},{"x":87,"y":-178,"on":true},{"x":49,"y":-215,"on":true},{"x":1,"y":-167,"on":true},{"x":-46,"y":-214,"on":true},{"x":-87,"y":-174,"on":true},{"x":-40,"y":-126,"on":true}] + ] + }, + "uni0354": { + "advanceWidth": 0, + "contours": [ + [{"x":63,"y":-240,"on":true},{"x":46,"y":-230,"on":false},{"x":-3,"y":-202,"on":false},{"x":-54,"y":-176,"on":false},{"x":-74,"y":-169,"on":true},{"x":-74,"y":-109,"on":true},{"x":-43,"y":-99,"on":false},{"x":34,"y":-59,"on":false},{"x":63,"y":-40,"on":true},{"x":72,"y":-40,"on":true},{"x":72,"y":-87,"on":true},{"x":56,"y":-100,"on":false},{"x":14,"y":-126,"on":false},{"x":-11,"y":-140,"on":true},{"x":14,"y":-154,"on":false},{"x":54,"y":-180,"on":false},{"x":72,"y":-194,"on":true},{"x":72,"y":-240,"on":true}] + ] + }, + "uni0355": { + "advanceWidth": 0, + "contours": [ + [{"x":-65,"y":-40,"on":true},{"x":-39,"y":-56,"on":false},{"x":40,"y":-99,"on":false},{"x":72,"y":-110,"on":true},{"x":72,"y":-171,"on":true},{"x":41,"y":-181,"on":false},{"x":-37,"y":-221,"on":false},{"x":-65,"y":-240,"on":true},{"x":-75,"y":-240,"on":true},{"x":-75,"y":-193,"on":true},{"x":-58,"y":-180,"on":false},{"x":-16,"y":-154,"on":false},{"x":9,"y":-140,"on":true},{"x":-16,"y":-126,"on":false},{"x":-56,"y":-100,"on":false},{"x":-75,"y":-86,"on":true},{"x":-75,"y":-40,"on":true}] + ] + }, + "uni0356": { + "advanceWidth": 0, + "contours": [ + [{"x":-157,"y":-40,"on":true},{"x":-140,"y":-50,"on":false},{"x":-92,"y":-78,"on":false},{"x":-41,"y":-102,"on":false},{"x":-20,"y":-110,"on":true},{"x":-20,"y":-171,"on":true},{"x":-52,"y":-181,"on":false},{"x":-129,"y":-221,"on":false},{"x":-157,"y":-240,"on":true},{"x":-167,"y":-240,"on":true},{"x":-167,"y":-193,"on":true},{"x":-150,"y":-180,"on":false},{"x":-108,"y":-154,"on":false},{"x":-84,"y":-140,"on":true},{"x":-131,"y":-113,"on":false},{"x":-167,"y":-86,"on":true},{"x":-167,"y":-40,"on":true}], + [{"x":-11,"y":-223,"on":true},{"x":-2,"y":-204,"on":false},{"x":23,"y":-141,"on":false},{"x":46,"y":-76,"on":false},{"x":52,"y":-53,"on":true},{"x":114,"y":-53,"on":true},{"x":120,"y":-76,"on":false},{"x":140,"y":-138,"on":false},{"x":164,"y":-201,"on":false},{"x":175,"y":-223,"on":true},{"x":175,"y":-235,"on":true},{"x":128,"y":-235,"on":true},{"x":116,"y":-215,"on":false},{"x":91,"y":-151,"on":false},{"x":81,"y":-123,"on":true},{"x":70,"y":-152,"on":false},{"x":47,"y":-214,"on":false},{"x":35,"y":-235,"on":true},{"x":-11,"y":-235,"on":true}] + ] + }, + "uni0357": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02BE","x":-78,"y":16,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0358": { + "advanceWidth": 0, + "references": [ + {"glyph":"dotaccent","x":74,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0359": { + "advanceWidth": 0, + "contours": [ + [{"x":-33,"y":-42,"on":true},{"x":33,"y":-42,"on":true},{"x":21,"y":-110,"on":true},{"x":81,"y":-77,"on":true},{"x":102,"y":-140,"on":true},{"x":34,"y":-150,"on":true},{"x":84,"y":-196,"on":true},{"x":30,"y":-236,"on":true},{"x":0,"y":-174,"on":true},{"x":-30,"y":-236,"on":true},{"x":-84,"y":-196,"on":true},{"x":-34,"y":-150,"on":true},{"x":-103,"y":-140,"on":true},{"x":-81,"y":-77,"on":true},{"x":-21,"y":-110,"on":true}] + ] + }, + "uni035A": { + "advanceWidth": 0, + "contours": [ + [{"x":-80,"y":-30,"on":true},{"x":-25,"y":-30,"on":false},{"x":0,"y":-70,"on":true},{"x":25,"y":-30,"on":false},{"x":79,"y":-30,"on":true},{"x":126,"y":-30,"on":false},{"x":183,"y":-85,"on":false},{"x":183,"y":-134,"on":true},{"x":183,"y":-184,"on":false},{"x":126,"y":-240,"on":false},{"x":79,"y":-240,"on":true},{"x":24,"y":-240,"on":false},{"x":0,"y":-199,"on":true},{"x":-26,"y":-240,"on":false},{"x":-80,"y":-240,"on":true},{"x":-126,"y":-240,"on":false},{"x":-183,"y":-184,"on":false},{"x":-183,"y":-134,"on":true},{"x":-183,"y":-85,"on":false},{"x":-126,"y":-30,"on":false}], + [{"x":24,"y":-134,"on":true},{"x":24,"y":-162,"on":false},{"x":54,"y":-193,"on":false},{"x":79,"y":-193,"on":true},{"x":105,"y":-193,"on":false},{"x":134,"y":-162,"on":false},{"x":134,"y":-134,"on":true},{"x":134,"y":-107,"on":false},{"x":102,"y":-75,"on":false},{"x":79,"y":-75,"on":true},{"x":55,"y":-75,"on":false},{"x":24,"y":-107,"on":false}], + [{"x":-24,"y":-134,"on":true},{"x":-24,"y":-107,"on":false},{"x":-56,"y":-75,"on":false},{"x":-79,"y":-75,"on":true},{"x":-103,"y":-75,"on":false},{"x":-134,"y":-107,"on":false},{"x":-134,"y":-134,"on":true},{"x":-134,"y":-162,"on":false},{"x":-105,"y":-193,"on":false},{"x":-79,"y":-193,"on":true},{"x":-55,"y":-193,"on":false},{"x":-24,"y":-162,"on":false}] + ] + }, + "uni035B": { + "advanceWidth": 0, + "contours": [ + [{"x":92,"y":714,"on":true},{"x":61,"y":593,"on":true},{"x":11,"y":593,"on":true},{"x":28,"y":663,"on":true},{"x":-92,"y":663,"on":true},{"x":-61,"y":784,"on":true},{"x":-11,"y":784,"on":true},{"x":-28,"y":714,"on":true}] + ] + }, + "uni035C": { + "advanceWidth": 0, + "contours": [ + [{"x":3,"y":-233,"on":true},{"x":-132,"y":-233,"on":false},{"x":-313,"y":-136,"on":false},{"x":-350,"y":-42,"on":true},{"x":-276,"y":-42,"on":true},{"x":-243,"y":-93,"on":false},{"x":-106,"y":-153,"on":false},{"x":3,"y":-153,"on":true},{"x":97,"y":-153,"on":false},{"x":238,"y":-100,"on":false},{"x":276,"y":-42,"on":true},{"x":351,"y":-42,"on":true},{"x":305,"y":-143,"on":false},{"x":123,"y":-233,"on":false}] + ] + }, + "uni035D": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni035C","x":0,"y":820,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni035E": { + "advanceWidth": 0, + "contours": [ + [{"x":270,"y":619,"on":true},{"x":-270,"y":619,"on":true},{"x":-270,"y":673,"on":true},{"x":270,"y":673,"on":true}] + ] + }, + "uni035F": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni035E","x":0,"y":-750,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0360": { + "advanceWidth": 0, + "contours": [ + [{"x":351,"y":742,"on":true},{"x":342,"y":672,"on":false},{"x":254,"y":608,"on":false},{"x":188,"y":608,"on":true},{"x":136,"y":608,"on":false},{"x":42,"y":626,"on":false},{"x":-49,"y":649,"on":false},{"x":-142,"y":667,"on":false},{"x":-193,"y":667,"on":true},{"x":-240,"y":667,"on":false},{"x":-287,"y":635,"on":false},{"x":-293,"y":607,"on":true},{"x":-350,"y":607,"on":true},{"x":-341,"y":678,"on":false},{"x":-253,"y":741,"on":false},{"x":-188,"y":741,"on":true},{"x":-136,"y":741,"on":false},{"x":-41,"y":723,"on":false},{"x":50,"y":701,"on":false},{"x":143,"y":683,"on":false},{"x":195,"y":683,"on":true},{"x":242,"y":683,"on":false},{"x":288,"y":715,"on":false},{"x":294,"y":742,"on":true}] + ] + }, + "uni0361": { + "advanceWidth": 0, + "contours": [ + [{"x":-3,"y":859,"on":true},{"x":132,"y":859,"on":false},{"x":313,"y":763,"on":false},{"x":350,"y":669,"on":true},{"x":276,"y":669,"on":true},{"x":244,"y":720,"on":false},{"x":107,"y":780,"on":false},{"x":-2,"y":780,"on":true},{"x":-96,"y":780,"on":false},{"x":-238,"y":726,"on":false},{"x":-276,"y":669,"on":true},{"x":-350,"y":669,"on":true},{"x":-304,"y":770,"on":false},{"x":-122,"y":859,"on":false}] + ] + }, + "uni0362": { + "advanceWidth": 0, + "contours": [ + [{"x":-329,"y":-97,"on":true},{"x":253,"y":-97,"on":true},{"x":253,"y":-34,"on":true},{"x":370,"y":-127,"on":true},{"x":253,"y":-219,"on":true},{"x":253,"y":-157,"on":true},{"x":-329,"y":-157,"on":true}] + ] + }, + "uni0363": { + "advanceWidth": 0, + "references": [ + {"glyph":"a","x":-107,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni0364": { + "advanceWidth": 0, + "references": [ + {"glyph":"e","x":-107,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni0365": { + "advanceWidth": 0, + "references": [ + {"glyph":"i","x":-47,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni0366": { + "advanceWidth": 0, + "references": [ + {"glyph":"o","x":-114,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni0367": { + "advanceWidth": 0, + "references": [ + {"glyph":"u","x":-119,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni0368": { + "advanceWidth": 0, + "references": [ + {"glyph":"c","x":-90,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni0369": { + "advanceWidth": 0, + "references": [ + {"glyph":"d","x":-117,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni036A": { + "advanceWidth": 0, + "references": [ + {"glyph":"h","x":-119,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni036B": { + "advanceWidth": 0, + "references": [ + {"glyph":"m","x":-183,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni036C": { + "advanceWidth": 0, + "references": [ + {"glyph":"r","x":-77,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni036D": { + "advanceWidth": 0, + "references": [ + {"glyph":"t","x":-67,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni036E": { + "advanceWidth": 0, + "references": [ + {"glyph":"v","x":-97,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni036F": { + "advanceWidth": 0, + "references": [ + {"glyph":"x","x":-100,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni0370": { + "advanceWidth": 420, + "contours": [ + [{"x":384,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":384,"y":418,"on":true}] + ] + }, + "uni0371": { + "advanceWidth": 367, + "contours": [ + [{"x":178,"y":540,"on":true},{"x":178,"y":320,"on":true},{"x":333,"y":320,"on":true},{"x":333,"y":239,"on":true},{"x":178,"y":239,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true}] + ] + }, + "uni0372": { + "advanceWidth": 577, + "contours": [ + [{"x":341,"y":0,"on":true},{"x":236,"y":0,"on":true},{"x":236,"y":623,"on":true},{"x":110,"y":623,"on":true},{"x":110,"y":406,"on":true},{"x":21,"y":406,"on":true},{"x":21,"y":714,"on":true},{"x":555,"y":714,"on":true},{"x":555,"y":406,"on":true},{"x":466,"y":406,"on":true},{"x":466,"y":623,"on":true},{"x":341,"y":623,"on":true}] + ] + }, + "uni0373": { + "advanceWidth": 509, + "contours": [ + [{"x":307,"y":0,"on":true},{"x":203,"y":0,"on":true},{"x":203,"y":678,"on":true},{"x":104,"y":678,"on":true},{"x":104,"y":510,"on":true},{"x":19,"y":510,"on":true},{"x":19,"y":762,"on":true},{"x":490,"y":762,"on":true},{"x":490,"y":510,"on":true},{"x":405,"y":510,"on":true},{"x":405,"y":678,"on":true},{"x":307,"y":678,"on":true}] + ] + }, + "uni0374": { + "advanceWidth": 219, + "contours": [ + [{"x":22,"y":566,"on":true},{"x":42,"y":599,"on":false},{"x":79,"y":680,"on":false},{"x":90,"y":714,"on":true},{"x":197,"y":714,"on":true},{"x":197,"y":704,"on":true},{"x":176,"y":666,"on":false},{"x":113,"y":582,"on":false},{"x":81,"y":554,"on":true},{"x":22,"y":554,"on":true}] + ] + }, + "uni0375": { + "advanceWidth": 219, + "contours": [ + [{"x":197,"y":-72,"on":true},{"x":178,"y":-105,"on":false},{"x":141,"y":-186,"on":false},{"x":129,"y":-220,"on":true},{"x":22,"y":-220,"on":true},{"x":22,"y":-210,"on":true},{"x":43,"y":-172,"on":false},{"x":106,"y":-88,"on":false},{"x":138,"y":-60,"on":true},{"x":197,"y":-60,"on":true}] + ] + }, + "uni0376": { + "advanceWidth": 713, + "references": [ + {"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0377": { + "advanceWidth": 602, + "references": [ + {"glyph":"uni0438","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni037A": { + "advanceWidth": 585, + "references": [ + {"glyph":"uni1FBE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni037B": { + "advanceWidth": 443, + "references": [ + {"glyph":"uni0254","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni037C": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":204,"y":-401,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni037D": { + "advanceWidth": 443, + "references": [ + {"glyph":"uni0254","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":53,"y":-402,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni037E": { + "advanceWidth": 261, + "references": [ + {"glyph":"semicolon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni037F": { + "advanceWidth": 270, + "references": [ + {"glyph":"J","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "tonos": { + "advanceWidth": 552, + "contours": [ + [{"x":235,"y":606,"on":true},{"x":235,"y":620,"on":true},{"x":242,"y":640,"on":false},{"x":259,"y":705,"on":false},{"x":274,"y":771,"on":false},{"x":277,"y":793,"on":true},{"x":378,"y":793,"on":true},{"x":378,"y":782,"on":true},{"x":366,"y":747,"on":false},{"x":320,"y":647,"on":false},{"x":295,"y":606,"on":true}] + ] + }, + "dieresistonos": { + "advanceWidth": 549, + "contours": [ + [{"x":370,"y":823,"on":true},{"x":370,"y":813,"on":true},{"x":357,"y":783,"on":false},{"x":312,"y":704,"on":false},{"x":287,"y":670,"on":true},{"x":239,"y":670,"on":true},{"x":239,"y":682,"on":true},{"x":249,"y":714,"on":false},{"x":268,"y":793,"on":false},{"x":273,"y":823,"on":true}], + [{"x":167,"y":727,"on":true},{"x":187,"y":727,"on":false},{"x":216,"y":700,"on":false},{"x":216,"y":672,"on":true},{"x":216,"y":645,"on":false},{"x":187,"y":617,"on":false},{"x":167,"y":617,"on":true},{"x":145,"y":617,"on":false},{"x":117,"y":645,"on":false},{"x":117,"y":672,"on":true},{"x":117,"y":700,"on":false},{"x":145,"y":727,"on":false}], + [{"x":389,"y":727,"on":true},{"x":410,"y":727,"on":false},{"x":439,"y":700,"on":false},{"x":439,"y":672,"on":true},{"x":439,"y":645,"on":false},{"x":410,"y":617,"on":false},{"x":389,"y":617,"on":true},{"x":367,"y":617,"on":false},{"x":340,"y":645,"on":false},{"x":340,"y":672,"on":true},{"x":340,"y":700,"on":false},{"x":367,"y":727,"on":false}] + ] + }, + "Alphatonos": { + "advanceWidth": 595, + "references": [ + {"glyph":"A","x":8,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"tonos","x":-230,"y":-41,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "anoteleia": { + "advanceWidth": 259, + "references": [ + {"glyph":"periodcentered","x":0,"y":125,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Epsilontonos": { + "advanceWidth": 596, + "references": [ + {"glyph":"E","x":93,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"tonos","x":-236,"y":-45,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Etatonos": { + "advanceWidth": 768, + "references": [ + {"glyph":"H","x":94,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"tonos","x":-236,"y":-45,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Iotatonos": { + "advanceWidth": 463, + "references": [ + {"glyph":"I","x":130,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"tonos","x":-236,"y":-45,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Omicrontonos": { + "advanceWidth": 752, + "references": [ + {"glyph":"O","x":48,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"tonos","x":-236,"y":-45,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Upsilontonos": { + "advanceWidth": 678, + "references": [ + {"glyph":"Y","x":156,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"tonos","x":-236,"y":-45,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Omegatonos": { + "advanceWidth": 753, + "references": [ + {"glyph":"uni03A9","x":49,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"tonos","x":-239,"y":-44,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "iotadieresistonos": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresistonos","x":-143,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Alpha": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Beta": { + "advanceWidth": 596, + "references": [ + {"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Gamma": { + "advanceWidth": 478, + "contours": [ + [{"x":460,"y":714,"on":true},{"x":460,"y":622,"on":true},{"x":191,"y":622,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true}] + ] + }, + "uni0394": { + "advanceWidth": 554, + "contours": [ + [{"x":336,"y":715,"on":true},{"x":536,"y":64,"on":true},{"x":536,"y":0,"on":true},{"x":18,"y":0,"on":true},{"x":18,"y":66,"on":true},{"x":218,"y":715,"on":true}], + [{"x":422,"y":91,"on":true},{"x":310,"y":476,"on":true},{"x":300,"y":509,"on":false},{"x":280,"y":586,"on":false},{"x":276,"y":613,"on":true},{"x":270,"y":584,"on":false},{"x":252,"y":508,"on":false},{"x":242,"y":477,"on":true},{"x":131,"y":91,"on":true}] + ] + }, + "Epsilon": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Zeta": { + "advanceWidth": 503, + "references": [ + {"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Eta": { + "advanceWidth": 674, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Theta": { + "advanceWidth": 704, + "contours": [ + [{"x":648,"y":358,"on":true},{"x":648,"y":249,"on":false},{"x":583,"y":83,"on":false},{"x":452,"y":-10,"on":false},{"x":352,"y":-10,"on":true},{"x":250,"y":-10,"on":false},{"x":119,"y":84,"on":false},{"x":56,"y":251,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":203,"y":725,"on":false},{"x":353,"y":725,"on":true},{"x":452,"y":725,"on":false},{"x":583,"y":632,"on":false},{"x":648,"y":467,"on":false}], + [{"x":166,"y":358,"on":true},{"x":166,"y":226,"on":false},{"x":257,"y":82,"on":false},{"x":352,"y":82,"on":true},{"x":448,"y":82,"on":false},{"x":538,"y":225,"on":false},{"x":538,"y":358,"on":true},{"x":538,"y":490,"on":false},{"x":448,"y":633,"on":false},{"x":353,"y":633,"on":true},{"x":257,"y":633,"on":false},{"x":166,"y":490,"on":false}], + [{"x":473,"y":408,"on":true},{"x":473,"y":319,"on":true},{"x":230,"y":319,"on":true},{"x":230,"y":408,"on":true}] + ] + }, + "Iota": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Kappa": { + "advanceWidth": 571, + "references": [ + {"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Lambda": { + "advanceWidth": 564, + "contours": [ + [{"x":338,"y":714,"on":true},{"x":563,"y":0,"on":true},{"x":454,"y":0,"on":true},{"x":318,"y":457,"on":true},{"x":307,"y":495,"on":false},{"x":286,"y":575,"on":false},{"x":280,"y":604,"on":true},{"x":275,"y":572,"on":false},{"x":254,"y":492,"on":false},{"x":244,"y":457,"on":true},{"x":110,"y":0,"on":true},{"x":0,"y":0,"on":true},{"x":224,"y":714,"on":true}] + ] + }, + "Mu": { + "advanceWidth": 850, + "references": [ + {"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Nu": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Xi": { + "advanceWidth": 504, + "contours": [ + [{"x":55,"y":624,"on":true},{"x":55,"y":714,"on":true},{"x":449,"y":714,"on":true},{"x":449,"y":624,"on":true}], + [{"x":89,"y":328,"on":true},{"x":89,"y":418,"on":true},{"x":415,"y":418,"on":true},{"x":415,"y":328,"on":true}], + [{"x":38,"y":0,"on":true},{"x":38,"y":91,"on":true},{"x":466,"y":91,"on":true},{"x":466,"y":0,"on":true}] + ] + }, + "Omicron": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Pi": { + "advanceWidth": 664, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":578,"y":714,"on":true},{"x":578,"y":0,"on":true},{"x":473,"y":0,"on":true},{"x":473,"y":623,"on":true},{"x":191,"y":623,"on":true},{"x":191,"y":0,"on":true}] + ] + }, + "Rho": { + "advanceWidth": 555, + "references": [ + {"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Sigma": { + "advanceWidth": 518, + "contours": [ + [{"x":34,"y":0,"on":true},{"x":34,"y":85,"on":true},{"x":241,"y":373,"on":true},{"x":41,"y":630,"on":true},{"x":41,"y":714,"on":true},{"x":466,"y":714,"on":true},{"x":466,"y":623,"on":true},{"x":258,"y":623,"on":true},{"x":235,"y":623,"on":false},{"x":176,"y":624,"on":false},{"x":158,"y":626,"on":true},{"x":355,"y":374,"on":true},{"x":147,"y":88,"on":true},{"x":208,"y":91,"on":false},{"x":269,"y":91,"on":true},{"x":491,"y":91,"on":true},{"x":491,"y":0,"on":true}] + ] + }, + "Tau": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Upsilon": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Phi": { + "advanceWidth": 760, + "contours": [ + [{"x":430,"y":724,"on":true},{"x":430,"y":636,"on":true},{"x":532,"y":634,"on":false},{"x":656,"y":563,"on":false},{"x":712,"y":444,"on":false},{"x":712,"y":371,"on":true},{"x":712,"y":301,"on":false},{"x":658,"y":178,"on":false},{"x":534,"y":102,"on":false},{"x":430,"y":100,"on":true},{"x":430,"y":-10,"on":true},{"x":330,"y":-10,"on":true},{"x":330,"y":100,"on":true},{"x":251,"y":101,"on":false},{"x":142,"y":147,"on":false},{"x":76,"y":224,"on":false},{"x":47,"y":320,"on":false},{"x":47,"y":371,"on":true},{"x":47,"y":442,"on":false},{"x":104,"y":562,"on":false},{"x":228,"y":635,"on":false},{"x":330,"y":636,"on":true},{"x":330,"y":724,"on":true}], + [{"x":330,"y":549,"on":true},{"x":232,"y":547,"on":false},{"x":151,"y":452,"on":false},{"x":151,"y":372,"on":true},{"x":151,"y":285,"on":false},{"x":238,"y":188,"on":false},{"x":330,"y":186,"on":true}], + [{"x":430,"y":549,"on":true},{"x":430,"y":186,"on":true},{"x":524,"y":188,"on":false},{"x":609,"y":286,"on":false},{"x":609,"y":372,"on":true},{"x":609,"y":453,"on":false},{"x":528,"y":547,"on":false}] + ] + }, + "Chi": { + "advanceWidth": 541, + "references": [ + {"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "Psi": { + "advanceWidth": 765, + "contours": [ + [{"x":709,"y":714,"on":true},{"x":709,"y":480,"on":true},{"x":709,"y":400,"on":false},{"x":658,"y":280,"on":false},{"x":538,"y":213,"on":false},{"x":432,"y":213,"on":true},{"x":432,"y":0,"on":true},{"x":332,"y":0,"on":true},{"x":332,"y":213,"on":true},{"x":226,"y":213,"on":false},{"x":105,"y":280,"on":false},{"x":56,"y":400,"on":false},{"x":56,"y":477,"on":true},{"x":56,"y":714,"on":true},{"x":159,"y":714,"on":true},{"x":159,"y":478,"on":true},{"x":159,"y":390,"on":false},{"x":238,"y":303,"on":false},{"x":332,"y":303,"on":true},{"x":332,"y":714,"on":true},{"x":432,"y":714,"on":true},{"x":432,"y":303,"on":true},{"x":523,"y":303,"on":false},{"x":605,"y":384,"on":false},{"x":605,"y":476,"on":true},{"x":605,"y":714,"on":true}] + ] + }, + "uni03A9": { + "advanceWidth": 705, + "contours": [ + [{"x":353,"y":633,"on":true},{"x":259,"y":633,"on":false},{"x":166,"y":512,"on":false},{"x":166,"y":398,"on":true},{"x":166,"y":299,"on":false},{"x":226,"y":145,"on":false},{"x":300,"y":89,"on":true},{"x":300,"y":0,"on":true},{"x":32,"y":0,"on":true},{"x":32,"y":92,"on":true},{"x":193,"y":92,"on":true},{"x":133,"y":138,"on":false},{"x":57,"y":300,"on":false},{"x":57,"y":409,"on":true},{"x":57,"y":558,"on":false},{"x":212,"y":725,"on":false},{"x":353,"y":725,"on":true},{"x":494,"y":725,"on":false},{"x":648,"y":558,"on":false},{"x":648,"y":410,"on":true},{"x":648,"y":298,"on":false},{"x":572,"y":138,"on":false},{"x":511,"y":92,"on":true},{"x":673,"y":92,"on":true},{"x":673,"y":0,"on":true},{"x":404,"y":0,"on":true},{"x":404,"y":89,"on":true},{"x":479,"y":145,"on":false},{"x":540,"y":299,"on":false},{"x":540,"y":398,"on":true},{"x":540,"y":510,"on":false},{"x":448,"y":633,"on":false}] + ] + }, + "Iotadieresis": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-114,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Upsilondieresis": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-19,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "alphatonos": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tonos","x":11,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "epsilontonos": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tonos","x":-20,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "etatonos": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tonos","x":20,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "iotatonos": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tonos","x":-146,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "upsilondieresistonos": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresistonos","x":6,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "alpha": { + "advanceWidth": 576, + "contours": [ + [{"x":244,"y":-10,"on":true},{"x":155,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":405,"on":false},{"x":156,"y":549,"on":false},{"x":252,"y":549,"on":true},{"x":304,"y":549,"on":false},{"x":376,"y":507,"on":false},{"x":399,"y":465,"on":true},{"x":405,"y":465,"on":true},{"x":410,"y":484,"on":false},{"x":425,"y":525,"on":false},{"x":435,"y":539,"on":true},{"x":518,"y":539,"on":true},{"x":508,"y":505,"on":false},{"x":492,"y":390,"on":false},{"x":492,"y":333,"on":true},{"x":492,"y":136,"on":true},{"x":492,"y":104,"on":false},{"x":514,"y":75,"on":false},{"x":531,"y":75,"on":true},{"x":538,"y":75,"on":false},{"x":556,"y":78,"on":false},{"x":561,"y":80,"on":true},{"x":561,"y":2,"on":true},{"x":554,"y":-2,"on":false},{"x":520,"y":-10,"on":false},{"x":506,"y":-10,"on":true},{"x":464,"y":-10,"on":false},{"x":413,"y":26,"on":false},{"x":401,"y":73,"on":true},{"x":393,"y":73,"on":true},{"x":371,"y":36,"on":false},{"x":300,"y":-10,"on":false}], + [{"x":270,"y":75,"on":true},{"x":334,"y":75,"on":false},{"x":392,"y":166,"on":false},{"x":392,"y":261,"on":true},{"x":392,"y":268,"on":true},{"x":392,"y":365,"on":false},{"x":337,"y":463,"on":false},{"x":268,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":362,"on":false},{"x":152,"y":267,"on":true},{"x":152,"y":170,"on":false},{"x":209,"y":75,"on":false}] + ] + }, + "beta": { + "advanceWidth": 581, + "contours": [ + [{"x":297,"y":765,"on":true},{"x":392,"y":765,"on":false},{"x":508,"y":666,"on":false},{"x":508,"y":575,"on":true},{"x":508,"y":428,"on":false},{"x":375,"y":405,"on":true},{"x":375,"y":402,"on":true},{"x":457,"y":392,"on":false},{"x":540,"y":295,"on":false},{"x":540,"y":205,"on":true},{"x":540,"y":102,"on":false},{"x":424,"y":-10,"on":false},{"x":323,"y":-10,"on":true},{"x":275,"y":-10,"on":false},{"x":206,"y":7,"on":false},{"x":178,"y":23,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":543,"on":true},{"x":75,"y":656,"on":false},{"x":199,"y":765,"on":false}], + [{"x":294,"y":680,"on":true},{"x":244,"y":680,"on":false},{"x":178,"y":616,"on":false},{"x":178,"y":536,"on":true},{"x":178,"y":112,"on":true},{"x":204,"y":96,"on":false},{"x":269,"y":76,"on":false},{"x":305,"y":76,"on":true},{"x":373,"y":76,"on":false},{"x":436,"y":146,"on":false},{"x":436,"y":214,"on":true},{"x":436,"y":286,"on":false},{"x":360,"y":354,"on":false},{"x":296,"y":354,"on":true},{"x":259,"y":354,"on":true},{"x":259,"y":439,"on":true},{"x":288,"y":439,"on":true},{"x":349,"y":439,"on":false},{"x":405,"y":506,"on":false},{"x":405,"y":565,"on":true},{"x":405,"y":623,"on":false},{"x":344,"y":680,"on":false}] + ] + }, + "gamma": { + "advanceWidth": 481, + "contours": [ + [{"x":477,"y":539,"on":true},{"x":302,"y":17,"on":true},{"x":288,"y":-24,"on":false},{"x":269,"y":-116,"on":false},{"x":258,"y":-204,"on":false},{"x":258,"y":-240,"on":true},{"x":149,"y":-240,"on":true},{"x":149,"y":-212,"on":false},{"x":160,"y":-127,"on":false},{"x":180,"y":-36,"on":false},{"x":192,"y":2,"on":true},{"x":4,"y":539,"on":true},{"x":110,"y":539,"on":true},{"x":195,"y":288,"on":true},{"x":204,"y":258,"on":false},{"x":224,"y":192,"on":false},{"x":240,"y":130,"on":false},{"x":243,"y":108,"on":true},{"x":246,"y":108,"on":true},{"x":249,"y":128,"on":false},{"x":263,"y":188,"on":false},{"x":282,"y":255,"on":false},{"x":290,"y":284,"on":true},{"x":372,"y":539,"on":true}] + ] + }, + "delta": { + "advanceWidth": 553, + "contours": [ + [{"x":301,"y":762,"on":true},{"x":360,"y":762,"on":false},{"x":452,"y":732,"on":false},{"x":490,"y":713,"on":true},{"x":449,"y":633,"on":true},{"x":413,"y":654,"on":false},{"x":339,"y":679,"on":false},{"x":299,"y":679,"on":true},{"x":259,"y":679,"on":false},{"x":220,"y":644,"on":false},{"x":220,"y":618,"on":true},{"x":220,"y":585,"on":false},{"x":278,"y":529,"on":false},{"x":341,"y":490,"on":true},{"x":423,"y":438,"on":false},{"x":506,"y":318,"on":false},{"x":506,"y":233,"on":true},{"x":506,"y":118,"on":false},{"x":382,"y":-10,"on":false},{"x":275,"y":-10,"on":true},{"x":171,"y":-10,"on":false},{"x":47,"y":110,"on":false},{"x":47,"y":214,"on":true},{"x":47,"y":307,"on":false},{"x":151,"y":427,"on":false},{"x":232,"y":453,"on":true},{"x":182,"y":488,"on":false},{"x":119,"y":566,"on":false},{"x":119,"y":619,"on":true},{"x":119,"y":689,"on":false},{"x":222,"y":762,"on":false}], + [{"x":298,"y":407,"on":true},{"x":262,"y":396,"on":false},{"x":196,"y":349,"on":false},{"x":153,"y":272,"on":false},{"x":153,"y":216,"on":true},{"x":153,"y":156,"on":false},{"x":216,"y":75,"on":false},{"x":275,"y":75,"on":true},{"x":336,"y":75,"on":false},{"x":402,"y":156,"on":false},{"x":402,"y":232,"on":true},{"x":402,"y":290,"on":false},{"x":348,"y":375,"on":false}] + ] + }, + "epsilon": { + "advanceWidth": 454, + "contours": [ + [{"x":333,"y":321,"on":true},{"x":333,"y":242,"on":true},{"x":272,"y":242,"on":true},{"x":205,"y":242,"on":false},{"x":142,"y":198,"on":false},{"x":142,"y":155,"on":true},{"x":142,"y":113,"on":false},{"x":207,"y":74,"on":false},{"x":261,"y":74,"on":true},{"x":308,"y":74,"on":false},{"x":389,"y":98,"on":false},{"x":420,"y":114,"on":true},{"x":420,"y":26,"on":true},{"x":388,"y":9,"on":false},{"x":306,"y":-10,"on":false},{"x":251,"y":-10,"on":true},{"x":142,"y":-10,"on":false},{"x":40,"y":79,"on":false},{"x":40,"y":148,"on":true},{"x":40,"y":205,"on":false},{"x":104,"y":268,"on":false},{"x":154,"y":280,"on":true},{"x":154,"y":285,"on":true},{"x":110,"y":298,"on":false},{"x":62,"y":361,"on":false},{"x":62,"y":408,"on":true},{"x":62,"y":476,"on":false},{"x":170,"y":549,"on":false},{"x":255,"y":549,"on":true},{"x":304,"y":549,"on":false},{"x":386,"y":530,"on":false},{"x":423,"y":511,"on":true},{"x":387,"y":433,"on":true},{"x":358,"y":448,"on":false},{"x":296,"y":466,"on":false},{"x":258,"y":466,"on":true},{"x":158,"y":466,"on":false},{"x":158,"y":399,"on":true},{"x":158,"y":357,"on":false},{"x":223,"y":321,"on":false},{"x":284,"y":321,"on":true}] + ] + }, + "zeta": { + "advanceWidth": 442, + "contours": [ + [{"x":421,"y":-39,"on":true},{"x":421,"y":-79,"on":false},{"x":383,"y":-160,"on":false},{"x":360,"y":-193,"on":true},{"x":257,"y":-193,"on":true},{"x":282,"y":-159,"on":false},{"x":320,"y":-85,"on":false},{"x":320,"y":-60,"on":true},{"x":320,"y":-46,"on":false},{"x":305,"y":-24,"on":false},{"x":262,"y":-2,"on":false},{"x":219,"y":8,"on":true},{"x":134,"y":29,"on":false},{"x":48,"y":128,"on":false},{"x":48,"y":225,"on":true},{"x":48,"y":316,"on":false},{"x":116,"y":469,"on":false},{"x":234,"y":610,"on":false},{"x":307,"y":683,"on":true},{"x":294,"y":681,"on":false},{"x":225,"y":677,"on":false},{"x":189,"y":677,"on":true},{"x":73,"y":677,"on":true},{"x":73,"y":760,"on":true},{"x":420,"y":760,"on":true},{"x":420,"y":689,"on":true},{"x":312,"y":591,"on":false},{"x":196,"y":430,"on":false},{"x":153,"y":294,"on":false},{"x":153,"y":232,"on":true},{"x":153,"y":184,"on":false},{"x":182,"y":130,"on":false},{"x":242,"y":100,"on":false},{"x":289,"y":87,"on":true},{"x":355,"y":70,"on":false},{"x":421,"y":10,"on":false}] + ] + }, + "eta": { + "advanceWidth": 571, + "contours": [ + [{"x":326,"y":549,"on":true},{"x":409,"y":549,"on":false},{"x":498,"y":456,"on":false},{"x":498,"y":356,"on":true},{"x":498,"y":-240,"on":true},{"x":397,"y":-240,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":463,"on":false},{"x":304,"y":463,"on":true},{"x":234,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":198,"y":508,"on":false},{"x":280,"y":549,"on":false}] + ] + }, + "theta": { + "advanceWidth": 554, + "contours": [ + [{"x":507,"y":379,"on":true},{"x":507,"y":192,"on":false},{"x":398,"y":-10,"on":false},{"x":276,"y":-10,"on":true},{"x":160,"y":-10,"on":false},{"x":48,"y":192,"on":false},{"x":48,"y":379,"on":true},{"x":48,"y":566,"on":false},{"x":156,"y":767,"on":false},{"x":277,"y":767,"on":true},{"x":393,"y":767,"on":false},{"x":507,"y":567,"on":false}], + [{"x":277,"y":686,"on":true},{"x":215,"y":686,"on":false},{"x":156,"y":556,"on":false},{"x":152,"y":427,"on":true},{"x":402,"y":427,"on":true},{"x":398,"y":556,"on":false},{"x":338,"y":686,"on":false}], + [{"x":276,"y":72,"on":true},{"x":339,"y":72,"on":false},{"x":400,"y":208,"on":false},{"x":403,"y":345,"on":true},{"x":152,"y":345,"on":true},{"x":154,"y":209,"on":false},{"x":212,"y":72,"on":false}] + ] + }, + "iota": { + "advanceWidth": 328, + "contours": [ + [{"x":176,"y":539,"on":true},{"x":176,"y":153,"on":true},{"x":176,"y":76,"on":false},{"x":237,"y":76,"on":true},{"x":256,"y":76,"on":false},{"x":297,"y":84,"on":false},{"x":311,"y":89,"on":true},{"x":311,"y":9,"on":true},{"x":294,"y":1,"on":false},{"x":243,"y":-10,"on":false},{"x":215,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":74,"y":60,"on":false},{"x":74,"y":152,"on":true},{"x":74,"y":539,"on":true}] + ] + }, + "kappa": { + "advanceWidth": 509, + "references": [ + {"glyph":"kgreenlandic","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "lambda": { + "advanceWidth": 513, + "contours": [ + [{"x":1,"y":0,"on":true},{"x":203,"y":525,"on":true},{"x":181,"y":597,"on":true},{"x":167,"y":638,"on":false},{"x":132,"y":681,"on":false},{"x":95,"y":681,"on":true},{"x":81,"y":681,"on":false},{"x":57,"y":677,"on":false},{"x":48,"y":675,"on":true},{"x":48,"y":759,"on":true},{"x":60,"y":762,"on":false},{"x":94,"y":766,"on":false},{"x":110,"y":766,"on":true},{"x":158,"y":766,"on":false},{"x":221,"y":731,"on":false},{"x":264,"y":659,"on":false},{"x":282,"y":603,"on":true},{"x":425,"y":144,"on":true},{"x":437,"y":106,"on":false},{"x":463,"y":77,"on":false},{"x":482,"y":77,"on":true},{"x":500,"y":77,"on":false},{"x":513,"y":82,"on":true},{"x":513,"y":1,"on":true},{"x":502,"y":-4,"on":false},{"x":470,"y":-10,"on":false},{"x":454,"y":-10,"on":true},{"x":408,"y":-10,"on":false},{"x":356,"y":42,"on":false},{"x":340,"y":97,"on":true},{"x":285,"y":273,"on":true},{"x":275,"y":304,"on":false},{"x":254,"y":376,"on":false},{"x":249,"y":401,"on":true},{"x":246,"y":401,"on":true},{"x":240,"y":375,"on":false},{"x":222,"y":317,"on":false},{"x":211,"y":289,"on":true},{"x":106,"y":0,"on":true}] + ] + }, + "uni03BC": { + "advanceWidth": 574, + "references": [ + {"glyph":"mu","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "nu": { + "advanceWidth": 508, + "contours": [ + [{"x":4,"y":539,"on":true},{"x":109,"y":539,"on":true},{"x":201,"y":234,"on":true},{"x":212,"y":201,"on":false},{"x":236,"y":120,"on":false},{"x":240,"y":95,"on":true},{"x":244,"y":95,"on":true},{"x":314,"y":186,"on":false},{"x":371,"y":401,"on":false},{"x":371,"y":539,"on":true},{"x":473,"y":539,"on":true},{"x":473,"y":434,"on":false},{"x":437,"y":250,"on":false},{"x":351,"y":82,"on":false},{"x":277,"y":0,"on":true},{"x":177,"y":0,"on":true}] + ] + }, + "xi": { + "advanceWidth": 439, + "contours": [ + [{"x":48,"y":207,"on":true},{"x":48,"y":278,"on":false},{"x":120,"y":377,"on":false},{"x":179,"y":396,"on":true},{"x":179,"y":401,"on":true},{"x":129,"y":413,"on":false},{"x":76,"y":478,"on":false},{"x":76,"y":536,"on":true},{"x":76,"y":596,"on":false},{"x":150,"y":667,"on":false},{"x":206,"y":682,"on":true},{"x":201,"y":682,"on":false},{"x":166,"y":679,"on":false},{"x":121,"y":677,"on":false},{"x":101,"y":677,"on":true},{"x":70,"y":677,"on":true},{"x":70,"y":760,"on":true},{"x":399,"y":760,"on":true},{"x":399,"y":681,"on":true},{"x":369,"y":681,"on":true},{"x":318,"y":681,"on":false},{"x":230,"y":649,"on":false},{"x":177,"y":586,"on":false},{"x":177,"y":541,"on":true},{"x":177,"y":489,"on":false},{"x":238,"y":438,"on":false},{"x":313,"y":438,"on":true},{"x":381,"y":438,"on":true},{"x":381,"y":358,"on":true},{"x":310,"y":358,"on":true},{"x":232,"y":358,"on":false},{"x":153,"y":283,"on":false},{"x":153,"y":217,"on":true},{"x":153,"y":173,"on":false},{"x":184,"y":124,"on":false},{"x":245,"y":97,"on":false},{"x":290,"y":86,"on":true},{"x":360,"y":68,"on":false},{"x":420,"y":7,"on":false},{"x":420,"y":-39,"on":true},{"x":420,"y":-80,"on":false},{"x":382,"y":-160,"on":false},{"x":360,"y":-193,"on":true},{"x":259,"y":-193,"on":true},{"x":284,"y":-159,"on":false},{"x":320,"y":-85,"on":false},{"x":320,"y":-60,"on":true},{"x":320,"y":-38,"on":false},{"x":284,"y":-6,"on":false},{"x":222,"y":7,"on":true},{"x":134,"y":26,"on":false},{"x":48,"y":124,"on":false}] + ] + }, + "omicron": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "pi": { + "advanceWidth": 617, + "contours": [ + [{"x":534,"y":76,"on":true},{"x":561,"y":76,"on":false},{"x":580,"y":87,"on":true},{"x":580,"y":8,"on":true},{"x":554,"y":-9,"on":false},{"x":505,"y":-9,"on":true},{"x":390,"y":-9,"on":false},{"x":390,"y":131,"on":true},{"x":390,"y":455,"on":true},{"x":210,"y":455,"on":true},{"x":210,"y":0,"on":true},{"x":109,"y":0,"on":true},{"x":109,"y":455,"on":true},{"x":10,"y":455,"on":true},{"x":10,"y":500,"on":true},{"x":78,"y":539,"on":true},{"x":590,"y":539,"on":true},{"x":590,"y":455,"on":true},{"x":492,"y":455,"on":true},{"x":492,"y":136,"on":true},{"x":492,"y":103,"on":false},{"x":515,"y":76,"on":false}] + ] + }, + "rho": { + "advanceWidth": 558, + "contours": [ + [{"x":510,"y":270,"on":true},{"x":510,"y":137,"on":false},{"x":401,"y":-10,"on":false},{"x":299,"y":-10,"on":true},{"x":262,"y":-10,"on":false},{"x":196,"y":13,"on":false},{"x":171,"y":33,"on":true},{"x":165,"y":33,"on":true},{"x":167,"y":13,"on":false},{"x":171,"y":-61,"on":false},{"x":171,"y":-100,"on":true},{"x":171,"y":-240,"on":true},{"x":68,"y":-240,"on":true},{"x":68,"y":275,"on":true},{"x":68,"y":408,"on":false},{"x":183,"y":549,"on":false},{"x":292,"y":549,"on":true},{"x":390,"y":549,"on":false},{"x":510,"y":407,"on":false}], + [{"x":288,"y":464,"on":true},{"x":229,"y":464,"on":false},{"x":171,"y":375,"on":false},{"x":171,"y":281,"on":true},{"x":171,"y":119,"on":true},{"x":217,"y":75,"on":false},{"x":285,"y":75,"on":true},{"x":349,"y":75,"on":false},{"x":406,"y":171,"on":false},{"x":406,"y":270,"on":true},{"x":406,"y":370,"on":false},{"x":350,"y":464,"on":false}] + ] + }, + "sigma1": { + "advanceWidth": 441, + "contours": [ + [{"x":284,"y":549,"on":true},{"x":322,"y":549,"on":false},{"x":393,"y":532,"on":false},{"x":422,"y":519,"on":true},{"x":392,"y":436,"on":true},{"x":366,"y":447,"on":false},{"x":312,"y":462,"on":false},{"x":284,"y":462,"on":true},{"x":215,"y":462,"on":false},{"x":153,"y":358,"on":false},{"x":153,"y":256,"on":true},{"x":153,"y":204,"on":false},{"x":176,"y":141,"on":false},{"x":236,"y":104,"on":false},{"x":289,"y":89,"on":true},{"x":360,"y":70,"on":false},{"x":420,"y":9,"on":false},{"x":420,"y":-38,"on":true},{"x":420,"y":-78,"on":false},{"x":384,"y":-161,"on":false},{"x":361,"y":-193,"on":true},{"x":260,"y":-193,"on":true},{"x":285,"y":-159,"on":false},{"x":321,"y":-84,"on":false},{"x":321,"y":-58,"on":true},{"x":321,"y":-44,"on":false},{"x":307,"y":-21,"on":false},{"x":264,"y":0,"on":false},{"x":222,"y":11,"on":true},{"x":168,"y":25,"on":false},{"x":90,"y":80,"on":false},{"x":48,"y":176,"on":false},{"x":48,"y":253,"on":true},{"x":48,"y":408,"on":false},{"x":176,"y":549,"on":false}] + ] + }, + "sigma": { + "advanceWidth": 572, + "contours": [ + [{"x":508,"y":242,"on":true},{"x":508,"y":168,"on":false},{"x":455,"y":54,"on":false},{"x":352,"y":-10,"on":false},{"x":277,"y":-10,"on":true},{"x":171,"y":-10,"on":false},{"x":48,"y":128,"on":false},{"x":48,"y":258,"on":true},{"x":48,"y":406,"on":false},{"x":192,"y":540,"on":false},{"x":322,"y":540,"on":true},{"x":551,"y":540,"on":true},{"x":551,"y":457,"on":true},{"x":432,"y":457,"on":true},{"x":466,"y":417,"on":false},{"x":508,"y":311,"on":false}], + [{"x":153,"y":258,"on":true},{"x":153,"y":172,"on":false},{"x":213,"y":75,"on":false},{"x":278,"y":75,"on":true},{"x":343,"y":75,"on":false},{"x":404,"y":170,"on":false},{"x":404,"y":249,"on":true},{"x":404,"y":310,"on":false},{"x":371,"y":412,"on":false},{"x":340,"y":457,"on":true},{"x":313,"y":457,"on":true},{"x":231,"y":457,"on":false},{"x":153,"y":365,"on":false}] + ] + }, + "tau": { + "advanceWidth": 435, + "contours": [ + [{"x":410,"y":539,"on":true},{"x":410,"y":455,"on":true},{"x":235,"y":455,"on":true},{"x":235,"y":165,"on":true},{"x":235,"y":117,"on":false},{"x":276,"y":74,"on":false},{"x":310,"y":74,"on":true},{"x":330,"y":74,"on":false},{"x":370,"y":81,"on":false},{"x":386,"y":86,"on":true},{"x":386,"y":7,"on":true},{"x":371,"y":0,"on":false},{"x":317,"y":-11,"on":false},{"x":289,"y":-11,"on":true},{"x":243,"y":-11,"on":false},{"x":173,"y":20,"on":false},{"x":133,"y":94,"on":false},{"x":133,"y":159,"on":true},{"x":133,"y":455,"on":true},{"x":9,"y":455,"on":true},{"x":9,"y":500,"on":true},{"x":77,"y":539,"on":true}] + ] + }, + "upsilon": { + "advanceWidth": 563, + "contours": [ + [{"x":282,"y":-9,"on":true},{"x":201,"y":-9,"on":false},{"x":109,"y":51,"on":false},{"x":71,"y":163,"on":false},{"x":71,"y":241,"on":true},{"x":71,"y":539,"on":true},{"x":173,"y":539,"on":true},{"x":173,"y":238,"on":true},{"x":173,"y":161,"on":false},{"x":224,"y":76,"on":false},{"x":286,"y":76,"on":true},{"x":350,"y":76,"on":false},{"x":411,"y":178,"on":false},{"x":411,"y":288,"on":true},{"x":411,"y":356,"on":false},{"x":395,"y":474,"on":false},{"x":380,"y":539,"on":true},{"x":482,"y":539,"on":true},{"x":492,"y":494,"on":false},{"x":506,"y":416,"on":false},{"x":513,"y":336,"on":false},{"x":513,"y":286,"on":true},{"x":513,"y":136,"on":false},{"x":395,"y":-9,"on":false}] + ] + }, + "phi": { + "advanceWidth": 691, + "contours": [ + [{"x":150,"y":546,"on":true},{"x":227,"y":495,"on":true},{"x":191,"y":446,"on":false},{"x":149,"y":336,"on":false},{"x":149,"y":268,"on":true},{"x":149,"y":173,"on":false},{"x":230,"y":84,"on":false},{"x":291,"y":75,"on":true},{"x":291,"y":361,"on":true},{"x":291,"y":454,"on":false},{"x":375,"y":549,"on":false},{"x":450,"y":549,"on":true},{"x":512,"y":549,"on":false},{"x":598,"y":481,"on":false},{"x":644,"y":362,"on":false},{"x":644,"y":285,"on":true},{"x":644,"y":194,"on":false},{"x":577,"y":68,"on":false},{"x":462,"y":-2,"on":false},{"x":390,"y":-8,"on":true},{"x":390,"y":-240,"on":true},{"x":291,"y":-240,"on":true},{"x":291,"y":-8,"on":true},{"x":218,"y":-2,"on":false},{"x":109,"y":59,"on":false},{"x":48,"y":179,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":351,"on":false},{"x":103,"y":488,"on":false}], + [{"x":450,"y":466,"on":true},{"x":422,"y":466,"on":false},{"x":390,"y":419,"on":false},{"x":390,"y":362,"on":true},{"x":390,"y":75,"on":true},{"x":456,"y":82,"on":false},{"x":541,"y":189,"on":false},{"x":541,"y":284,"on":true},{"x":542,"y":369,"on":false},{"x":492,"y":467,"on":false}] + ] + }, + "chi": { + "advanceWidth": 507, + "contours": [ + [{"x":87,"y":545,"on":true},{"x":140,"y":545,"on":false},{"x":193,"y":482,"on":false},{"x":215,"y":417,"on":true},{"x":262,"y":275,"on":true},{"x":387,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":304,"y":165,"on":true},{"x":384,"y":-68,"on":true},{"x":400,"y":-116,"on":false},{"x":432,"y":-155,"on":false},{"x":463,"y":-155,"on":true},{"x":474,"y":-155,"on":false},{"x":494,"y":-152,"on":false},{"x":504,"y":-150,"on":true},{"x":504,"y":-231,"on":true},{"x":491,"y":-235,"on":false},{"x":461,"y":-240,"on":false},{"x":439,"y":-240,"on":true},{"x":379,"y":-240,"on":false},{"x":316,"y":-172,"on":false},{"x":293,"y":-102,"on":true},{"x":239,"y":65,"on":true},{"x":97,"y":-240,"on":true},{"x":-11,"y":-240,"on":true},{"x":196,"y":176,"on":true},{"x":127,"y":382,"on":true},{"x":114,"y":421,"on":false},{"x":83,"y":460,"on":false},{"x":60,"y":460,"on":true},{"x":51,"y":460,"on":false},{"x":31,"y":457,"on":false},{"x":23,"y":453,"on":true},{"x":23,"y":536,"on":true},{"x":35,"y":539,"on":false},{"x":67,"y":545,"on":false}] + ] + }, + "psi": { + "advanceWidth": 712, + "contours": [ + [{"x":408,"y":759,"on":true},{"x":408,"y":77,"on":true},{"x":481,"y":84,"on":false},{"x":558,"y":180,"on":false},{"x":558,"y":283,"on":true},{"x":558,"y":348,"on":false},{"x":542,"y":471,"on":false},{"x":525,"y":539,"on":true},{"x":624,"y":539,"on":true},{"x":641,"y":469,"on":false},{"x":658,"y":347,"on":false},{"x":658,"y":283,"on":true},{"x":658,"y":184,"on":false},{"x":594,"y":58,"on":false},{"x":481,"y":-5,"on":false},{"x":408,"y":-9,"on":true},{"x":408,"y":-240,"on":true},{"x":310,"y":-240,"on":true},{"x":310,"y":-9,"on":true},{"x":238,"y":-6,"on":false},{"x":130,"y":50,"on":false},{"x":70,"y":168,"on":false},{"x":70,"y":263,"on":true},{"x":70,"y":539,"on":true},{"x":170,"y":539,"on":true},{"x":170,"y":263,"on":true},{"x":170,"y":165,"on":false},{"x":245,"y":81,"on":false},{"x":310,"y":76,"on":true},{"x":310,"y":759,"on":true}] + ] + }, + "omega": { + "advanceWidth": 728, + "contours": [ + [{"x":623,"y":539,"on":true},{"x":651,"y":468,"on":false},{"x":677,"y":338,"on":false},{"x":677,"y":261,"on":true},{"x":677,"y":137,"on":false},{"x":584,"y":-10,"on":false},{"x":498,"y":-10,"on":true},{"x":446,"y":-10,"on":false},{"x":381,"y":38,"on":false},{"x":366,"y":84,"on":true},{"x":362,"y":84,"on":true},{"x":347,"y":38,"on":false},{"x":282,"y":-10,"on":false},{"x":230,"y":-10,"on":true},{"x":144,"y":-10,"on":false},{"x":52,"y":137,"on":false},{"x":52,"y":261,"on":true},{"x":52,"y":338,"on":false},{"x":77,"y":468,"on":false},{"x":105,"y":539,"on":true},{"x":207,"y":539,"on":true},{"x":178,"y":472,"on":false},{"x":152,"y":340,"on":false},{"x":152,"y":263,"on":true},{"x":152,"y":172,"on":false},{"x":197,"y":77,"on":false},{"x":239,"y":77,"on":true},{"x":280,"y":77,"on":false},{"x":316,"y":147,"on":false},{"x":316,"y":210,"on":true},{"x":316,"y":354,"on":true},{"x":413,"y":354,"on":true},{"x":413,"y":210,"on":true},{"x":413,"y":77,"on":false},{"x":489,"y":77,"on":true},{"x":531,"y":77,"on":false},{"x":577,"y":171,"on":false},{"x":577,"y":262,"on":true},{"x":577,"y":337,"on":false},{"x":550,"y":472,"on":false},{"x":521,"y":539,"on":true}] + ] + }, + "iotadieresis": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-148,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "upsilondieresis": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":1,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "omicrontonos": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tonos","x":-1,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "upsilontonos": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tonos","x":3,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "omegatonos": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tonos","x":87,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni03CF": { + "advanceWidth": 569, + "contours": [ + [{"x":292,"y":-240,"on":true},{"x":224,"y":-240,"on":false},{"x":118,"y":-209,"on":false},{"x":95,"y":-198,"on":true},{"x":95,"y":-107,"on":true},{"x":130,"y":-124,"on":false},{"x":220,"y":-149,"on":false},{"x":273,"y":-149,"on":true},{"x":346,"y":-149,"on":false},{"x":440,"y":-84,"on":false},{"x":457,"y":-11,"on":true},{"x":258,"y":328,"on":true},{"x":191,"y":269,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":366,"on":true},{"x":205,"y":388,"on":false},{"x":237,"y":434,"on":false},{"x":252,"y":456,"on":true},{"x":448,"y":714,"on":true},{"x":566,"y":714,"on":true},{"x":332,"y":401,"on":true},{"x":571,"y":0,"on":true},{"x":552,"y":-117,"on":false},{"x":409,"y":-240,"on":false}] + ] + }, + "uni03D0": { + "advanceWidth": 546, + "contours": [ + [{"x":170,"y":543,"on":true},{"x":160,"y":511,"on":false},{"x":149,"y":425,"on":false},{"x":149,"y":377,"on":true},{"x":172,"y":411,"on":false},{"x":250,"y":458,"on":false},{"x":305,"y":458,"on":true},{"x":360,"y":458,"on":false},{"x":448,"y":409,"on":false},{"x":500,"y":314,"on":false},{"x":500,"y":245,"on":true},{"x":500,"y":162,"on":false},{"x":439,"y":48,"on":false},{"x":336,"y":-10,"on":false},{"x":274,"y":-10,"on":true},{"x":193,"y":-10,"on":false},{"x":92,"y":78,"on":false},{"x":46,"y":243,"on":false},{"x":46,"y":357,"on":true},{"x":46,"y":488,"on":false},{"x":109,"y":670,"on":false},{"x":224,"y":766,"on":false},{"x":303,"y":766,"on":true},{"x":377,"y":766,"on":false},{"x":456,"y":693,"on":false},{"x":456,"y":637,"on":true},{"x":456,"y":592,"on":false},{"x":410,"y":532,"on":false},{"x":338,"y":503,"on":false},{"x":298,"y":503,"on":true},{"x":224,"y":503,"on":false}], + [{"x":302,"y":694,"on":true},{"x":268,"y":694,"on":false},{"x":213,"y":649,"on":false},{"x":196,"y":610,"on":true},{"x":213,"y":594,"on":false},{"x":270,"y":576,"on":false},{"x":297,"y":576,"on":true},{"x":335,"y":576,"on":false},{"x":372,"y":608,"on":false},{"x":372,"y":634,"on":true},{"x":372,"y":660,"on":false},{"x":337,"y":694,"on":false}], + [{"x":277,"y":76,"on":true},{"x":334,"y":76,"on":false},{"x":395,"y":161,"on":false},{"x":395,"y":239,"on":true},{"x":395,"y":303,"on":false},{"x":336,"y":375,"on":false},{"x":287,"y":375,"on":true},{"x":239,"y":375,"on":false},{"x":172,"y":332,"on":false},{"x":151,"y":300,"on":true},{"x":160,"y":76,"on":false}] + ] + }, + "theta1": { + "advanceWidth": 607, + "contours": [ + [{"x":287,"y":767,"on":true},{"x":391,"y":767,"on":false},{"x":507,"y":614,"on":false},{"x":523,"y":477,"on":true},{"x":590,"y":477,"on":true},{"x":590,"y":394,"on":true},{"x":528,"y":394,"on":true},{"x":529,"y":384,"on":false},{"x":530,"y":360,"on":false},{"x":530,"y":350,"on":true},{"x":529,"y":242,"on":false},{"x":475,"y":80,"on":false},{"x":362,"y":-10,"on":false},{"x":273,"y":-10,"on":true},{"x":204,"y":-10,"on":false},{"x":124,"y":35,"on":false},{"x":90,"y":112,"on":false},{"x":90,"y":159,"on":true},{"x":90,"y":192,"on":false},{"x":100,"y":264,"on":false},{"x":100,"y":287,"on":true},{"x":100,"y":310,"on":false},{"x":85,"y":327,"on":false},{"x":69,"y":327,"on":true},{"x":60,"y":327,"on":false},{"x":38,"y":320,"on":false},{"x":30,"y":316,"on":true},{"x":9,"y":389,"on":true},{"x":27,"y":398,"on":false},{"x":76,"y":411,"on":false},{"x":105,"y":411,"on":true},{"x":152,"y":411,"on":false},{"x":198,"y":359,"on":false},{"x":198,"y":314,"on":true},{"x":198,"y":282,"on":false},{"x":188,"y":205,"on":false},{"x":188,"y":169,"on":true},{"x":188,"y":128,"on":false},{"x":229,"y":73,"on":false},{"x":276,"y":73,"on":true},{"x":350,"y":73,"on":false},{"x":425,"y":209,"on":false},{"x":426,"y":352,"on":true},{"x":426,"y":361,"on":false},{"x":425,"y":385,"on":false},{"x":424,"y":393,"on":true},{"x":317,"y":394,"on":false},{"x":180,"y":451,"on":false},{"x":114,"y":547,"on":false},{"x":114,"y":609,"on":true},{"x":114,"y":676,"on":false},{"x":198,"y":767,"on":false}], + [{"x":286,"y":685,"on":true},{"x":214,"y":685,"on":false},{"x":214,"y":607,"on":true},{"x":214,"y":551,"on":false},{"x":311,"y":478,"on":false},{"x":421,"y":477,"on":true},{"x":410,"y":570,"on":false},{"x":341,"y":685,"on":false}] + ] + }, + "Upsilon1": { + "advanceWidth": 526, + "contours": [ + [{"x":260,"y":382,"on":true},{"x":286,"y":453,"on":false},{"x":340,"y":588,"on":false},{"x":361,"y":629,"on":true},{"x":380,"y":672,"on":false},{"x":429,"y":720,"on":false},{"x":473,"y":720,"on":true},{"x":505,"y":720,"on":false},{"x":525,"y":710,"on":true},{"x":525,"y":628,"on":true},{"x":519,"y":630,"on":false},{"x":504,"y":632,"on":false},{"x":497,"y":632,"on":true},{"x":482,"y":632,"on":false},{"x":455,"y":606,"on":false},{"x":437,"y":569,"on":true},{"x":424,"y":543,"on":false},{"x":379,"y":447,"on":false},{"x":331,"y":330,"on":false},{"x":312,"y":271,"on":true},{"x":312,"y":0,"on":true},{"x":207,"y":0,"on":true},{"x":207,"y":274,"on":true},{"x":0,"y":714,"on":true},{"x":113,"y":714,"on":true}] + ] + }, + "uni03D3": { + "advanceWidth": 665, + "references": [ + {"glyph":"Upsilon1","x":138,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"tonos","x":-257,"y":-46,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni03D4": { + "advanceWidth": 526, + "references": [ + {"glyph":"Upsilon1","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-20,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "phi1": { + "advanceWidth": 689, + "references": [ + {"glyph":"uni0444","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "omega1": { + "advanceWidth": 795, + "contours": [ + [{"x":771,"y":539,"on":true},{"x":771,"y":456,"on":true},{"x":663,"y":456,"on":true},{"x":683,"y":400,"on":false},{"x":705,"y":290,"on":false},{"x":705,"y":234,"on":true},{"x":705,"y":115,"on":false},{"x":612,"y":-10,"on":false},{"x":526,"y":-10,"on":true},{"x":474,"y":-10,"on":false},{"x":412,"y":36,"on":false},{"x":397,"y":82,"on":true},{"x":392,"y":82,"on":true},{"x":377,"y":37,"on":false},{"x":315,"y":-10,"on":false},{"x":263,"y":-10,"on":true},{"x":177,"y":-10,"on":false},{"x":84,"y":115,"on":false},{"x":84,"y":234,"on":true},{"x":84,"y":290,"on":false},{"x":109,"y":401,"on":false},{"x":130,"y":456,"on":true},{"x":13,"y":456,"on":true},{"x":13,"y":500,"on":true},{"x":80,"y":539,"on":true}], + [{"x":564,"y":456,"on":true},{"x":228,"y":456,"on":true},{"x":208,"y":404,"on":false},{"x":184,"y":296,"on":false},{"x":184,"y":240,"on":true},{"x":184,"y":153,"on":false},{"x":229,"y":76,"on":false},{"x":271,"y":76,"on":true},{"x":311,"y":76,"on":false},{"x":346,"y":148,"on":false},{"x":346,"y":215,"on":true},{"x":346,"y":301,"on":true},{"x":443,"y":301,"on":true},{"x":443,"y":215,"on":true},{"x":443,"y":144,"on":false},{"x":480,"y":76,"on":false},{"x":518,"y":76,"on":true},{"x":560,"y":76,"on":false},{"x":605,"y":153,"on":false},{"x":605,"y":239,"on":true},{"x":605,"y":294,"on":false},{"x":584,"y":403,"on":false}] + ] + }, + "uni03D7": { + "advanceWidth": 597, + "contours": [ + [{"x":467,"y":-240,"on":true},{"x":448,"y":-240,"on":false},{"x":415,"y":-234,"on":false},{"x":403,"y":-229,"on":true},{"x":403,"y":-149,"on":true},{"x":412,"y":-152,"on":false},{"x":435,"y":-157,"on":false},{"x":448,"y":-157,"on":true},{"x":470,"y":-157,"on":false},{"x":493,"y":-128,"on":false},{"x":493,"y":-94,"on":true},{"x":493,"y":-7,"on":true},{"x":438,"y":-1,"on":false},{"x":372,"y":92,"on":false},{"x":372,"y":193,"on":true},{"x":372,"y":265,"on":false},{"x":389,"y":330,"on":true},{"x":154,"y":0,"on":true},{"x":53,"y":0,"on":true},{"x":80,"y":57,"on":false},{"x":125,"y":228,"on":false},{"x":125,"y":322,"on":true},{"x":125,"y":397,"on":false},{"x":84,"y":465,"on":false},{"x":53,"y":465,"on":true},{"x":41,"y":465,"on":false},{"x":24,"y":460,"on":false},{"x":17,"y":456,"on":true},{"x":-2,"y":535,"on":true},{"x":10,"y":540,"on":false},{"x":48,"y":547,"on":false},{"x":73,"y":547,"on":true},{"x":140,"y":547,"on":false},{"x":222,"y":452,"on":false},{"x":222,"y":342,"on":true},{"x":222,"y":300,"on":false},{"x":213,"y":233,"on":false},{"x":205,"y":204,"on":true},{"x":446,"y":539,"on":true},{"x":548,"y":539,"on":true},{"x":517,"y":475,"on":false},{"x":468,"y":304,"on":false},{"x":468,"y":211,"on":true},{"x":468,"y":132,"on":false},{"x":509,"y":73,"on":false},{"x":545,"y":73,"on":true},{"x":557,"y":73,"on":false},{"x":579,"y":78,"on":false},{"x":586,"y":81,"on":true},{"x":586,"y":-92,"on":true},{"x":586,"y":-168,"on":false},{"x":525,"y":-240,"on":false}] + ] + }, + "uni03D8": { + "advanceWidth": 696, + "contours": [ + [{"x":349,"y":724,"on":true},{"x":448,"y":724,"on":false},{"x":577,"y":648,"on":false},{"x":640,"y":515,"on":false},{"x":640,"y":429,"on":true},{"x":640,"y":350,"on":false},{"x":587,"y":224,"on":false},{"x":480,"y":144,"on":false},{"x":398,"y":135,"on":true},{"x":398,"y":0,"on":true},{"x":298,"y":0,"on":true},{"x":298,"y":135,"on":true},{"x":214,"y":144,"on":false},{"x":107,"y":225,"on":false},{"x":56,"y":352,"on":false},{"x":56,"y":430,"on":true},{"x":56,"y":565,"on":false},{"x":200,"y":724,"on":false}], + [{"x":349,"y":633,"on":true},{"x":255,"y":633,"on":false},{"x":166,"y":524,"on":false},{"x":166,"y":429,"on":true},{"x":166,"y":333,"on":false},{"x":256,"y":224,"on":false},{"x":348,"y":224,"on":true},{"x":441,"y":224,"on":false},{"x":530,"y":332,"on":false},{"x":530,"y":429,"on":true},{"x":530,"y":525,"on":false},{"x":441,"y":633,"on":false}] + ] + }, + "uni03D9": { + "advanceWidth": 554, + "contours": [ + [{"x":278,"y":549,"on":true},{"x":380,"y":549,"on":false},{"x":506,"y":407,"on":false},{"x":506,"y":272,"on":true},{"x":506,"y":157,"on":false},{"x":412,"y":14,"on":false},{"x":326,"y":-2,"on":true},{"x":326,"y":-240,"on":true},{"x":228,"y":-240,"on":true},{"x":228,"y":-2,"on":true},{"x":145,"y":14,"on":false},{"x":48,"y":157,"on":false},{"x":48,"y":272,"on":true},{"x":48,"y":405,"on":false},{"x":167,"y":549,"on":false}], + [{"x":277,"y":464,"on":true},{"x":212,"y":464,"on":false},{"x":152,"y":366,"on":false},{"x":152,"y":272,"on":true},{"x":152,"y":179,"on":false},{"x":212,"y":78,"on":false},{"x":277,"y":78,"on":true},{"x":342,"y":78,"on":false},{"x":402,"y":178,"on":false},{"x":402,"y":272,"on":true},{"x":402,"y":366,"on":false},{"x":342,"y":464,"on":false}] + ] + }, + "uni03DA": { + "advanceWidth": 560, + "contours": [ + [{"x":356,"y":724,"on":true},{"x":408,"y":724,"on":false},{"x":499,"y":704,"on":false},{"x":540,"y":685,"on":true},{"x":504,"y":597,"on":true},{"x":471,"y":612,"on":false},{"x":401,"y":633,"on":false},{"x":358,"y":633,"on":true},{"x":260,"y":633,"on":false},{"x":165,"y":519,"on":false},{"x":165,"y":430,"on":true},{"x":165,"y":336,"on":false},{"x":267,"y":228,"on":false},{"x":366,"y":228,"on":true},{"x":402,"y":228,"on":true},{"x":402,"y":0,"on":true},{"x":301,"y":0,"on":true},{"x":301,"y":141,"on":true},{"x":181,"y":154,"on":false},{"x":56,"y":306,"on":false},{"x":56,"y":431,"on":true},{"x":56,"y":516,"on":false},{"x":124,"y":649,"on":false},{"x":257,"y":724,"on":false}] + ] + }, + "uni03DB": { + "advanceWidth": 441, + "contours": [ + [{"x":249,"y":-211,"on":true},{"x":220,"y":-211,"on":false},{"x":166,"y":-205,"on":false},{"x":141,"y":-198,"on":true},{"x":141,"y":-114,"on":true},{"x":165,"y":-122,"on":false},{"x":213,"y":-130,"on":false},{"x":236,"y":-130,"on":true},{"x":280,"y":-130,"on":false},{"x":322,"y":-97,"on":false},{"x":322,"y":-68,"on":true},{"x":322,"y":-36,"on":false},{"x":280,"y":-5,"on":false},{"x":222,"y":11,"on":true},{"x":168,"y":26,"on":false},{"x":90,"y":80,"on":false},{"x":48,"y":176,"on":false},{"x":48,"y":253,"on":true},{"x":48,"y":403,"on":false},{"x":178,"y":549,"on":false},{"x":285,"y":549,"on":true},{"x":325,"y":549,"on":false},{"x":398,"y":532,"on":false},{"x":427,"y":519,"on":true},{"x":396,"y":436,"on":true},{"x":370,"y":448,"on":false},{"x":316,"y":462,"on":false},{"x":287,"y":462,"on":true},{"x":217,"y":462,"on":false},{"x":153,"y":358,"on":false},{"x":153,"y":256,"on":true},{"x":153,"y":204,"on":false},{"x":176,"y":142,"on":false},{"x":234,"y":104,"on":false},{"x":289,"y":89,"on":true},{"x":362,"y":67,"on":false},{"x":420,"y":-6,"on":false},{"x":420,"y":-60,"on":true},{"x":420,"y":-132,"on":false},{"x":328,"y":-211,"on":false}] + ] + }, + "uni03DC": { + "advanceWidth": 486, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":446,"y":714,"on":true},{"x":446,"y":624,"on":true},{"x":190,"y":624,"on":true},{"x":190,"y":388,"on":true},{"x":430,"y":388,"on":true},{"x":430,"y":176,"on":true},{"x":340,"y":176,"on":true},{"x":340,"y":298,"on":true},{"x":190,"y":298,"on":true},{"x":190,"y":0,"on":true}] + ] + }, + "uni03DD": { + "advanceWidth": 452, + "contours": [ + [{"x":178,"y":-240,"on":true},{"x":76,"y":-240,"on":true},{"x":76,"y":539,"on":true},{"x":419,"y":539,"on":true},{"x":419,"y":456,"on":true},{"x":178,"y":456,"on":true},{"x":178,"y":252,"on":true},{"x":393,"y":252,"on":true},{"x":393,"y":39,"on":true},{"x":302,"y":39,"on":true},{"x":302,"y":169,"on":true},{"x":178,"y":169,"on":true}] + ] + }, + "uni03DE": { + "advanceWidth": 448, + "contours": [ + [{"x":364,"y":-10,"on":true},{"x":310,"y":-10,"on":false},{"x":245,"y":48,"on":false},{"x":245,"y":102,"on":true},{"x":245,"y":122,"on":false},{"x":252,"y":173,"on":false},{"x":260,"y":202,"on":true},{"x":292,"y":326,"on":true},{"x":29,"y":326,"on":true},{"x":84,"y":528,"on":true},{"x":88,"y":544,"on":false},{"x":96,"y":580,"on":false},{"x":96,"y":599,"on":true},{"x":96,"y":621,"on":false},{"x":74,"y":640,"on":false},{"x":57,"y":640,"on":true},{"x":50,"y":640,"on":false},{"x":28,"y":634,"on":false},{"x":21,"y":630,"on":true},{"x":1,"y":710,"on":true},{"x":33,"y":724,"on":false},{"x":75,"y":724,"on":true},{"x":134,"y":724,"on":false},{"x":196,"y":662,"on":false},{"x":196,"y":609,"on":true},{"x":196,"y":592,"on":false},{"x":189,"y":548,"on":false},{"x":181,"y":516,"on":true},{"x":156,"y":417,"on":true},{"x":419,"y":417,"on":true},{"x":357,"y":185,"on":true},{"x":352,"y":168,"on":false},{"x":344,"y":132,"on":false},{"x":344,"y":115,"on":true},{"x":344,"y":93,"on":false},{"x":366,"y":74,"on":false},{"x":384,"y":74,"on":true},{"x":398,"y":74,"on":false},{"x":420,"y":79,"on":false},{"x":428,"y":82,"on":true},{"x":428,"y":0,"on":true},{"x":418,"y":-3,"on":false},{"x":384,"y":-10,"on":false}] + ] + }, + "uni03DF": { + "advanceWidth": 500, + "contours": [ + [{"x":355,"y":-240,"on":true},{"x":291,"y":-240,"on":false},{"x":227,"y":-175,"on":false},{"x":227,"y":-117,"on":true},{"x":227,"y":-91,"on":false},{"x":239,"y":-37,"on":false},{"x":249,"y":-6,"on":true},{"x":337,"y":274,"on":true},{"x":46,"y":202,"on":true},{"x":46,"y":272,"on":true},{"x":139,"y":545,"on":true},{"x":149,"y":574,"on":false},{"x":160,"y":623,"on":false},{"x":160,"y":644,"on":true},{"x":160,"y":664,"on":false},{"x":140,"y":686,"on":false},{"x":123,"y":686,"on":true},{"x":104,"y":686,"on":false},{"x":82,"y":674,"on":true},{"x":62,"y":751,"on":true},{"x":77,"y":758,"on":false},{"x":119,"y":766,"on":false},{"x":142,"y":766,"on":true},{"x":200,"y":766,"on":false},{"x":258,"y":704,"on":false},{"x":258,"y":653,"on":true},{"x":258,"y":626,"on":false},{"x":244,"y":564,"on":false},{"x":231,"y":526,"on":true},{"x":162,"y":319,"on":true},{"x":452,"y":390,"on":true},{"x":453,"y":321,"on":true},{"x":349,"y":-5,"on":true},{"x":338,"y":-40,"on":false},{"x":328,"y":-81,"on":false},{"x":328,"y":-102,"on":true},{"x":328,"y":-128,"on":false},{"x":353,"y":-159,"on":false},{"x":382,"y":-159,"on":true},{"x":397,"y":-159,"on":false},{"x":420,"y":-154,"on":false},{"x":427,"y":-151,"on":true},{"x":427,"y":-228,"on":true},{"x":416,"y":-232,"on":false},{"x":379,"y":-240,"on":false}] + ] + }, + "uni03E0": { + "advanceWidth": 533, + "contours": [ + [{"x":309,"y":0,"on":true},{"x":335,"y":71,"on":false},{"x":367,"y":219,"on":false},{"x":367,"y":294,"on":true},{"x":367,"y":307,"on":false},{"x":366,"y":334,"on":false},{"x":365,"y":346,"on":true},{"x":214,"y":244,"on":true},{"x":178,"y":310,"on":true},{"x":357,"y":429,"on":true},{"x":352,"y":459,"on":false},{"x":335,"y":513,"on":false},{"x":324,"y":534,"on":true},{"x":130,"y":405,"on":true},{"x":93,"y":471,"on":true},{"x":279,"y":594,"on":true},{"x":235,"y":633,"on":false},{"x":174,"y":633,"on":true},{"x":127,"y":633,"on":false},{"x":54,"y":600,"on":false},{"x":34,"y":581,"on":true},{"x":-12,"y":661,"on":true},{"x":20,"y":687,"on":false},{"x":112,"y":724,"on":false},{"x":178,"y":724,"on":true},{"x":324,"y":724,"on":false},{"x":474,"y":504,"on":false},{"x":474,"y":304,"on":true},{"x":474,"y":226,"on":false},{"x":442,"y":67,"on":false},{"x":417,"y":0,"on":true}] + ] + }, + "uni03E1": { + "advanceWidth": 456, + "contours": [ + [{"x":228,"y":-240,"on":true},{"x":262,"y":-163,"on":false},{"x":301,"y":18,"on":false},{"x":301,"y":119,"on":true},{"x":301,"y":174,"on":false},{"x":295,"y":222,"on":true},{"x":104,"y":149,"on":true},{"x":82,"y":218,"on":true},{"x":281,"y":292,"on":true},{"x":274,"y":326,"on":false},{"x":249,"y":392,"on":false},{"x":234,"y":421,"on":true},{"x":45,"y":350,"on":true},{"x":23,"y":420,"on":true},{"x":195,"y":485,"on":true},{"x":149,"y":550,"on":false},{"x":27,"y":641,"on":false},{"x":-42,"y":662,"on":true},{"x":-76,"y":765,"on":true},{"x":74,"y":734,"on":false},{"x":289,"y":557,"on":false},{"x":405,"y":288,"on":false},{"x":405,"y":118,"on":true},{"x":405,"y":18,"on":false},{"x":367,"y":-168,"on":false},{"x":334,"y":-240,"on":true}] + ] + }, + "uni03F0": { + "advanceWidth": 597, + "contours": [ + [{"x":53,"y":0,"on":true},{"x":80,"y":57,"on":false},{"x":125,"y":228,"on":false},{"x":125,"y":322,"on":true},{"x":125,"y":397,"on":false},{"x":84,"y":465,"on":false},{"x":53,"y":465,"on":true},{"x":41,"y":465,"on":false},{"x":24,"y":460,"on":false},{"x":17,"y":456,"on":true},{"x":-2,"y":535,"on":true},{"x":10,"y":540,"on":false},{"x":48,"y":547,"on":false},{"x":73,"y":547,"on":true},{"x":140,"y":547,"on":false},{"x":222,"y":452,"on":false},{"x":222,"y":342,"on":true},{"x":222,"y":300,"on":false},{"x":213,"y":234,"on":false},{"x":205,"y":205,"on":true},{"x":446,"y":539,"on":true},{"x":548,"y":539,"on":true},{"x":518,"y":475,"on":false},{"x":469,"y":305,"on":false},{"x":469,"y":213,"on":true},{"x":469,"y":134,"on":false},{"x":509,"y":73,"on":false},{"x":544,"y":73,"on":true},{"x":555,"y":73,"on":false},{"x":578,"y":78,"on":false},{"x":586,"y":81,"on":true},{"x":588,"y":2,"on":true},{"x":575,"y":-3,"on":false},{"x":541,"y":-10,"on":false},{"x":521,"y":-10,"on":true},{"x":455,"y":-10,"on":false},{"x":372,"y":84,"on":false},{"x":372,"y":194,"on":true},{"x":372,"y":266,"on":false},{"x":389,"y":329,"on":true},{"x":154,"y":0,"on":true}] + ] + }, + "uni03F1": { + "advanceWidth": 555, + "contours": [ + [{"x":290,"y":549,"on":true},{"x":388,"y":549,"on":false},{"x":507,"y":402,"on":false},{"x":507,"y":265,"on":true},{"x":507,"y":132,"on":false},{"x":397,"y":-10,"on":false},{"x":300,"y":-10,"on":true},{"x":252,"y":-10,"on":false},{"x":186,"y":25,"on":false},{"x":160,"y":57,"on":true},{"x":154,"y":57,"on":true},{"x":158,"y":-5,"on":false},{"x":187,"y":-76,"on":false},{"x":243,"y":-107,"on":false},{"x":290,"y":-108,"on":true},{"x":369,"y":-110,"on":false},{"x":434,"y":-140,"on":false},{"x":434,"y":-190,"on":true},{"x":434,"y":-205,"on":false},{"x":429,"y":-229,"on":false},{"x":425,"y":-240,"on":true},{"x":333,"y":-240,"on":true},{"x":337,"y":-231,"on":false},{"x":337,"y":-217,"on":true},{"x":337,"y":-203,"on":false},{"x":310,"y":-193,"on":false},{"x":264,"y":-192,"on":true},{"x":186,"y":-190,"on":false},{"x":92,"y":-121,"on":false},{"x":49,"y":36,"on":false},{"x":49,"y":171,"on":true},{"x":49,"y":364,"on":false},{"x":172,"y":549,"on":false}], + [{"x":287,"y":464,"on":true},{"x":225,"y":464,"on":false},{"x":154,"y":338,"on":false},{"x":152,"y":192,"on":true},{"x":152,"y":180,"on":false},{"x":152,"y":160,"on":false},{"x":153,"y":149,"on":true},{"x":178,"y":115,"on":false},{"x":244,"y":74,"on":false},{"x":285,"y":74,"on":true},{"x":347,"y":74,"on":false},{"x":403,"y":171,"on":false},{"x":403,"y":269,"on":true},{"x":403,"y":368,"on":false},{"x":347,"y":464,"on":false}] + ] + }, + "uni03F2": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni03F3": { + "advanceWidth": 253, + "references": [ + {"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni03F4": { + "advanceWidth": 707, + "references": [ + {"glyph":"uni0472","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni03F5": { + "advanceWidth": 458, + "references": [ + {"glyph":"uni0454","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni03F6": { + "advanceWidth": 456, + "references": [ + {"glyph":"uni044D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni03F7": { + "advanceWidth": 552, + "references": [ + {"glyph":"Thorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni03F8": { + "advanceWidth": 566, + "references": [ + {"glyph":"thorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni03F9": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni03FA": { + "advanceWidth": 836, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":222,"y":714,"on":true},{"x":414,"y":341,"on":true},{"x":417,"y":341,"on":true},{"x":613,"y":714,"on":true},{"x":750,"y":714,"on":true},{"x":750,"y":0,"on":true},{"x":648,"y":0,"on":true},{"x":648,"y":403,"on":true},{"x":648,"y":454,"on":false},{"x":652,"y":563,"on":false},{"x":654,"y":602,"on":true},{"x":651,"y":602,"on":true},{"x":456,"y":235,"on":true},{"x":369,"y":235,"on":true},{"x":180,"y":601,"on":true},{"x":176,"y":601,"on":true},{"x":179,"y":561,"on":false},{"x":183,"y":454,"on":false},{"x":183,"y":400,"on":true},{"x":183,"y":0,"on":true}] + ] + }, + "uni03FB": { + "advanceWidth": 689, + "contours": [ + [{"x":75,"y":-240,"on":true},{"x":75,"y":539,"on":true},{"x":206,"y":539,"on":true},{"x":345,"y":288,"on":true},{"x":485,"y":539,"on":true},{"x":614,"y":539,"on":true},{"x":614,"y":0,"on":true},{"x":517,"y":0,"on":true},{"x":517,"y":339,"on":true},{"x":517,"y":361,"on":false},{"x":518,"y":412,"on":false},{"x":519,"y":432,"on":true},{"x":382,"y":187,"on":true},{"x":305,"y":187,"on":true},{"x":170,"y":431,"on":true},{"x":171,"y":409,"on":false},{"x":172,"y":356,"on":false},{"x":172,"y":332,"on":true},{"x":172,"y":-240,"on":true}] + ] + }, + "uni03FC": { + "advanceWidth": 558, + "contours": [ + [{"x":68,"y":-240,"on":true},{"x":68,"y":-163,"on":true},{"x":3,"y":-163,"on":true},{"x":3,"y":-87,"on":true},{"x":68,"y":-87,"on":true},{"x":68,"y":275,"on":true},{"x":68,"y":407,"on":false},{"x":184,"y":549,"on":false},{"x":292,"y":549,"on":true},{"x":388,"y":549,"on":false},{"x":510,"y":407,"on":false},{"x":510,"y":270,"on":true},{"x":510,"y":142,"on":false},{"x":403,"y":-10,"on":false},{"x":301,"y":-10,"on":true},{"x":222,"y":-10,"on":false},{"x":171,"y":32,"on":true},{"x":165,"y":32,"on":true},{"x":167,"y":14,"on":false},{"x":170,"y":-50,"on":false},{"x":171,"y":-87,"on":true},{"x":330,"y":-87,"on":true},{"x":330,"y":-163,"on":true},{"x":171,"y":-163,"on":true},{"x":171,"y":-240,"on":true}], + [{"x":286,"y":75,"on":true},{"x":350,"y":75,"on":false},{"x":406,"y":172,"on":false},{"x":406,"y":270,"on":true},{"x":406,"y":368,"on":false},{"x":350,"y":464,"on":false},{"x":288,"y":464,"on":true},{"x":171,"y":464,"on":false},{"x":171,"y":280,"on":true},{"x":171,"y":121,"on":true},{"x":194,"y":98,"on":false},{"x":253,"y":75,"on":false}] + ] + }, + "uni03FD": { + "advanceWidth": 569, + "references": [ + {"glyph":"uni0186","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni03FE": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"periodcentered","x":238,"y":4,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni03FF": { + "advanceWidth": 569, + "references": [ + {"glyph":"uni0186","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"periodcentered","x":75,"y":4,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0400": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":84,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0401": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-9,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0402": { + "advanceWidth": 674, + "contours": [ + [{"x":445,"y":-10,"on":true},{"x":403,"y":-10,"on":false},{"x":372,"y":3,"on":true},{"x":372,"y":93,"on":true},{"x":400,"y":81,"on":false},{"x":434,"y":81,"on":true},{"x":463,"y":81,"on":false},{"x":508,"y":119,"on":false},{"x":508,"y":176,"on":true},{"x":508,"y":254,"on":true},{"x":508,"y":305,"on":false},{"x":460,"y":352,"on":false},{"x":404,"y":352,"on":true},{"x":269,"y":352,"on":true},{"x":269,"y":0,"on":true},{"x":164,"y":0,"on":true},{"x":164,"y":623,"on":true},{"x":12,"y":623,"on":true},{"x":12,"y":714,"on":true},{"x":453,"y":714,"on":true},{"x":453,"y":623,"on":true},{"x":269,"y":623,"on":true},{"x":269,"y":444,"on":true},{"x":412,"y":444,"on":true},{"x":510,"y":444,"on":false},{"x":613,"y":350,"on":false},{"x":613,"y":261,"on":true},{"x":613,"y":183,"on":true},{"x":613,"y":87,"on":false},{"x":523,"y":-10,"on":false}] + ] + }, + "uni0403": { + "advanceWidth": 478, + "references": [ + {"glyph":"Gamma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":181,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0404": { + "advanceWidth": 585, + "contours": [ + [{"x":368,"y":633,"on":true},{"x":278,"y":633,"on":false},{"x":177,"y":514,"on":false},{"x":167,"y":414,"on":true},{"x":457,"y":414,"on":true},{"x":457,"y":324,"on":true},{"x":166,"y":324,"on":true},{"x":170,"y":214,"on":false},{"x":271,"y":81,"on":false},{"x":370,"y":81,"on":true},{"x":414,"y":81,"on":false},{"x":492,"y":100,"on":false},{"x":531,"y":114,"on":true},{"x":531,"y":22,"on":true},{"x":458,"y":-10,"on":false},{"x":358,"y":-10,"on":true},{"x":256,"y":-10,"on":false},{"x":122,"y":80,"on":false},{"x":55,"y":245,"on":false},{"x":55,"y":357,"on":true},{"x":55,"y":464,"on":false},{"x":126,"y":630,"on":false},{"x":266,"y":725,"on":false},{"x":368,"y":725,"on":true},{"x":424,"y":725,"on":false},{"x":516,"y":702,"on":false},{"x":556,"y":680,"on":true},{"x":518,"y":592,"on":true},{"x":484,"y":610,"on":false},{"x":412,"y":633,"on":false}] + ] + }, + "uni0405": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0406": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0407": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-114,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0408": { + "advanceWidth": 270, + "references": [ + {"glyph":"J","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0409": { + "advanceWidth": 864, + "contours": [ + [{"x":64,"y":-10,"on":true},{"x":27,"y":-10,"on":false},{"x":2,"y":1,"on":true},{"x":2,"y":90,"on":true},{"x":22,"y":79,"on":false},{"x":49,"y":79,"on":true},{"x":84,"y":79,"on":false},{"x":114,"y":152,"on":false},{"x":125,"y":210,"on":true},{"x":136,"y":265,"on":false},{"x":171,"y":530,"on":false},{"x":191,"y":714,"on":true},{"x":522,"y":714,"on":true},{"x":522,"y":422,"on":true},{"x":572,"y":422,"on":true},{"x":708,"y":422,"on":false},{"x":827,"y":308,"on":false},{"x":827,"y":214,"on":true},{"x":827,"y":115,"on":false},{"x":704,"y":0,"on":false},{"x":579,"y":0,"on":true},{"x":418,"y":0,"on":true},{"x":418,"y":621,"on":true},{"x":280,"y":621,"on":true},{"x":270,"y":522,"on":false},{"x":249,"y":347,"on":false},{"x":229,"y":210,"on":false},{"x":220,"y":168,"on":true},{"x":201,"y":81,"on":false},{"x":136,"y":-9,"on":false}], + [{"x":522,"y":89,"on":true},{"x":572,"y":89,"on":true},{"x":720,"y":89,"on":false},{"x":720,"y":213,"on":true},{"x":720,"y":278,"on":false},{"x":642,"y":332,"on":false},{"x":563,"y":332,"on":true},{"x":522,"y":332,"on":true}] + ] + }, + "uni040A": { + "advanceWidth": 878, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":419,"on":true},{"x":433,"y":419,"on":true},{"x":433,"y":714,"on":true},{"x":538,"y":714,"on":true},{"x":538,"y":420,"on":true},{"x":586,"y":420,"on":true},{"x":722,"y":420,"on":false},{"x":841,"y":308,"on":false},{"x":841,"y":214,"on":true},{"x":841,"y":114,"on":false},{"x":718,"y":0,"on":false},{"x":594,"y":0,"on":true},{"x":433,"y":0,"on":true},{"x":433,"y":328,"on":true},{"x":191,"y":328,"on":true},{"x":191,"y":0,"on":true}], + [{"x":537,"y":89,"on":true},{"x":587,"y":89,"on":true},{"x":734,"y":89,"on":false},{"x":734,"y":213,"on":true},{"x":734,"y":278,"on":false},{"x":657,"y":330,"on":false},{"x":578,"y":330,"on":true},{"x":537,"y":330,"on":true}] + ] + }, + "uni040B": { + "advanceWidth": 677, + "contours": [ + [{"x":466,"y":714,"on":true},{"x":466,"y":622,"on":true},{"x":269,"y":622,"on":true},{"x":269,"y":443,"on":true},{"x":417,"y":443,"on":true},{"x":512,"y":443,"on":false},{"x":613,"y":350,"on":false},{"x":613,"y":261,"on":true},{"x":613,"y":0,"on":true},{"x":508,"y":0,"on":true},{"x":508,"y":254,"on":true},{"x":508,"y":305,"on":false},{"x":462,"y":352,"on":false},{"x":409,"y":352,"on":true},{"x":269,"y":352,"on":true},{"x":269,"y":0,"on":true},{"x":163,"y":0,"on":true},{"x":163,"y":622,"on":true},{"x":12,"y":622,"on":true},{"x":12,"y":714,"on":true}] + ] + }, + "uni040C": { + "advanceWidth": 571, + "references": [ + {"glyph":"uni041A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":214,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni040D": { + "advanceWidth": 713, + "references": [ + {"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":178,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni040E": { + "advanceWidth": 557, + "references": [ + {"glyph":"uni0423","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":6,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni040F": { + "advanceWidth": 664, + "contours": [ + [{"x":578,"y":0,"on":true},{"x":382,"y":0,"on":true},{"x":382,"y":-196,"on":true},{"x":279,"y":-196,"on":true},{"x":279,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":92,"on":true},{"x":473,"y":92,"on":true},{"x":473,"y":714,"on":true},{"x":578,"y":714,"on":true}] + ] + }, + "uni0410": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0411": { + "advanceWidth": 563, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":477,"y":714,"on":true},{"x":477,"y":623,"on":true},{"x":191,"y":623,"on":true},{"x":191,"y":422,"on":true},{"x":266,"y":422,"on":true},{"x":359,"y":422,"on":false},{"x":471,"y":371,"on":false},{"x":521,"y":278,"on":false},{"x":521,"y":214,"on":true},{"x":521,"y":113,"on":false},{"x":400,"y":0,"on":false},{"x":273,"y":0,"on":true}], + [{"x":191,"y":89,"on":true},{"x":267,"y":89,"on":true},{"x":343,"y":89,"on":false},{"x":414,"y":150,"on":false},{"x":414,"y":213,"on":true},{"x":414,"y":278,"on":false},{"x":339,"y":332,"on":false},{"x":258,"y":332,"on":true},{"x":191,"y":332,"on":true}] + ] + }, + "uni0412": { + "advanceWidth": 596, + "references": [ + {"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0413": { + "advanceWidth": 478, + "references": [ + {"glyph":"Gamma","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0414": { + "advanceWidth": 649, + "contours": [ + [{"x":546,"y":714,"on":true},{"x":546,"y":92,"on":true},{"x":629,"y":92,"on":true},{"x":629,"y":-196,"on":true},{"x":528,"y":-196,"on":true},{"x":528,"y":0,"on":true},{"x":106,"y":0,"on":true},{"x":106,"y":-196,"on":true},{"x":5,"y":-196,"on":true},{"x":5,"y":92,"on":true},{"x":56,"y":92,"on":true},{"x":119,"y":224,"on":false},{"x":203,"y":543,"on":false},{"x":212,"y":714,"on":true}], + [{"x":442,"y":622,"on":true},{"x":304,"y":622,"on":true},{"x":298,"y":538,"on":false},{"x":260,"y":350,"on":false},{"x":202,"y":168,"on":false},{"x":167,"y":92,"on":true},{"x":442,"y":92,"on":true}] + ] + }, + "uni0415": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0416": { + "advanceWidth": 798, + "contours": [ + [{"x":242,"y":369,"on":true},{"x":7,"y":714,"on":true},{"x":120,"y":714,"on":true},{"x":349,"y":369,"on":true},{"x":349,"y":714,"on":true},{"x":449,"y":714,"on":true},{"x":449,"y":369,"on":true},{"x":678,"y":714,"on":true},{"x":791,"y":714,"on":true},{"x":556,"y":370,"on":true},{"x":799,"y":0,"on":true},{"x":683,"y":0,"on":true},{"x":449,"y":363,"on":true},{"x":449,"y":0,"on":true},{"x":349,"y":0,"on":true},{"x":349,"y":363,"on":true},{"x":115,"y":0,"on":true},{"x":-1,"y":0,"on":true}] + ] + }, + "uni0417": { + "advanceWidth": 548, + "contours": [ + [{"x":480,"y":548,"on":true},{"x":480,"y":477,"on":false},{"x":396,"y":389,"on":false},{"x":325,"y":376,"on":true},{"x":325,"y":372,"on":true},{"x":408,"y":362,"on":false},{"x":496,"y":273,"on":false},{"x":496,"y":200,"on":true},{"x":496,"y":106,"on":false},{"x":364,"y":-10,"on":false},{"x":232,"y":-10,"on":true},{"x":176,"y":-10,"on":false},{"x":77,"y":7,"on":false},{"x":37,"y":26,"on":true},{"x":37,"y":122,"on":true},{"x":76,"y":101,"on":false},{"x":178,"y":78,"on":false},{"x":222,"y":78,"on":true},{"x":307,"y":78,"on":false},{"x":388,"y":142,"on":false},{"x":388,"y":204,"on":true},{"x":388,"y":268,"on":false},{"x":288,"y":326,"on":false},{"x":196,"y":326,"on":true},{"x":118,"y":326,"on":true},{"x":118,"y":414,"on":true},{"x":192,"y":414,"on":true},{"x":287,"y":414,"on":false},{"x":374,"y":476,"on":false},{"x":374,"y":534,"on":true},{"x":374,"y":584,"on":false},{"x":308,"y":636,"on":false},{"x":251,"y":636,"on":true},{"x":198,"y":636,"on":false},{"x":121,"y":606,"on":false},{"x":87,"y":581,"on":true},{"x":39,"y":653,"on":true},{"x":82,"y":686,"on":false},{"x":190,"y":724,"on":false},{"x":262,"y":724,"on":true},{"x":366,"y":724,"on":false},{"x":480,"y":626,"on":false}] + ] + }, + "uni0418": { + "advanceWidth": 713, + "contours": [ + [{"x":86,"y":714,"on":true},{"x":185,"y":714,"on":true},{"x":185,"y":329,"on":true},{"x":185,"y":301,"on":false},{"x":183,"y":233,"on":false},{"x":180,"y":170,"on":false},{"x":178,"y":148,"on":true},{"x":182,"y":148,"on":true},{"x":505,"y":714,"on":true},{"x":628,"y":714,"on":true},{"x":628,"y":0,"on":true},{"x":530,"y":0,"on":true},{"x":530,"y":386,"on":true},{"x":530,"y":416,"on":false},{"x":532,"y":488,"on":false},{"x":536,"y":552,"on":false},{"x":538,"y":571,"on":true},{"x":534,"y":571,"on":true},{"x":209,"y":0,"on":true},{"x":86,"y":0,"on":true}] + ] + }, + "uni0419": { + "advanceWidth": 713, + "references": [ + {"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":89,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni041A": { + "advanceWidth": 571, + "contours": [ + [{"x":573,"y":0,"on":true},{"x":451,"y":0,"on":true},{"x":191,"y":364,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":370,"on":true},{"x":446,"y":714,"on":true},{"x":561,"y":714,"on":true},{"x":304,"y":369,"on":true}] + ] + }, + "uni041B": { + "advanceWidth": 646, + "contours": [ + [{"x":560,"y":0,"on":true},{"x":455,"y":0,"on":true},{"x":455,"y":621,"on":true},{"x":279,"y":621,"on":true},{"x":273,"y":567,"on":false},{"x":260,"y":445,"on":false},{"x":245,"y":327,"on":false},{"x":230,"y":223,"on":false},{"x":223,"y":187,"on":true},{"x":205,"y":89,"on":false},{"x":138,"y":-10,"on":false},{"x":64,"y":-10,"on":true},{"x":27,"y":-10,"on":false},{"x":2,"y":1,"on":true},{"x":2,"y":90,"on":true},{"x":22,"y":79,"on":false},{"x":49,"y":79,"on":true},{"x":85,"y":79,"on":false},{"x":117,"y":158,"on":false},{"x":128,"y":228,"on":true},{"x":134,"y":267,"on":false},{"x":155,"y":417,"on":false},{"x":178,"y":610,"on":false},{"x":190,"y":714,"on":true},{"x":560,"y":714,"on":true}] + ] + }, + "uni041C": { + "advanceWidth": 850, + "references": [ + {"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni041D": { + "advanceWidth": 674, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni041E": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni041F": { + "advanceWidth": 664, + "references": [ + {"glyph":"Pi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0420": { + "advanceWidth": 555, + "references": [ + {"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0421": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0422": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0423": { + "advanceWidth": 557, + "contours": [ + [{"x":557,"y":714,"on":true},{"x":359,"y":205,"on":true},{"x":331,"y":132,"on":false},{"x":272,"y":36,"on":false},{"x":189,"y":-10,"on":false},{"x":125,"y":-10,"on":true},{"x":76,"y":-10,"on":false},{"x":37,"y":4,"on":true},{"x":37,"y":100,"on":true},{"x":74,"y":83,"on":false},{"x":117,"y":83,"on":true},{"x":163,"y":83,"on":false},{"x":214,"y":134,"on":false},{"x":236,"y":195,"on":true},{"x":7,"y":714,"on":true},{"x":120,"y":714,"on":true},{"x":265,"y":375,"on":true},{"x":271,"y":359,"on":false},{"x":286,"y":317,"on":false},{"x":291,"y":296,"on":true},{"x":296,"y":296,"on":true},{"x":300,"y":315,"on":false},{"x":313,"y":356,"on":false},{"x":319,"y":373,"on":true},{"x":447,"y":714,"on":true}] + ] + }, + "uni0424": { + "advanceWidth": 760, + "references": [ + {"glyph":"Phi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0425": { + "advanceWidth": 541, + "references": [ + {"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0426": { + "advanceWidth": 686, + "contours": [ + [{"x":664,"y":90,"on":true},{"x":664,"y":-196,"on":true},{"x":564,"y":-196,"on":true},{"x":564,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":92,"on":true},{"x":475,"y":92,"on":true},{"x":475,"y":714,"on":true},{"x":580,"y":714,"on":true},{"x":580,"y":90,"on":true}] + ] + }, + "uni0427": { + "advanceWidth": 639, + "contours": [ + [{"x":554,"y":0,"on":true},{"x":449,"y":0,"on":true},{"x":449,"y":287,"on":true},{"x":396,"y":266,"on":false},{"x":303,"y":243,"on":false},{"x":252,"y":243,"on":true},{"x":164,"y":243,"on":false},{"x":67,"y":338,"on":false},{"x":67,"y":427,"on":true},{"x":67,"y":714,"on":true},{"x":171,"y":714,"on":true},{"x":171,"y":448,"on":true},{"x":171,"y":391,"on":false},{"x":221,"y":335,"on":false},{"x":276,"y":335,"on":true},{"x":322,"y":335,"on":false},{"x":400,"y":354,"on":false},{"x":449,"y":373,"on":true},{"x":449,"y":714,"on":true},{"x":554,"y":714,"on":true}] + ] + }, + "uni0428": { + "advanceWidth": 948, + "contours": [ + [{"x":862,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":92,"on":true},{"x":421,"y":92,"on":true},{"x":421,"y":714,"on":true},{"x":526,"y":714,"on":true},{"x":526,"y":92,"on":true},{"x":756,"y":92,"on":true},{"x":756,"y":714,"on":true},{"x":862,"y":714,"on":true}] + ] + }, + "uni0429": { + "advanceWidth": 964, + "contours": [ + [{"x":940,"y":90,"on":true},{"x":940,"y":-196,"on":true},{"x":839,"y":-196,"on":true},{"x":839,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":92,"on":true},{"x":418,"y":92,"on":true},{"x":418,"y":714,"on":true},{"x":523,"y":714,"on":true},{"x":523,"y":92,"on":true},{"x":750,"y":92,"on":true},{"x":750,"y":714,"on":true},{"x":855,"y":714,"on":true},{"x":855,"y":90,"on":true}] + ] + }, + "uni042A": { + "advanceWidth": 645, + "contours": [ + [{"x":166,"y":0,"on":true},{"x":166,"y":622,"on":true},{"x":9,"y":622,"on":true},{"x":9,"y":714,"on":true},{"x":271,"y":714,"on":true},{"x":271,"y":422,"on":true},{"x":349,"y":422,"on":true},{"x":483,"y":422,"on":false},{"x":601,"y":308,"on":false},{"x":601,"y":214,"on":true},{"x":601,"y":115,"on":false},{"x":480,"y":0,"on":false},{"x":356,"y":0,"on":true}], + [{"x":271,"y":89,"on":true},{"x":350,"y":89,"on":true},{"x":495,"y":89,"on":false},{"x":495,"y":213,"on":true},{"x":495,"y":278,"on":false},{"x":418,"y":332,"on":false},{"x":341,"y":332,"on":true},{"x":271,"y":332,"on":true}] + ] + }, + "uni042B": { + "advanceWidth": 806, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":422,"on":true},{"x":266,"y":422,"on":true},{"x":400,"y":422,"on":false},{"x":517,"y":308,"on":false},{"x":517,"y":214,"on":true},{"x":517,"y":114,"on":false},{"x":396,"y":0,"on":false},{"x":271,"y":0,"on":true}], + [{"x":616,"y":0,"on":true},{"x":616,"y":714,"on":true},{"x":721,"y":714,"on":true},{"x":721,"y":0,"on":true}], + [{"x":191,"y":89,"on":true},{"x":266,"y":89,"on":true},{"x":410,"y":89,"on":false},{"x":410,"y":213,"on":true},{"x":410,"y":278,"on":false},{"x":335,"y":331,"on":false},{"x":259,"y":331,"on":true},{"x":191,"y":331,"on":true}] + ] + }, + "uni042C": { + "advanceWidth": 576, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":422,"on":true},{"x":279,"y":422,"on":true},{"x":412,"y":422,"on":false},{"x":533,"y":308,"on":false},{"x":533,"y":214,"on":true},{"x":533,"y":114,"on":false},{"x":408,"y":0,"on":false},{"x":284,"y":0,"on":true}], + [{"x":191,"y":89,"on":true},{"x":279,"y":89,"on":true},{"x":426,"y":89,"on":false},{"x":426,"y":213,"on":true},{"x":426,"y":278,"on":false},{"x":346,"y":332,"on":false},{"x":270,"y":332,"on":true},{"x":191,"y":332,"on":true}] + ] + }, + "uni042D": { + "advanceWidth": 578, + "contours": [ + [{"x":214,"y":633,"on":true},{"x":171,"y":633,"on":false},{"x":98,"y":611,"on":false},{"x":66,"y":595,"on":true},{"x":29,"y":682,"on":true},{"x":111,"y":724,"on":false},{"x":218,"y":724,"on":true},{"x":316,"y":724,"on":false},{"x":451,"y":636,"on":false},{"x":522,"y":472,"on":false},{"x":521,"y":362,"on":true},{"x":521,"y":251,"on":false},{"x":454,"y":83,"on":false},{"x":317,"y":-10,"on":false},{"x":212,"y":-10,"on":true},{"x":160,"y":-10,"on":false},{"x":78,"y":5,"on":false},{"x":40,"y":20,"on":true},{"x":40,"y":112,"on":true},{"x":79,"y":98,"on":false},{"x":158,"y":81,"on":false},{"x":201,"y":81,"on":true},{"x":304,"y":81,"on":false},{"x":407,"y":212,"on":false},{"x":411,"y":324,"on":true},{"x":121,"y":324,"on":true},{"x":121,"y":415,"on":true},{"x":410,"y":415,"on":true},{"x":406,"y":478,"on":false},{"x":357,"y":577,"on":false},{"x":272,"y":633,"on":false}] + ] + }, + "uni042E": { + "advanceWidth": 945, + "contours": [ + [{"x":889,"y":358,"on":true},{"x":889,"y":249,"on":false},{"x":828,"y":83,"on":false},{"x":704,"y":-10,"on":false},{"x":609,"y":-10,"on":true},{"x":476,"y":-10,"on":false},{"x":334,"y":169,"on":false},{"x":327,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":329,"y":418,"on":true},{"x":340,"y":562,"on":false},{"x":479,"y":725,"on":false},{"x":608,"y":725,"on":true},{"x":747,"y":725,"on":false},{"x":889,"y":529,"on":false}], + [{"x":435,"y":358,"on":true},{"x":435,"y":226,"on":false},{"x":519,"y":82,"on":false},{"x":607,"y":82,"on":true},{"x":696,"y":82,"on":false},{"x":780,"y":226,"on":false},{"x":780,"y":358,"on":true},{"x":780,"y":491,"on":false},{"x":696,"y":633,"on":false},{"x":608,"y":633,"on":true},{"x":520,"y":633,"on":false},{"x":435,"y":489,"on":false}] + ] + }, + "uni042F": { + "advanceWidth": 585, + "contours": [ + [{"x":291,"y":291,"on":true},{"x":131,"y":0,"on":true},{"x":13,"y":0,"on":true},{"x":193,"y":314,"on":true},{"x":139,"y":334,"on":false},{"x":65,"y":428,"on":false},{"x":65,"y":510,"on":true},{"x":65,"y":714,"on":false},{"x":312,"y":714,"on":true},{"x":499,"y":714,"on":true},{"x":499,"y":0,"on":true},{"x":394,"y":0,"on":true},{"x":394,"y":291,"on":true}], + [{"x":394,"y":625,"on":true},{"x":316,"y":625,"on":true},{"x":245,"y":625,"on":false},{"x":173,"y":569,"on":false},{"x":173,"y":506,"on":true},{"x":173,"y":443,"on":false},{"x":242,"y":377,"on":false},{"x":316,"y":377,"on":true},{"x":394,"y":377,"on":true}] + ] + }, + "uni0430": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0431": { + "advanceWidth": 553, + "contours": [ + [{"x":50,"y":330,"on":true},{"x":50,"y":493,"on":false},{"x":148,"y":690,"on":false},{"x":266,"y":723,"on":true},{"x":316,"y":736,"on":false},{"x":428,"y":758,"on":false},{"x":488,"y":765,"on":true},{"x":501,"y":675,"on":true},{"x":468,"y":671,"on":false},{"x":387,"y":658,"on":false},{"x":310,"y":644,"on":false},{"x":284,"y":637,"on":true},{"x":222,"y":618,"on":false},{"x":160,"y":517,"on":false},{"x":156,"y":418,"on":true},{"x":162,"y":418,"on":true},{"x":181,"y":450,"on":false},{"x":258,"y":502,"on":false},{"x":313,"y":502,"on":true},{"x":406,"y":502,"on":false},{"x":506,"y":373,"on":false},{"x":506,"y":260,"on":true},{"x":506,"y":127,"on":false},{"x":380,"y":-10,"on":false},{"x":275,"y":-10,"on":true},{"x":171,"y":-10,"on":false},{"x":50,"y":159,"on":false}], + [{"x":281,"y":75,"on":true},{"x":336,"y":75,"on":false},{"x":400,"y":157,"on":false},{"x":400,"y":250,"on":true},{"x":400,"y":330,"on":false},{"x":349,"y":419,"on":false},{"x":291,"y":419,"on":true},{"x":258,"y":419,"on":false},{"x":201,"y":386,"on":false},{"x":162,"y":340,"on":false},{"x":154,"y":322,"on":true},{"x":154,"y":253,"on":false},{"x":178,"y":141,"on":false},{"x":232,"y":75,"on":false}] + ] + }, + "uni0432": { + "advanceWidth": 536, + "contours": [ + [{"x":478,"y":403,"on":true},{"x":478,"y":355,"on":false},{"x":426,"y":296,"on":false},{"x":380,"y":286,"on":true},{"x":380,"y":282,"on":true},{"x":430,"y":275,"on":false},{"x":494,"y":213,"on":false},{"x":494,"y":159,"on":true},{"x":494,"y":87,"on":false},{"x":396,"y":0,"on":false},{"x":290,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":287,"y":539,"on":true},{"x":372,"y":539,"on":false},{"x":478,"y":476,"on":false}], + [{"x":375,"y":392,"on":true},{"x":375,"y":460,"on":false},{"x":281,"y":460,"on":true},{"x":178,"y":460,"on":true},{"x":178,"y":320,"on":true},{"x":273,"y":320,"on":true},{"x":375,"y":320,"on":false}], + [{"x":389,"y":163,"on":true},{"x":389,"y":205,"on":false},{"x":333,"y":242,"on":false},{"x":280,"y":242,"on":true},{"x":178,"y":242,"on":true},{"x":178,"y":78,"on":true},{"x":281,"y":78,"on":true},{"x":334,"y":78,"on":false},{"x":389,"y":118,"on":false}] + ] + }, + "uni0433": { + "advanceWidth": 404, + "contours": [ + [{"x":387,"y":539,"on":true},{"x":387,"y":455,"on":true},{"x":178,"y":455,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni0434": { + "advanceWidth": 556, + "contours": [ + [{"x":467,"y":539,"on":true},{"x":467,"y":84,"on":true},{"x":538,"y":84,"on":true},{"x":538,"y":-189,"on":true},{"x":441,"y":-189,"on":true},{"x":441,"y":0,"on":true},{"x":111,"y":0,"on":true},{"x":111,"y":-189,"on":true},{"x":14,"y":-189,"on":true},{"x":14,"y":84,"on":true},{"x":58,"y":84,"on":true},{"x":114,"y":176,"on":false},{"x":170,"y":417,"on":false},{"x":174,"y":539,"on":true}], + [{"x":366,"y":458,"on":true},{"x":262,"y":458,"on":true},{"x":255,"y":362,"on":false},{"x":206,"y":163,"on":false},{"x":163,"y":84,"on":true},{"x":366,"y":84,"on":true}] + ] + }, + "uni0435": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0436": { + "advanceWidth": 720, + "contours": [ + [{"x":702,"y":539,"on":true},{"x":512,"y":280,"on":true},{"x":718,"y":0,"on":true},{"x":605,"y":0,"on":true},{"x":408,"y":275,"on":true},{"x":408,"y":0,"on":true},{"x":311,"y":0,"on":true},{"x":311,"y":275,"on":true},{"x":115,"y":0,"on":true},{"x":2,"y":0,"on":true},{"x":208,"y":280,"on":true},{"x":18,"y":539,"on":true},{"x":128,"y":539,"on":true},{"x":311,"y":279,"on":true},{"x":311,"y":539,"on":true},{"x":408,"y":539,"on":true},{"x":408,"y":279,"on":true},{"x":593,"y":539,"on":true}] + ] + }, + "uni0437": { + "advanceWidth": 457, + "contours": [ + [{"x":212,"y":549,"on":true},{"x":294,"y":549,"on":false},{"x":399,"y":476,"on":false},{"x":399,"y":408,"on":true},{"x":399,"y":362,"on":false},{"x":348,"y":301,"on":false},{"x":305,"y":288,"on":true},{"x":305,"y":284,"on":true},{"x":353,"y":271,"on":false},{"x":416,"y":209,"on":false},{"x":416,"y":152,"on":true},{"x":416,"y":83,"on":false},{"x":309,"y":-10,"on":false},{"x":202,"y":-10,"on":true},{"x":94,"y":-10,"on":false},{"x":32,"y":25,"on":true},{"x":32,"y":116,"on":true},{"x":63,"y":99,"on":false},{"x":145,"y":74,"on":false},{"x":193,"y":74,"on":true},{"x":246,"y":74,"on":false},{"x":315,"y":113,"on":false},{"x":315,"y":158,"on":true},{"x":315,"y":242,"on":false},{"x":183,"y":242,"on":true},{"x":127,"y":242,"on":true},{"x":127,"y":321,"on":true},{"x":175,"y":321,"on":true},{"x":234,"y":321,"on":false},{"x":302,"y":357,"on":false},{"x":302,"y":398,"on":true},{"x":302,"y":467,"on":false},{"x":202,"y":467,"on":true},{"x":168,"y":467,"on":false},{"x":105,"y":451,"on":false},{"x":71,"y":435,"on":true},{"x":36,"y":512,"on":true},{"x":116,"y":549,"on":false}] + ] + }, + "uni0438": { + "advanceWidth": 602, + "contours": [ + [{"x":173,"y":539,"on":true},{"x":173,"y":252,"on":true},{"x":173,"y":234,"on":false},{"x":171,"y":185,"on":false},{"x":168,"y":136,"on":false},{"x":167,"y":119,"on":true},{"x":406,"y":539,"on":true},{"x":526,"y":539,"on":true},{"x":526,"y":0,"on":true},{"x":429,"y":0,"on":true},{"x":429,"y":281,"on":true},{"x":429,"y":301,"on":false},{"x":431,"y":353,"on":false},{"x":434,"y":403,"on":false},{"x":435,"y":420,"on":true},{"x":196,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni0439": { + "advanceWidth": 602, + "references": [ + {"glyph":"uni0438","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":30,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni043A": { + "advanceWidth": 506, + "contours": [ + [{"x":371,"y":539,"on":true},{"x":483,"y":539,"on":true},{"x":284,"y":281,"on":true},{"x":499,"y":0,"on":true},{"x":383,"y":0,"on":true},{"x":178,"y":275,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":279,"on":true}] + ] + }, + "uni043B": { + "advanceWidth": 544, + "contours": [ + [{"x":468,"y":0,"on":true},{"x":366,"y":0,"on":true},{"x":366,"y":454,"on":true},{"x":235,"y":454,"on":true},{"x":224,"y":290,"on":false},{"x":184,"y":86,"on":false},{"x":114,"y":-8,"on":false},{"x":57,"y":-8,"on":true},{"x":24,"y":-8,"on":false},{"x":4,"y":2,"on":true},{"x":4,"y":83,"on":true},{"x":17,"y":78,"on":false},{"x":34,"y":78,"on":true},{"x":64,"y":78,"on":false},{"x":106,"y":173,"on":false},{"x":135,"y":376,"on":false},{"x":145,"y":539,"on":true},{"x":468,"y":539,"on":true}] + ] + }, + "uni043C": { + "advanceWidth": 708, + "contours": [ + [{"x":632,"y":539,"on":true},{"x":632,"y":0,"on":true},{"x":538,"y":0,"on":true},{"x":538,"y":305,"on":true},{"x":538,"y":331,"on":false},{"x":541,"y":393,"on":false},{"x":543,"y":425,"on":true},{"x":540,"y":425,"on":true},{"x":394,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":168,"y":425,"on":true},{"x":164,"y":425,"on":true},{"x":166,"y":394,"on":false},{"x":169,"y":332,"on":false},{"x":169,"y":304,"on":true},{"x":169,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":217,"y":539,"on":true},{"x":353,"y":132,"on":true},{"x":493,"y":539,"on":true}] + ] + }, + "uni043D": { + "advanceWidth": 582, + "contours": [ + [{"x":178,"y":539,"on":true},{"x":178,"y":320,"on":true},{"x":404,"y":320,"on":true},{"x":404,"y":539,"on":true},{"x":506,"y":539,"on":true},{"x":506,"y":0,"on":true},{"x":404,"y":0,"on":true},{"x":404,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni043E": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni043F": { + "advanceWidth": 574, + "contours": [ + [{"x":498,"y":539,"on":true},{"x":498,"y":0,"on":true},{"x":396,"y":0,"on":true},{"x":396,"y":455,"on":true},{"x":178,"y":455,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni0440": { + "advanceWidth": 566, + "references": [ + {"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0441": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0442": { + "advanceWidth": 439, + "contours": [ + [{"x":421,"y":455,"on":true},{"x":270,"y":455,"on":true},{"x":270,"y":0,"on":true},{"x":168,"y":0,"on":true},{"x":168,"y":455,"on":true},{"x":17,"y":455,"on":true},{"x":17,"y":539,"on":true},{"x":421,"y":539,"on":true}] + ] + }, + "uni0443": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0444": { + "advanceWidth": 689, + "contours": [ + [{"x":394,"y":760,"on":true},{"x":394,"y":545,"on":true},{"x":512,"y":534,"on":false},{"x":642,"y":386,"on":false},{"x":642,"y":270,"on":true},{"x":642,"y":152,"on":false},{"x":515,"y":4,"on":false},{"x":394,"y":-6,"on":true},{"x":394,"y":-240,"on":true},{"x":296,"y":-240,"on":true},{"x":296,"y":-6,"on":true},{"x":180,"y":4,"on":false},{"x":48,"y":149,"on":false},{"x":48,"y":270,"on":true},{"x":48,"y":389,"on":false},{"x":174,"y":535,"on":false},{"x":297,"y":545,"on":true},{"x":297,"y":760,"on":true}], + [{"x":297,"y":462,"on":true},{"x":225,"y":454,"on":false},{"x":153,"y":354,"on":false},{"x":153,"y":270,"on":true},{"x":153,"y":188,"on":false},{"x":224,"y":84,"on":false},{"x":297,"y":77,"on":true}], + [{"x":394,"y":461,"on":true},{"x":394,"y":77,"on":true},{"x":467,"y":84,"on":false},{"x":537,"y":190,"on":false},{"x":537,"y":270,"on":true},{"x":537,"y":353,"on":false},{"x":464,"y":453,"on":false}] + ] + }, + "uni0445": { + "advanceWidth": 488, + "references": [ + {"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0446": { + "advanceWidth": 592, + "contours": [ + [{"x":575,"y":-189,"on":true},{"x":477,"y":-189,"on":true},{"x":477,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":84,"on":true},{"x":402,"y":84,"on":true},{"x":402,"y":539,"on":true},{"x":503,"y":539,"on":true},{"x":503,"y":83,"on":true},{"x":575,"y":83,"on":true}] + ] + }, + "uni0447": { + "advanceWidth": 567, + "contours": [ + [{"x":165,"y":539,"on":true},{"x":165,"y":338,"on":true},{"x":165,"y":256,"on":false},{"x":243,"y":256,"on":true},{"x":284,"y":256,"on":false},{"x":355,"y":284,"on":false},{"x":390,"y":306,"on":true},{"x":390,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":492,"y":0,"on":true},{"x":390,"y":0,"on":true},{"x":390,"y":230,"on":true},{"x":352,"y":204,"on":false},{"x":271,"y":174,"on":false},{"x":221,"y":174,"on":true},{"x":144,"y":174,"on":false},{"x":62,"y":257,"on":false},{"x":62,"y":336,"on":true},{"x":62,"y":539,"on":true}] + ] + }, + "uni0448": { + "advanceWidth": 828, + "contours": [ + [{"x":752,"y":539,"on":true},{"x":752,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":84,"on":true},{"x":363,"y":84,"on":true},{"x":363,"y":539,"on":true},{"x":464,"y":539,"on":true},{"x":464,"y":84,"on":true},{"x":650,"y":84,"on":true},{"x":650,"y":539,"on":true}] + ] + }, + "uni0449": { + "advanceWidth": 840, + "contours": [ + [{"x":752,"y":539,"on":true},{"x":752,"y":83,"on":true},{"x":824,"y":83,"on":true},{"x":824,"y":-189,"on":true},{"x":725,"y":-189,"on":true},{"x":725,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":84,"on":true},{"x":363,"y":84,"on":true},{"x":363,"y":539,"on":true},{"x":464,"y":539,"on":true},{"x":464,"y":84,"on":true},{"x":650,"y":84,"on":true},{"x":650,"y":539,"on":true}] + ] + }, + "uni044A": { + "advanceWidth": 621, + "contours": [ + [{"x":265,"y":539,"on":true},{"x":265,"y":322,"on":true},{"x":368,"y":322,"on":true},{"x":579,"y":322,"on":false},{"x":579,"y":166,"on":true},{"x":579,"y":88,"on":false},{"x":478,"y":0,"on":false},{"x":372,"y":0,"on":true},{"x":163,"y":0,"on":true},{"x":163,"y":454,"on":true},{"x":12,"y":454,"on":true},{"x":12,"y":539,"on":true}], + [{"x":367,"y":242,"on":true},{"x":265,"y":242,"on":true},{"x":265,"y":78,"on":true},{"x":369,"y":78,"on":true},{"x":419,"y":78,"on":false},{"x":477,"y":118,"on":false},{"x":477,"y":162,"on":true},{"x":477,"y":205,"on":false},{"x":422,"y":242,"on":false}] + ] + }, + "uni044B": { + "advanceWidth": 733, + "contours": [ + [{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":322,"on":true},{"x":271,"y":322,"on":true},{"x":475,"y":322,"on":false},{"x":475,"y":166,"on":true},{"x":475,"y":88,"on":false},{"x":377,"y":0,"on":false},{"x":272,"y":0,"on":true}], + [{"x":555,"y":0,"on":true},{"x":555,"y":539,"on":true},{"x":657,"y":539,"on":true},{"x":657,"y":0,"on":true}], + [{"x":178,"y":78,"on":true},{"x":266,"y":78,"on":true},{"x":315,"y":78,"on":false},{"x":374,"y":118,"on":false},{"x":374,"y":162,"on":true},{"x":374,"y":206,"on":false},{"x":319,"y":242,"on":false},{"x":266,"y":242,"on":true},{"x":178,"y":242,"on":true}] + ] + }, + "uni044C": { + "advanceWidth": 535, + "contours": [ + [{"x":178,"y":322,"on":true},{"x":286,"y":322,"on":true},{"x":493,"y":322,"on":false},{"x":493,"y":166,"on":true},{"x":493,"y":88,"on":false},{"x":393,"y":0,"on":false},{"x":287,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true}], + [{"x":391,"y":162,"on":true},{"x":391,"y":206,"on":false},{"x":335,"y":242,"on":false},{"x":282,"y":242,"on":true},{"x":178,"y":242,"on":true},{"x":178,"y":78,"on":true},{"x":283,"y":78,"on":true},{"x":332,"y":78,"on":false},{"x":391,"y":118,"on":false}] + ] + }, + "uni044D": { + "advanceWidth": 456, + "contours": [ + [{"x":166,"y":-10,"on":true},{"x":86,"y":-10,"on":false},{"x":31,"y":21,"on":true},{"x":31,"y":106,"on":true},{"x":60,"y":92,"on":false},{"x":126,"y":74,"on":false},{"x":163,"y":74,"on":true},{"x":225,"y":74,"on":false},{"x":298,"y":152,"on":false},{"x":302,"y":237,"on":true},{"x":94,"y":237,"on":true},{"x":94,"y":315,"on":true},{"x":301,"y":315,"on":true},{"x":291,"y":465,"on":false},{"x":172,"y":465,"on":true},{"x":145,"y":465,"on":false},{"x":86,"y":450,"on":false},{"x":63,"y":439,"on":true},{"x":33,"y":518,"on":true},{"x":62,"y":532,"on":false},{"x":135,"y":549,"on":false},{"x":174,"y":549,"on":true},{"x":280,"y":549,"on":false},{"x":408,"y":417,"on":false},{"x":408,"y":271,"on":true},{"x":408,"y":129,"on":false},{"x":278,"y":-10,"on":false}] + ] + }, + "uni044E": { + "advanceWidth": 772, + "contours": [ + [{"x":725,"y":271,"on":true},{"x":725,"y":136,"on":false},{"x":607,"y":-10,"on":false},{"x":504,"y":-10,"on":true},{"x":410,"y":-10,"on":false},{"x":296,"y":113,"on":false},{"x":287,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":320,"on":true},{"x":288,"y":320,"on":true},{"x":298,"y":432,"on":false},{"x":413,"y":549,"on":false},{"x":507,"y":549,"on":true},{"x":604,"y":549,"on":false},{"x":725,"y":404,"on":false}], + [{"x":390,"y":270,"on":true},{"x":390,"y":174,"on":false},{"x":446,"y":75,"on":false},{"x":505,"y":75,"on":true},{"x":566,"y":75,"on":false},{"x":620,"y":174,"on":false},{"x":620,"y":271,"on":true},{"x":620,"y":367,"on":false},{"x":565,"y":464,"on":false},{"x":505,"y":464,"on":true},{"x":445,"y":464,"on":false},{"x":390,"y":367,"on":false}] + ] + }, + "uni044F": { + "advanceWidth": 518, + "contours": [ + [{"x":125,"y":0,"on":true},{"x":12,"y":0,"on":true},{"x":154,"y":224,"on":true},{"x":108,"y":238,"on":false},{"x":42,"y":312,"on":false},{"x":42,"y":378,"on":true},{"x":42,"y":456,"on":false},{"x":145,"y":539,"on":false},{"x":232,"y":539,"on":true},{"x":443,"y":539,"on":true},{"x":443,"y":0,"on":true},{"x":341,"y":0,"on":true},{"x":341,"y":212,"on":true},{"x":250,"y":212,"on":true}], + [{"x":142,"y":377,"on":true},{"x":142,"y":334,"on":false},{"x":200,"y":291,"on":false},{"x":252,"y":291,"on":true},{"x":341,"y":291,"on":true},{"x":341,"y":460,"on":true},{"x":241,"y":460,"on":true},{"x":190,"y":460,"on":false},{"x":142,"y":414,"on":false}] + ] + }, + "uni0450": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":77,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0451": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-17,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0452": { + "advanceWidth": 571, + "contours": [ + [{"x":360,"y":-240,"on":true},{"x":340,"y":-240,"on":false},{"x":305,"y":-234,"on":false},{"x":293,"y":-229,"on":true},{"x":293,"y":-144,"on":true},{"x":317,"y":-153,"on":false},{"x":341,"y":-153,"on":true},{"x":366,"y":-153,"on":false},{"x":397,"y":-117,"on":false},{"x":397,"y":-71,"on":true},{"x":397,"y":322,"on":true},{"x":397,"y":444,"on":false},{"x":303,"y":444,"on":true},{"x":234,"y":444,"on":false},{"x":178,"y":350,"on":false},{"x":178,"y":255,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":599,"on":true},{"x":6,"y":599,"on":true},{"x":6,"y":673,"on":true},{"x":75,"y":673,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":673,"on":true},{"x":332,"y":673,"on":true},{"x":332,"y":599,"on":true},{"x":178,"y":599,"on":true},{"x":178,"y":535,"on":true},{"x":178,"y":512,"on":false},{"x":174,"y":467,"on":false},{"x":172,"y":449,"on":true},{"x":178,"y":449,"on":true},{"x":200,"y":490,"on":false},{"x":278,"y":531,"on":false},{"x":325,"y":531,"on":true},{"x":410,"y":531,"on":false},{"x":499,"y":437,"on":false},{"x":499,"y":338,"on":true},{"x":499,"y":-74,"on":true},{"x":499,"y":-151,"on":false},{"x":430,"y":-240,"on":false}] + ] + }, + "uni0453": { + "advanceWidth": 404, + "references": [ + {"glyph":"uni0433","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":136,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0454": { + "advanceWidth": 458, + "contours": [ + [{"x":284,"y":-10,"on":true},{"x":176,"y":-10,"on":false},{"x":48,"y":124,"on":false},{"x":48,"y":267,"on":true},{"x":48,"y":413,"on":false},{"x":178,"y":549,"on":false},{"x":287,"y":549,"on":true},{"x":365,"y":549,"on":false},{"x":428,"y":519,"on":true},{"x":398,"y":439,"on":true},{"x":372,"y":450,"on":false},{"x":313,"y":465,"on":false},{"x":287,"y":465,"on":true},{"x":167,"y":465,"on":false},{"x":154,"y":315,"on":true},{"x":362,"y":315,"on":true},{"x":362,"y":237,"on":true},{"x":153,"y":237,"on":true},{"x":162,"y":74,"on":false},{"x":285,"y":74,"on":true},{"x":324,"y":74,"on":false},{"x":388,"y":92,"on":false},{"x":418,"y":106,"on":true},{"x":418,"y":21,"on":true},{"x":362,"y":-10,"on":false}] + ] + }, + "uni0455": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0456": { + "advanceWidth": 253, + "references": [ + {"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0457": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-154,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0458": { + "advanceWidth": 253, + "references": [ + {"glyph":"j","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0459": { + "advanceWidth": 776, + "contours": [ + [{"x":444,"y":539,"on":true},{"x":444,"y":322,"on":true},{"x":530,"y":322,"on":true},{"x":735,"y":322,"on":false},{"x":735,"y":166,"on":true},{"x":735,"y":88,"on":false},{"x":635,"y":0,"on":false},{"x":529,"y":0,"on":true},{"x":343,"y":0,"on":true},{"x":343,"y":454,"on":true},{"x":234,"y":454,"on":true},{"x":222,"y":290,"on":false},{"x":183,"y":86,"on":false},{"x":114,"y":-8,"on":false},{"x":57,"y":-8,"on":true},{"x":24,"y":-8,"on":false},{"x":4,"y":2,"on":true},{"x":4,"y":83,"on":true},{"x":10,"y":81,"on":false},{"x":25,"y":77,"on":false},{"x":33,"y":77,"on":true},{"x":62,"y":77,"on":false},{"x":106,"y":171,"on":false},{"x":136,"y":374,"on":false},{"x":145,"y":539,"on":true}], + [{"x":523,"y":242,"on":true},{"x":444,"y":242,"on":true},{"x":444,"y":78,"on":true},{"x":524,"y":78,"on":true},{"x":574,"y":78,"on":false},{"x":632,"y":118,"on":false},{"x":632,"y":162,"on":true},{"x":632,"y":205,"on":false},{"x":577,"y":242,"on":false}] + ] + }, + "uni045A": { + "advanceWidth": 806, + "contours": [ + [{"x":475,"y":539,"on":true},{"x":475,"y":321,"on":true},{"x":559,"y":321,"on":true},{"x":663,"y":321,"on":false},{"x":764,"y":243,"on":false},{"x":764,"y":166,"on":true},{"x":764,"y":88,"on":false},{"x":666,"y":0,"on":false},{"x":559,"y":0,"on":true},{"x":372,"y":0,"on":true},{"x":372,"y":237,"on":true},{"x":178,"y":237,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":321,"on":true},{"x":373,"y":321,"on":true},{"x":373,"y":539,"on":true}], + [{"x":553,"y":242,"on":true},{"x":474,"y":242,"on":true},{"x":474,"y":78,"on":true},{"x":554,"y":78,"on":true},{"x":604,"y":78,"on":false},{"x":662,"y":118,"on":false},{"x":662,"y":162,"on":true},{"x":662,"y":205,"on":false},{"x":607,"y":242,"on":false}] + ] + }, + "uni045B": { + "advanceWidth": 571, + "references": [ + {"glyph":"hbar","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni045C": { + "advanceWidth": 506, + "references": [ + {"glyph":"uni043A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":182,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni045D": { + "advanceWidth": 602, + "references": [ + {"glyph":"uni0438","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":112,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni045E": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":-36,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni045F": { + "advanceWidth": 579, + "contours": [ + [{"x":242,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":84,"on":true},{"x":401,"y":84,"on":true},{"x":401,"y":539,"on":true},{"x":503,"y":539,"on":true},{"x":503,"y":0,"on":true},{"x":339,"y":0,"on":true},{"x":339,"y":-189,"on":true},{"x":242,"y":-189,"on":true}] + ] + }, + "uni0460": { + "advanceWidth": 855, + "contours": [ + [{"x":212,"y":-2,"on":true},{"x":160,"y":100,"on":false},{"x":76,"y":338,"on":false},{"x":24,"y":590,"on":false},{"x":20,"y":714,"on":true},{"x":129,"y":714,"on":true},{"x":134,"y":604,"on":false},{"x":173,"y":388,"on":false},{"x":229,"y":196,"on":false},{"x":259,"y":121,"on":true},{"x":263,"y":121,"on":true},{"x":269,"y":152,"on":false},{"x":291,"y":228,"on":false},{"x":304,"y":265,"on":true},{"x":380,"y":493,"on":true},{"x":371,"y":548,"on":false},{"x":360,"y":659,"on":false},{"x":358,"y":714,"on":true},{"x":466,"y":714,"on":true},{"x":469,"y":611,"on":false},{"x":507,"y":398,"on":false},{"x":566,"y":198,"on":false},{"x":603,"y":117,"on":true},{"x":606,"y":117,"on":true},{"x":662,"y":241,"on":false},{"x":724,"y":542,"on":false},{"x":728,"y":714,"on":true},{"x":836,"y":714,"on":true},{"x":830,"y":521,"on":false},{"x":739,"y":156,"on":false},{"x":648,"y":-2,"on":true},{"x":557,"y":-2,"on":true},{"x":530,"y":48,"on":false},{"x":478,"y":165,"on":false},{"x":434,"y":284,"on":false},{"x":419,"y":338,"on":true},{"x":311,"y":-2,"on":true}] + ] + }, + "uni0461": { + "advanceWidth": 761, + "contours": [ + [{"x":731,"y":540,"on":true},{"x":719,"y":255,"on":false},{"x":565,"y":0,"on":true},{"x":472,"y":0,"on":true},{"x":446,"y":51,"on":false},{"x":392,"y":180,"on":false},{"x":375,"y":235,"on":true},{"x":271,"y":0,"on":true},{"x":179,"y":0,"on":true},{"x":138,"y":74,"on":false},{"x":68,"y":252,"on":false},{"x":24,"y":444,"on":false},{"x":21,"y":540,"on":true},{"x":122,"y":540,"on":true},{"x":126,"y":456,"on":false},{"x":158,"y":292,"on":false},{"x":203,"y":150,"on":false},{"x":228,"y":97,"on":true},{"x":231,"y":97,"on":true},{"x":239,"y":122,"on":false},{"x":266,"y":180,"on":false},{"x":278,"y":206,"on":true},{"x":341,"y":343,"on":true},{"x":330,"y":391,"on":false},{"x":318,"y":493,"on":false},{"x":317,"y":540,"on":true},{"x":417,"y":540,"on":true},{"x":422,"y":424,"on":false},{"x":478,"y":192,"on":false},{"x":517,"y":95,"on":true},{"x":520,"y":95,"on":true},{"x":566,"y":180,"on":false},{"x":625,"y":411,"on":false},{"x":630,"y":540,"on":true}] + ] + }, + "uni0462": { + "advanceWidth": 604, + "contours": [ + [{"x":128,"y":0,"on":true},{"x":128,"y":539,"on":true},{"x":5,"y":539,"on":true},{"x":5,"y":622,"on":true},{"x":128,"y":622,"on":true},{"x":128,"y":731,"on":true},{"x":233,"y":731,"on":true},{"x":233,"y":622,"on":true},{"x":405,"y":622,"on":true},{"x":405,"y":539,"on":true},{"x":233,"y":539,"on":true},{"x":233,"y":420,"on":true},{"x":303,"y":420,"on":true},{"x":441,"y":420,"on":false},{"x":560,"y":308,"on":false},{"x":560,"y":213,"on":true},{"x":560,"y":115,"on":false},{"x":438,"y":0,"on":false},{"x":311,"y":0,"on":true}], + [{"x":233,"y":89,"on":true},{"x":304,"y":89,"on":true},{"x":453,"y":89,"on":false},{"x":453,"y":213,"on":true},{"x":453,"y":277,"on":false},{"x":376,"y":330,"on":false},{"x":295,"y":330,"on":true},{"x":233,"y":330,"on":true}] + ] + }, + "uni0463": { + "advanceWidth": 570, + "contours": [ + [{"x":213,"y":647,"on":true},{"x":213,"y":539,"on":true},{"x":356,"y":539,"on":true},{"x":356,"y":460,"on":true},{"x":213,"y":460,"on":true},{"x":213,"y":321,"on":true},{"x":318,"y":321,"on":true},{"x":528,"y":321,"on":false},{"x":528,"y":166,"on":true},{"x":528,"y":88,"on":false},{"x":427,"y":0,"on":false},{"x":320,"y":0,"on":true},{"x":111,"y":0,"on":true},{"x":111,"y":460,"on":true},{"x":7,"y":460,"on":true},{"x":7,"y":539,"on":true},{"x":111,"y":539,"on":true},{"x":111,"y":647,"on":true}], + [{"x":314,"y":242,"on":true},{"x":213,"y":242,"on":true},{"x":213,"y":78,"on":true},{"x":315,"y":78,"on":true},{"x":365,"y":78,"on":false},{"x":426,"y":118,"on":false},{"x":426,"y":162,"on":true},{"x":426,"y":205,"on":false},{"x":370,"y":242,"on":false}] + ] + }, + "uni0464": { + "advanceWidth": 837, + "contours": [ + [{"x":615,"y":-10,"on":true},{"x":518,"y":-10,"on":false},{"x":388,"y":75,"on":false},{"x":322,"y":227,"on":false},{"x":317,"y":326,"on":true},{"x":191,"y":326,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":417,"on":true},{"x":320,"y":417,"on":true},{"x":330,"y":508,"on":false},{"x":405,"y":647,"on":false},{"x":535,"y":724,"on":false},{"x":627,"y":724,"on":true},{"x":677,"y":724,"on":false},{"x":770,"y":700,"on":false},{"x":809,"y":679,"on":true},{"x":772,"y":592,"on":true},{"x":739,"y":609,"on":false},{"x":667,"y":633,"on":false},{"x":626,"y":633,"on":true},{"x":538,"y":633,"on":false},{"x":438,"y":515,"on":false},{"x":427,"y":417,"on":true},{"x":710,"y":417,"on":true},{"x":710,"y":326,"on":true},{"x":426,"y":326,"on":true},{"x":428,"y":254,"on":false},{"x":475,"y":143,"on":false},{"x":562,"y":81,"on":false},{"x":627,"y":81,"on":true},{"x":668,"y":81,"on":false},{"x":745,"y":99,"on":false},{"x":784,"y":114,"on":true},{"x":784,"y":22,"on":true},{"x":747,"y":6,"on":false},{"x":667,"y":-10,"on":false}] + ] + }, + "uni0465": { + "advanceWidth": 692, + "contours": [ + [{"x":521,"y":-10,"on":true},{"x":418,"y":-10,"on":false},{"x":297,"y":111,"on":false},{"x":289,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":318,"on":true},{"x":290,"y":318,"on":true},{"x":301,"y":436,"on":false},{"x":424,"y":549,"on":false},{"x":521,"y":549,"on":true},{"x":561,"y":549,"on":false},{"x":632,"y":532,"on":false},{"x":660,"y":518,"on":true},{"x":630,"y":439,"on":true},{"x":607,"y":450,"on":false},{"x":550,"y":465,"on":false},{"x":523,"y":465,"on":true},{"x":405,"y":465,"on":false},{"x":393,"y":318,"on":true},{"x":598,"y":318,"on":true},{"x":598,"y":236,"on":true},{"x":393,"y":236,"on":true},{"x":400,"y":74,"on":false},{"x":525,"y":74,"on":true},{"x":562,"y":74,"on":false},{"x":626,"y":92,"on":false},{"x":654,"y":106,"on":true},{"x":654,"y":21,"on":true},{"x":602,"y":-10,"on":false}] + ] + }, + "uni0466": { + "advanceWidth": 643, + "contours": [ + [{"x":381,"y":715,"on":true},{"x":644,"y":0,"on":true},{"x":535,"y":0,"on":true},{"x":423,"y":321,"on":true},{"x":369,"y":321,"on":true},{"x":369,"y":0,"on":true},{"x":273,"y":0,"on":true},{"x":273,"y":321,"on":true},{"x":219,"y":321,"on":true},{"x":107,"y":0,"on":true},{"x":-1,"y":0,"on":true},{"x":261,"y":715,"on":true}], + [{"x":321,"y":627,"on":true},{"x":316,"y":606,"on":false},{"x":293,"y":537,"on":false},{"x":284,"y":513,"on":true},{"x":249,"y":408,"on":true},{"x":393,"y":408,"on":true},{"x":356,"y":518,"on":true},{"x":348,"y":541,"on":false},{"x":327,"y":601,"on":false}] + ] + }, + "uni0467": { + "advanceWidth": 546, + "contours": [ + [{"x":335,"y":539,"on":true},{"x":543,"y":0,"on":true},{"x":441,"y":0,"on":true},{"x":359,"y":226,"on":true},{"x":318,"y":226,"on":true},{"x":318,"y":0,"on":true},{"x":227,"y":0,"on":true},{"x":227,"y":226,"on":true},{"x":185,"y":226,"on":true},{"x":104,"y":0,"on":true},{"x":3,"y":0,"on":true},{"x":211,"y":539,"on":true}], + [{"x":274,"y":471,"on":true},{"x":270,"y":471,"on":true},{"x":265,"y":451,"on":false},{"x":250,"y":407,"on":false},{"x":243,"y":389,"on":true},{"x":214,"y":305,"on":true},{"x":331,"y":305,"on":true},{"x":303,"y":388,"on":true},{"x":296,"y":408,"on":false},{"x":278,"y":454,"on":false}] + ] + }, + "uni0468": { + "advanceWidth": 885, + "contours": [ + [{"x":623,"y":715,"on":true},{"x":886,"y":0,"on":true},{"x":776,"y":0,"on":true},{"x":664,"y":322,"on":true},{"x":611,"y":322,"on":true},{"x":611,"y":0,"on":true},{"x":516,"y":0,"on":true},{"x":516,"y":322,"on":true},{"x":462,"y":322,"on":true},{"x":350,"y":0,"on":true},{"x":241,"y":0,"on":true},{"x":361,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":395,"y":418,"on":true},{"x":503,"y":715,"on":true}], + [{"x":562,"y":627,"on":true},{"x":558,"y":603,"on":false},{"x":536,"y":542,"on":false},{"x":526,"y":516,"on":true},{"x":491,"y":410,"on":true},{"x":633,"y":410,"on":true},{"x":597,"y":519,"on":true},{"x":588,"y":544,"on":false},{"x":568,"y":603,"on":false}] + ] + }, + "uni0469": { + "advanceWidth": 760, + "contours": [ + [{"x":549,"y":539,"on":true},{"x":757,"y":0,"on":true},{"x":655,"y":0,"on":true},{"x":572,"y":231,"on":true},{"x":532,"y":231,"on":true},{"x":532,"y":0,"on":true},{"x":441,"y":0,"on":true},{"x":441,"y":231,"on":true},{"x":402,"y":231,"on":true},{"x":318,"y":0,"on":true},{"x":217,"y":0,"on":true},{"x":308,"y":237,"on":true},{"x":173,"y":237,"on":true},{"x":173,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":173,"y":539,"on":true},{"x":173,"y":320,"on":true},{"x":341,"y":320,"on":true},{"x":426,"y":539,"on":true}], + [{"x":489,"y":471,"on":true},{"x":485,"y":471,"on":true},{"x":480,"y":451,"on":false},{"x":461,"y":394,"on":false},{"x":452,"y":372,"on":true},{"x":430,"y":310,"on":true},{"x":543,"y":310,"on":true},{"x":520,"y":376,"on":true},{"x":512,"y":396,"on":false},{"x":493,"y":454,"on":false}] + ] + }, + "uni046A": { + "advanceWidth": 690, + "contours": [ + [{"x":617,"y":714,"on":true},{"x":617,"y":650,"on":true},{"x":441,"y":411,"on":true},{"x":493,"y":404,"on":false},{"x":558,"y":358,"on":false},{"x":600,"y":278,"on":false},{"x":616,"y":221,"on":true},{"x":680,"y":0,"on":true},{"x":571,"y":0,"on":true},{"x":514,"y":208,"on":true},{"x":502,"y":254,"on":false},{"x":476,"y":306,"on":false},{"x":433,"y":329,"on":false},{"x":397,"y":331,"on":true},{"x":397,"y":0,"on":true},{"x":294,"y":0,"on":true},{"x":294,"y":331,"on":true},{"x":257,"y":330,"on":false},{"x":215,"y":307,"on":false},{"x":190,"y":254,"on":false},{"x":177,"y":208,"on":true},{"x":120,"y":0,"on":true},{"x":10,"y":0,"on":true},{"x":74,"y":221,"on":true},{"x":90,"y":279,"on":false},{"x":130,"y":359,"on":false},{"x":195,"y":404,"on":false},{"x":248,"y":411,"on":true},{"x":74,"y":650,"on":true},{"x":74,"y":714,"on":true}], + [{"x":488,"y":624,"on":true},{"x":203,"y":624,"on":true},{"x":345,"y":423,"on":true}] + ] + }, + "uni046B": { + "advanceWidth": 594, + "contours": [ + [{"x":530,"y":539,"on":true},{"x":530,"y":488,"on":true},{"x":388,"y":313,"on":true},{"x":432,"y":306,"on":false},{"x":484,"y":268,"on":false},{"x":516,"y":206,"on":false},{"x":530,"y":165,"on":true},{"x":586,"y":0,"on":true},{"x":488,"y":0,"on":true},{"x":436,"y":162,"on":true},{"x":421,"y":207,"on":false},{"x":385,"y":242,"on":false},{"x":343,"y":243,"on":true},{"x":343,"y":0,"on":true},{"x":251,"y":0,"on":true},{"x":251,"y":242,"on":true},{"x":207,"y":241,"on":false},{"x":172,"y":207,"on":false},{"x":158,"y":162,"on":true},{"x":105,"y":0,"on":true},{"x":7,"y":0,"on":true},{"x":62,"y":165,"on":true},{"x":76,"y":206,"on":false},{"x":108,"y":268,"on":false},{"x":162,"y":306,"on":false},{"x":205,"y":313,"on":true},{"x":63,"y":488,"on":true},{"x":63,"y":539,"on":true}], + [{"x":408,"y":462,"on":true},{"x":185,"y":462,"on":true},{"x":296,"y":321,"on":true}] + ] + }, + "uni046C": { + "advanceWidth": 937, + "contours": [ + [{"x":867,"y":714,"on":true},{"x":867,"y":650,"on":true},{"x":691,"y":408,"on":true},{"x":744,"y":402,"on":false},{"x":809,"y":355,"on":false},{"x":850,"y":275,"on":false},{"x":866,"y":219,"on":true},{"x":930,"y":0,"on":true},{"x":823,"y":0,"on":true},{"x":765,"y":206,"on":true},{"x":752,"y":252,"on":false},{"x":725,"y":304,"on":false},{"x":682,"y":326,"on":false},{"x":647,"y":328,"on":true},{"x":647,"y":0,"on":true},{"x":543,"y":0,"on":true},{"x":543,"y":328,"on":true},{"x":508,"y":326,"on":false},{"x":465,"y":304,"on":false},{"x":438,"y":252,"on":false},{"x":426,"y":206,"on":true},{"x":369,"y":0,"on":true},{"x":261,"y":0,"on":true},{"x":325,"y":216,"on":true},{"x":336,"y":254,"on":false},{"x":360,"y":309,"on":false},{"x":376,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":490,"y":418,"on":true},{"x":324,"y":650,"on":true},{"x":324,"y":714,"on":true}], + [{"x":737,"y":624,"on":true},{"x":453,"y":624,"on":true},{"x":595,"y":420,"on":true}] + ] + }, + "uni046D": { + "advanceWidth": 811, + "contours": [ + [{"x":748,"y":539,"on":true},{"x":748,"y":488,"on":true},{"x":606,"y":310,"on":true},{"x":650,"y":304,"on":false},{"x":702,"y":266,"on":false},{"x":734,"y":205,"on":false},{"x":748,"y":164,"on":true},{"x":804,"y":0,"on":true},{"x":706,"y":0,"on":true},{"x":654,"y":161,"on":true},{"x":638,"y":205,"on":false},{"x":603,"y":239,"on":false},{"x":561,"y":240,"on":true},{"x":561,"y":0,"on":true},{"x":469,"y":0,"on":true},{"x":469,"y":240,"on":true},{"x":426,"y":239,"on":false},{"x":391,"y":204,"on":false},{"x":376,"y":161,"on":true},{"x":322,"y":0,"on":true},{"x":226,"y":0,"on":true},{"x":281,"y":166,"on":true},{"x":289,"y":188,"on":false},{"x":306,"y":226,"on":false},{"x":316,"y":237,"on":true},{"x":173,"y":237,"on":true},{"x":173,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":173,"y":539,"on":true},{"x":173,"y":321,"on":true},{"x":416,"y":321,"on":true},{"x":281,"y":488,"on":true},{"x":281,"y":539,"on":true}], + [{"x":626,"y":462,"on":true},{"x":403,"y":462,"on":true},{"x":514,"y":321,"on":true}] + ] + }, + "uni046E": { + "advanceWidth": 543, + "contours": [ + [{"x":390,"y":857,"on":true},{"x":405,"y":857,"on":false},{"x":428,"y":853,"on":false},{"x":436,"y":850,"on":true},{"x":436,"y":788,"on":true},{"x":424,"y":794,"on":false},{"x":405,"y":794,"on":true},{"x":384,"y":794,"on":false},{"x":340,"y":751,"on":false},{"x":320,"y":718,"on":true},{"x":395,"y":704,"on":false},{"x":476,"y":613,"on":false},{"x":476,"y":548,"on":true},{"x":476,"y":477,"on":false},{"x":392,"y":388,"on":false},{"x":321,"y":375,"on":true},{"x":321,"y":371,"on":true},{"x":404,"y":361,"on":false},{"x":492,"y":274,"on":false},{"x":492,"y":202,"on":true},{"x":492,"y":107,"on":false},{"x":364,"y":-4,"on":false},{"x":239,"y":-7,"on":true},{"x":174,"y":-8,"on":false},{"x":130,"y":-36,"on":false},{"x":130,"y":-62,"on":true},{"x":130,"y":-86,"on":false},{"x":164,"y":-114,"on":false},{"x":205,"y":-114,"on":true},{"x":255,"y":-114,"on":false},{"x":321,"y":-107,"on":false},{"x":358,"y":-107,"on":true},{"x":391,"y":-107,"on":false},{"x":432,"y":-116,"on":false},{"x":443,"y":-124,"on":true},{"x":443,"y":-214,"on":true},{"x":433,"y":-206,"on":false},{"x":390,"y":-195,"on":false},{"x":357,"y":-195,"on":true},{"x":319,"y":-195,"on":false},{"x":248,"y":-200,"on":false},{"x":195,"y":-200,"on":true},{"x":104,"y":-200,"on":false},{"x":25,"y":-121,"on":false},{"x":25,"y":-61,"on":true},{"x":25,"y":5,"on":false},{"x":118,"y":78,"on":false},{"x":224,"y":82,"on":true},{"x":307,"y":84,"on":false},{"x":385,"y":143,"on":false},{"x":385,"y":206,"on":true},{"x":385,"y":270,"on":false},{"x":283,"y":326,"on":false},{"x":192,"y":326,"on":true},{"x":114,"y":326,"on":true},{"x":114,"y":414,"on":true},{"x":188,"y":414,"on":true},{"x":283,"y":415,"on":false},{"x":370,"y":476,"on":false},{"x":370,"y":534,"on":true},{"x":370,"y":584,"on":false},{"x":304,"y":636,"on":false},{"x":247,"y":636,"on":true},{"x":198,"y":636,"on":false},{"x":118,"y":606,"on":false},{"x":84,"y":581,"on":true},{"x":35,"y":653,"on":true},{"x":69,"y":678,"on":false},{"x":144,"y":712,"on":false},{"x":190,"y":719,"on":true},{"x":170,"y":747,"on":false},{"x":113,"y":816,"on":false},{"x":93,"y":839,"on":true},{"x":93,"y":851,"on":true},{"x":163,"y":851,"on":true},{"x":184,"y":835,"on":false},{"x":234,"y":785,"on":false},{"x":258,"y":757,"on":true},{"x":283,"y":794,"on":false},{"x":346,"y":857,"on":false}] + ] + }, + "uni046F": { + "advanceWidth": 459, + "contours": [ + [{"x":348,"y":666,"on":true},{"x":363,"y":666,"on":false},{"x":387,"y":661,"on":false},{"x":395,"y":659,"on":true},{"x":395,"y":597,"on":true},{"x":389,"y":599,"on":false},{"x":372,"y":603,"on":false},{"x":364,"y":603,"on":true},{"x":344,"y":603,"on":false},{"x":303,"y":569,"on":false},{"x":285,"y":540,"on":true},{"x":338,"y":526,"on":false},{"x":400,"y":458,"on":false},{"x":400,"y":408,"on":true},{"x":400,"y":361,"on":false},{"x":350,"y":301,"on":false},{"x":306,"y":288,"on":true},{"x":306,"y":284,"on":true},{"x":355,"y":270,"on":false},{"x":417,"y":210,"on":false},{"x":417,"y":154,"on":true},{"x":417,"y":85,"on":false},{"x":316,"y":-5,"on":false},{"x":203,"y":-7,"on":true},{"x":143,"y":-8,"on":false},{"x":106,"y":-35,"on":false},{"x":106,"y":-58,"on":true},{"x":106,"y":-82,"on":false},{"x":137,"y":-104,"on":false},{"x":177,"y":-104,"on":true},{"x":219,"y":-104,"on":false},{"x":284,"y":-99,"on":false},{"x":316,"y":-99,"on":true},{"x":343,"y":-99,"on":false},{"x":376,"y":-108,"on":false},{"x":385,"y":-116,"on":true},{"x":385,"y":-201,"on":true},{"x":375,"y":-192,"on":false},{"x":337,"y":-183,"on":false},{"x":317,"y":-183,"on":true},{"x":288,"y":-183,"on":false},{"x":206,"y":-188,"on":false},{"x":163,"y":-188,"on":true},{"x":81,"y":-188,"on":false},{"x":13,"y":-114,"on":false},{"x":13,"y":-59,"on":true},{"x":13,"y":0,"on":false},{"x":94,"y":74,"on":false},{"x":189,"y":76,"on":true},{"x":250,"y":78,"on":false},{"x":316,"y":117,"on":false},{"x":316,"y":160,"on":true},{"x":316,"y":242,"on":false},{"x":184,"y":242,"on":true},{"x":127,"y":242,"on":true},{"x":127,"y":321,"on":true},{"x":175,"y":321,"on":true},{"x":234,"y":321,"on":false},{"x":303,"y":357,"on":false},{"x":303,"y":398,"on":true},{"x":303,"y":467,"on":false},{"x":201,"y":467,"on":true},{"x":137,"y":467,"on":false},{"x":70,"y":435,"on":true},{"x":35,"y":512,"on":true},{"x":60,"y":523,"on":false},{"x":109,"y":539,"on":false},{"x":137,"y":543,"on":true},{"x":119,"y":570,"on":false},{"x":74,"y":626,"on":false},{"x":54,"y":648,"on":true},{"x":54,"y":660,"on":true},{"x":124,"y":660,"on":true},{"x":144,"y":644,"on":false},{"x":190,"y":596,"on":false},{"x":216,"y":567,"on":true},{"x":241,"y":604,"on":false},{"x":304,"y":666,"on":false}] + ] + }, + "uni0470": { + "advanceWidth": 765, + "references": [ + {"glyph":"Psi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0471": { + "advanceWidth": 712, + "references": [ + {"glyph":"psi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0472": { + "advanceWidth": 707, + "contours": [ + [{"x":651,"y":358,"on":true},{"x":651,"y":249,"on":false},{"x":586,"y":83,"on":false},{"x":454,"y":-10,"on":false},{"x":354,"y":-10,"on":true},{"x":252,"y":-10,"on":false},{"x":120,"y":84,"on":false},{"x":56,"y":251,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":204,"y":725,"on":false},{"x":355,"y":725,"on":true},{"x":455,"y":725,"on":false},{"x":586,"y":632,"on":false},{"x":651,"y":467,"on":false}], + [{"x":355,"y":634,"on":true},{"x":267,"y":634,"on":false},{"x":174,"y":517,"on":false},{"x":166,"y":409,"on":true},{"x":540,"y":409,"on":true},{"x":532,"y":517,"on":false},{"x":442,"y":634,"on":false}], + [{"x":354,"y":81,"on":true},{"x":443,"y":81,"on":false},{"x":536,"y":205,"on":false},{"x":541,"y":320,"on":true},{"x":166,"y":320,"on":true},{"x":171,"y":206,"on":false},{"x":264,"y":81,"on":false}] + ] + }, + "uni0473": { + "advanceWidth": 558, + "contours": [ + [{"x":510,"y":271,"on":true},{"x":510,"y":137,"on":false},{"x":386,"y":-10,"on":false},{"x":277,"y":-10,"on":true},{"x":209,"y":-10,"on":false},{"x":106,"y":56,"on":false},{"x":48,"y":182,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":405,"on":false},{"x":170,"y":549,"on":false},{"x":280,"y":549,"on":true},{"x":350,"y":549,"on":false},{"x":454,"y":481,"on":false},{"x":510,"y":356,"on":false}], + [{"x":278,"y":464,"on":true},{"x":220,"y":464,"on":false},{"x":159,"y":388,"on":false},{"x":153,"y":315,"on":true},{"x":405,"y":315,"on":true},{"x":399,"y":386,"on":false},{"x":337,"y":464,"on":false}], + [{"x":279,"y":75,"on":true},{"x":339,"y":75,"on":false},{"x":400,"y":157,"on":false},{"x":405,"y":237,"on":true},{"x":152,"y":237,"on":true},{"x":156,"y":159,"on":false},{"x":218,"y":75,"on":false}] + ] + }, + "uni0474": { + "advanceWidth": 601, + "contours": [ + [{"x":573,"y":632,"on":true},{"x":544,"y":632,"on":false},{"x":512,"y":576,"on":false},{"x":495,"y":518,"on":true},{"x":342,"y":0,"on":true},{"x":223,"y":0,"on":true},{"x":0,"y":714,"on":true},{"x":109,"y":714,"on":true},{"x":244,"y":266,"on":true},{"x":258,"y":222,"on":false},{"x":276,"y":142,"on":false},{"x":282,"y":104,"on":true},{"x":289,"y":141,"on":false},{"x":308,"y":226,"on":false},{"x":319,"y":264,"on":true},{"x":396,"y":534,"on":true},{"x":415,"y":600,"on":false},{"x":453,"y":682,"on":false},{"x":506,"y":720,"on":false},{"x":550,"y":720,"on":true},{"x":570,"y":720,"on":false},{"x":604,"y":712,"on":false},{"x":616,"y":708,"on":true},{"x":616,"y":622,"on":true},{"x":606,"y":626,"on":false},{"x":585,"y":632,"on":false}] + ] + }, + "uni0475": { + "advanceWidth": 499, + "contours": [ + [{"x":459,"y":545,"on":true},{"x":488,"y":545,"on":false},{"x":510,"y":536,"on":true},{"x":510,"y":456,"on":true},{"x":495,"y":462,"on":false},{"x":477,"y":462,"on":true},{"x":455,"y":462,"on":false},{"x":431,"y":426,"on":false},{"x":419,"y":385,"on":true},{"x":299,"y":0,"on":true},{"x":180,"y":0,"on":true},{"x":1,"y":539,"on":true},{"x":108,"y":539,"on":true},{"x":208,"y":210,"on":true},{"x":219,"y":175,"on":false},{"x":235,"y":112,"on":false},{"x":238,"y":90,"on":true},{"x":242,"y":90,"on":true},{"x":245,"y":113,"on":false},{"x":258,"y":179,"on":false},{"x":269,"y":213,"on":true},{"x":325,"y":400,"on":true},{"x":341,"y":456,"on":false},{"x":374,"y":519,"on":false},{"x":421,"y":545,"on":false}] + ] + }, + "uni0476": { + "advanceWidth": 601, + "references": [ + {"glyph":"uni0474","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":583,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0477": { + "advanceWidth": 499, + "references": [ + {"glyph":"uni0475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni030F","x":539,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0478": { + "advanceWidth": 1141, + "contours": [ + [{"x":618,"y":358,"on":true},{"x":618,"y":249,"on":false},{"x":558,"y":83,"on":false},{"x":434,"y":-10,"on":false},{"x":337,"y":-10,"on":true},{"x":238,"y":-10,"on":false},{"x":114,"y":84,"on":false},{"x":56,"y":251,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":193,"y":725,"on":false},{"x":338,"y":725,"on":true},{"x":434,"y":725,"on":false},{"x":558,"y":632,"on":false},{"x":618,"y":467,"on":false}], + [{"x":165,"y":358,"on":true},{"x":165,"y":226,"on":false},{"x":248,"y":82,"on":false},{"x":337,"y":82,"on":true},{"x":427,"y":82,"on":false},{"x":508,"y":225,"on":false},{"x":508,"y":358,"on":true},{"x":508,"y":490,"on":false},{"x":428,"y":633,"on":false},{"x":338,"y":633,"on":true},{"x":247,"y":633,"on":false},{"x":165,"y":490,"on":false}], + [{"x":664,"y":539,"on":true},{"x":772,"y":539,"on":true},{"x":871,"y":238,"on":true},{"x":881,"y":206,"on":false},{"x":898,"y":143,"on":false},{"x":902,"y":112,"on":true},{"x":906,"y":112,"on":true},{"x":910,"y":138,"on":false},{"x":928,"y":204,"on":false},{"x":939,"y":238,"on":true},{"x":1030,"y":539,"on":true},{"x":1138,"y":539,"on":true},{"x":934,"y":-73,"on":true},{"x":906,"y":-155,"on":false},{"x":818,"y":-240,"on":false},{"x":747,"y":-240,"on":true},{"x":727,"y":-240,"on":false},{"x":694,"y":-235,"on":false},{"x":681,"y":-232,"on":true},{"x":681,"y":-148,"on":true},{"x":692,"y":-150,"on":false},{"x":718,"y":-154,"on":false},{"x":732,"y":-154,"on":true},{"x":772,"y":-154,"on":false},{"x":819,"y":-105,"on":false},{"x":835,"y":-57,"on":true},{"x":855,"y":1,"on":true}] + ] + }, + "uni0479": { + "advanceWidth": 1019, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"y","x":541,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni047A": { + "advanceWidth": 743, + "contours": [ + [{"x":372,"y":-58,"on":true},{"x":347,"y":-58,"on":false},{"x":313,"y":-34,"on":false},{"x":308,"y":-5,"on":true},{"x":184,"y":14,"on":false},{"x":56,"y":207,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":511,"on":false},{"x":183,"y":700,"on":false},{"x":308,"y":719,"on":true},{"x":314,"y":748,"on":false},{"x":347,"y":772,"on":false},{"x":372,"y":772,"on":true},{"x":396,"y":772,"on":false},{"x":429,"y":748,"on":false},{"x":436,"y":719,"on":true},{"x":558,"y":700,"on":false},{"x":687,"y":510,"on":false},{"x":687,"y":358,"on":true},{"x":687,"y":206,"on":false},{"x":558,"y":15,"on":false},{"x":437,"y":-5,"on":true},{"x":430,"y":-34,"on":false},{"x":396,"y":-58,"on":false}], + [{"x":309,"y":91,"on":true},{"x":317,"y":114,"on":false},{"x":350,"y":133,"on":false},{"x":372,"y":133,"on":true},{"x":393,"y":133,"on":false},{"x":426,"y":113,"on":false},{"x":434,"y":90,"on":true},{"x":506,"y":110,"on":false},{"x":579,"y":248,"on":false},{"x":579,"y":358,"on":true},{"x":579,"y":468,"on":false},{"x":506,"y":604,"on":false},{"x":434,"y":624,"on":true},{"x":426,"y":601,"on":false},{"x":394,"y":580,"on":false},{"x":372,"y":580,"on":true},{"x":350,"y":580,"on":false},{"x":316,"y":600,"on":false},{"x":309,"y":623,"on":true},{"x":237,"y":604,"on":false},{"x":164,"y":466,"on":false},{"x":164,"y":358,"on":true},{"x":164,"y":249,"on":false},{"x":237,"y":110,"on":false}] + ] + }, + "uni047B": { + "advanceWidth": 603, + "contours": [ + [{"x":556,"y":271,"on":true},{"x":556,"y":154,"on":false},{"x":452,"y":12,"on":false},{"x":360,"y":-4,"on":true},{"x":350,"y":-53,"on":false},{"x":302,"y":-53,"on":true},{"x":253,"y":-53,"on":false},{"x":244,"y":-3,"on":true},{"x":154,"y":13,"on":false},{"x":48,"y":154,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":388,"on":false},{"x":150,"y":528,"on":false},{"x":245,"y":544,"on":true},{"x":250,"y":569,"on":false},{"x":279,"y":589,"on":false},{"x":302,"y":589,"on":true},{"x":324,"y":589,"on":false},{"x":354,"y":568,"on":false},{"x":359,"y":543,"on":true},{"x":449,"y":526,"on":false},{"x":556,"y":386,"on":false}], + [{"x":452,"y":271,"on":true},{"x":452,"y":423,"on":false},{"x":360,"y":455,"on":true},{"x":347,"y":412,"on":false},{"x":302,"y":412,"on":true},{"x":255,"y":412,"on":false},{"x":244,"y":455,"on":true},{"x":196,"y":438,"on":false},{"x":151,"y":345,"on":false},{"x":151,"y":270,"on":true},{"x":151,"y":194,"on":false},{"x":197,"y":99,"on":false},{"x":246,"y":84,"on":true},{"x":256,"y":124,"on":false},{"x":302,"y":124,"on":true},{"x":346,"y":124,"on":false},{"x":359,"y":84,"on":true},{"x":407,"y":100,"on":false},{"x":452,"y":194,"on":false}] + ] + }, + "uni047C": { + "advanceWidth": 939, + "contours": [ + [{"x":305,"y":920,"on":true},{"x":305,"y":937,"on":true},{"x":305,"y":999,"on":false},{"x":367,"y":1050,"on":false},{"x":416,"y":1050,"on":true},{"x":453,"y":1050,"on":false},{"x":521,"y":1021,"on":false},{"x":595,"y":992,"on":false},{"x":642,"y":991,"on":true},{"x":649,"y":991,"on":true},{"x":649,"y":921,"on":true},{"x":641,"y":921,"on":true},{"x":588,"y":921,"on":false},{"x":507,"y":948,"on":false},{"x":445,"y":976,"on":false},{"x":421,"y":976,"on":true},{"x":376,"y":976,"on":false},{"x":374,"y":920,"on":true}], + [{"x":404,"y":746,"on":true},{"x":404,"y":784,"on":true},{"x":432,"y":792,"on":false},{"x":461,"y":815,"on":false},{"x":461,"y":828,"on":true},{"x":461,"y":839,"on":false},{"x":446,"y":849,"on":false},{"x":425,"y":856,"on":false},{"x":410,"y":870,"on":false},{"x":410,"y":884,"on":true},{"x":410,"y":904,"on":false},{"x":438,"y":927,"on":false},{"x":463,"y":927,"on":true},{"x":492,"y":927,"on":false},{"x":527,"y":888,"on":false},{"x":527,"y":857,"on":true},{"x":527,"y":814,"on":false},{"x":463,"y":756,"on":false}], + [{"x":311,"y":-10,"on":true},{"x":227,"y":-10,"on":false},{"x":114,"y":86,"on":false},{"x":56,"y":256,"on":false},{"x":56,"y":367,"on":true},{"x":56,"y":471,"on":false},{"x":111,"y":632,"on":false},{"x":218,"y":724,"on":false},{"x":295,"y":724,"on":true},{"x":330,"y":724,"on":false},{"x":400,"y":699,"on":false},{"x":427,"y":679,"on":true},{"x":389,"y":601,"on":true},{"x":370,"y":616,"on":false},{"x":327,"y":635,"on":false},{"x":302,"y":635,"on":true},{"x":256,"y":635,"on":false},{"x":194,"y":566,"on":false},{"x":162,"y":444,"on":false},{"x":162,"y":365,"on":true},{"x":162,"y":234,"on":false},{"x":248,"y":83,"on":false},{"x":327,"y":83,"on":true},{"x":352,"y":83,"on":false},{"x":397,"y":102,"on":false},{"x":417,"y":119,"on":true},{"x":417,"y":332,"on":true},{"x":520,"y":332,"on":true},{"x":520,"y":119,"on":true},{"x":541,"y":102,"on":false},{"x":587,"y":83,"on":false},{"x":613,"y":83,"on":true},{"x":693,"y":83,"on":false},{"x":778,"y":234,"on":false},{"x":778,"y":365,"on":true},{"x":778,"y":445,"on":false},{"x":746,"y":567,"on":false},{"x":684,"y":635,"on":false},{"x":638,"y":635,"on":true},{"x":613,"y":635,"on":false},{"x":569,"y":616,"on":false},{"x":551,"y":601,"on":true},{"x":513,"y":679,"on":true},{"x":540,"y":700,"on":false},{"x":610,"y":724,"on":false},{"x":645,"y":724,"on":true},{"x":722,"y":724,"on":false},{"x":829,"y":632,"on":false},{"x":884,"y":471,"on":false},{"x":884,"y":367,"on":true},{"x":884,"y":256,"on":false},{"x":826,"y":86,"on":false},{"x":712,"y":-10,"on":false},{"x":627,"y":-10,"on":true},{"x":531,"y":-10,"on":false},{"x":470,"y":52,"on":true},{"x":407,"y":-10,"on":false}] + ] + }, + "uni047D": { + "advanceWidth": 810, + "contours": [ + [{"x":346,"y":897,"on":true},{"x":384,"y":897,"on":false},{"x":452,"y":868,"on":false},{"x":526,"y":839,"on":false},{"x":572,"y":839,"on":true},{"x":579,"y":839,"on":true},{"x":579,"y":768,"on":true},{"x":570,"y":768,"on":true},{"x":520,"y":768,"on":false},{"x":438,"y":796,"on":false},{"x":374,"y":823,"on":false},{"x":351,"y":823,"on":true},{"x":307,"y":823,"on":false},{"x":304,"y":767,"on":true},{"x":236,"y":767,"on":true},{"x":236,"y":784,"on":true},{"x":236,"y":845,"on":false},{"x":296,"y":897,"on":false}], + [{"x":394,"y":774,"on":true},{"x":423,"y":774,"on":false},{"x":458,"y":736,"on":false},{"x":458,"y":704,"on":true},{"x":458,"y":660,"on":false},{"x":393,"y":603,"on":false},{"x":334,"y":593,"on":true},{"x":334,"y":631,"on":true},{"x":391,"y":646,"on":false},{"x":391,"y":676,"on":true},{"x":391,"y":687,"on":false},{"x":376,"y":697,"on":false},{"x":356,"y":704,"on":false},{"x":341,"y":717,"on":false},{"x":341,"y":731,"on":true},{"x":341,"y":774,"on":false}], + [{"x":260,"y":-10,"on":true},{"x":157,"y":-10,"on":false},{"x":51,"y":139,"on":false},{"x":51,"y":269,"on":true},{"x":51,"y":407,"on":false},{"x":158,"y":550,"on":false},{"x":252,"y":550,"on":true},{"x":284,"y":550,"on":false},{"x":336,"y":534,"on":false},{"x":359,"y":520,"on":true},{"x":325,"y":443,"on":true},{"x":307,"y":453,"on":false},{"x":274,"y":464,"on":false},{"x":257,"y":464,"on":true},{"x":156,"y":464,"on":false},{"x":156,"y":270,"on":true},{"x":156,"y":183,"on":false},{"x":216,"y":76,"on":false},{"x":271,"y":76,"on":true},{"x":294,"y":76,"on":false},{"x":334,"y":94,"on":false},{"x":354,"y":116,"on":true},{"x":354,"y":284,"on":true},{"x":456,"y":284,"on":true},{"x":456,"y":117,"on":true},{"x":476,"y":94,"on":false},{"x":517,"y":76,"on":false},{"x":541,"y":76,"on":true},{"x":594,"y":76,"on":false},{"x":654,"y":177,"on":false},{"x":654,"y":270,"on":true},{"x":654,"y":464,"on":false},{"x":553,"y":464,"on":true},{"x":536,"y":464,"on":false},{"x":503,"y":453,"on":false},{"x":484,"y":443,"on":true},{"x":450,"y":520,"on":true},{"x":473,"y":534,"on":false},{"x":526,"y":550,"on":false},{"x":558,"y":550,"on":true},{"x":652,"y":550,"on":false},{"x":759,"y":407,"on":false},{"x":759,"y":269,"on":true},{"x":759,"y":132,"on":false},{"x":650,"y":-10,"on":false},{"x":549,"y":-10,"on":true},{"x":502,"y":-10,"on":false},{"x":430,"y":25,"on":false},{"x":405,"y":58,"on":true},{"x":379,"y":24,"on":false},{"x":308,"y":-10,"on":false}] + ] + }, + "uni047E": { + "advanceWidth": 855, + "references": [ + {"glyph":"uni0460","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2819","x":145,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni047F": { + "advanceWidth": 761, + "references": [ + {"glyph":"uni0461","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2819","x":86,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0480": { + "advanceWidth": 580, + "contours": [ + [{"x":367,"y":724,"on":true},{"x":468,"y":724,"on":false},{"x":550,"y":682,"on":true},{"x":513,"y":594,"on":true},{"x":483,"y":610,"on":false},{"x":409,"y":633,"on":false},{"x":368,"y":633,"on":true},{"x":302,"y":633,"on":false},{"x":212,"y":562,"on":false},{"x":165,"y":438,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":230,"on":false},{"x":264,"y":82,"on":false},{"x":371,"y":82,"on":true},{"x":424,"y":82,"on":false},{"x":472,"y":100,"on":true},{"x":472,"y":-237,"on":true},{"x":368,"y":-237,"on":true},{"x":368,"y":-10,"on":true},{"x":258,"y":-10,"on":false},{"x":119,"y":82,"on":false},{"x":55,"y":247,"on":false},{"x":55,"y":357,"on":true},{"x":55,"y":462,"on":false},{"x":127,"y":628,"on":false},{"x":266,"y":724,"on":false}] + ] + }, + "uni0481": { + "advanceWidth": 450, + "contours": [ + [{"x":284,"y":549,"on":true},{"x":321,"y":549,"on":false},{"x":393,"y":532,"on":false},{"x":420,"y":519,"on":true},{"x":390,"y":436,"on":true},{"x":366,"y":446,"on":false},{"x":308,"y":462,"on":false},{"x":283,"y":462,"on":true},{"x":153,"y":462,"on":false},{"x":153,"y":267,"on":true},{"x":153,"y":166,"on":false},{"x":221,"y":77,"on":false},{"x":286,"y":77,"on":true},{"x":315,"y":77,"on":false},{"x":360,"y":88,"on":false},{"x":381,"y":98,"on":true},{"x":381,"y":-234,"on":true},{"x":279,"y":-234,"on":true},{"x":279,"y":-10,"on":true},{"x":48,"y":-4,"on":false},{"x":48,"y":267,"on":true},{"x":48,"y":414,"on":false},{"x":178,"y":549,"on":false}] + ] + }, + "uni0482": { + "advanceWidth": 564, + "contours": [ + [{"x":401,"y":631,"on":true},{"x":466,"y":598,"on":true},{"x":390,"y":448,"on":true},{"x":521,"y":382,"on":true},{"x":488,"y":319,"on":true},{"x":359,"y":386,"on":true},{"x":272,"y":210,"on":true},{"x":402,"y":143,"on":true},{"x":371,"y":80,"on":true},{"x":240,"y":147,"on":true},{"x":165,"y":-3,"on":true},{"x":98,"y":29,"on":true},{"x":174,"y":181,"on":true},{"x":43,"y":248,"on":true},{"x":75,"y":311,"on":true},{"x":207,"y":243,"on":true},{"x":293,"y":419,"on":true},{"x":161,"y":486,"on":true},{"x":194,"y":550,"on":true},{"x":325,"y":482,"on":true}] + ] + }, + "uni0483": { + "advanceWidth": 0, + "contours": [ + [{"x":-344,"y":613,"on":true},{"x":-349,"y":569,"on":false},{"x":-390,"y":569,"on":true},{"x":-435,"y":569,"on":false},{"x":-435,"y":623,"on":true},{"x":-435,"y":650,"on":false},{"x":-412,"y":675,"on":false},{"x":-386,"y":675,"on":true},{"x":-194,"y":675,"on":true},{"x":-189,"y":720,"on":false},{"x":-147,"y":720,"on":true},{"x":-101,"y":720,"on":false},{"x":-101,"y":667,"on":true},{"x":-101,"y":613,"on":false},{"x":-151,"y":613,"on":true}] + ] + }, + "uni0484": { + "advanceWidth": 0, + "contours": [ + [{"x":-206,"y":739,"on":true},{"x":-157,"y":739,"on":false},{"x":-95,"y":689,"on":false},{"x":-95,"y":627,"on":true},{"x":-95,"y":609,"on":true},{"x":-164,"y":609,"on":true},{"x":-165,"y":640,"on":false},{"x":-189,"y":666,"on":false},{"x":-211,"y":666,"on":true},{"x":-237,"y":666,"on":false},{"x":-298,"y":638,"on":false},{"x":-377,"y":610,"on":false},{"x":-431,"y":610,"on":true},{"x":-438,"y":610,"on":true},{"x":-438,"y":681,"on":true},{"x":-432,"y":681,"on":true},{"x":-386,"y":682,"on":false},{"x":-312,"y":710,"on":false},{"x":-244,"y":739,"on":false}] + ] + }, + "uni0485": { + "advanceWidth": 0, + "contours": [ + [{"x":-334,"y":714,"on":true},{"x":-334,"y":746,"on":false},{"x":-299,"y":784,"on":false},{"x":-269,"y":784,"on":true},{"x":-245,"y":784,"on":false},{"x":-217,"y":761,"on":false},{"x":-217,"y":741,"on":true},{"x":-217,"y":727,"on":false},{"x":-232,"y":713,"on":false},{"x":-252,"y":706,"on":false},{"x":-267,"y":696,"on":false},{"x":-267,"y":686,"on":true},{"x":-267,"y":672,"on":false},{"x":-239,"y":648,"on":false},{"x":-208,"y":640,"on":true},{"x":-208,"y":601,"on":true},{"x":-268,"y":612,"on":false},{"x":-334,"y":669,"on":false}] + ] + }, + "uni0486": { + "advanceWidth": 0, + "contours": [ + [{"x":-208,"y":714,"on":true},{"x":-208,"y":669,"on":false},{"x":-274,"y":612,"on":false},{"x":-334,"y":601,"on":true},{"x":-334,"y":640,"on":true},{"x":-274,"y":655,"on":false},{"x":-274,"y":686,"on":true},{"x":-274,"y":697,"on":false},{"x":-289,"y":707,"on":false},{"x":-310,"y":714,"on":false},{"x":-325,"y":727,"on":false},{"x":-325,"y":741,"on":true},{"x":-325,"y":761,"on":false},{"x":-297,"y":784,"on":false},{"x":-272,"y":784,"on":true},{"x":-243,"y":784,"on":false},{"x":-208,"y":746,"on":false}] + ] + }, + "uni0487": { + "advanceWidth": 0, + "contours": [ + [{"x":-60,"y":894,"on":true},{"x":-24,"y":894,"on":false},{"x":43,"y":864,"on":false},{"x":115,"y":835,"on":false},{"x":160,"y":835,"on":true},{"x":167,"y":835,"on":true},{"x":167,"y":764,"on":true},{"x":160,"y":764,"on":true},{"x":116,"y":764,"on":false},{"x":53,"y":781,"on":false},{"x":4,"y":802,"on":false},{"x":-36,"y":819,"on":false},{"x":-56,"y":819,"on":true},{"x":-101,"y":819,"on":false},{"x":-102,"y":760,"on":true},{"x":-169,"y":760,"on":true},{"x":-169,"y":777,"on":true},{"x":-169,"y":841,"on":false},{"x":-108,"y":894,"on":false}] + ] + }, + "uni0488": { + "advanceWidth": 964, + "contours": [ + [{"x":373,"y":600,"on":true},{"x":375,"y":644,"on":false},{"x":427,"y":695,"on":false},{"x":476,"y":695,"on":true},{"x":524,"y":695,"on":false},{"x":579,"y":644,"on":false},{"x":582,"y":600,"on":true},{"x":541,"y":600,"on":true},{"x":538,"y":626,"on":false},{"x":503,"y":644,"on":false},{"x":476,"y":644,"on":true},{"x":447,"y":644,"on":false},{"x":415,"y":627,"on":false},{"x":412,"y":600,"on":true}], + [{"x":647,"y":461,"on":true},{"x":649,"y":504,"on":false},{"x":701,"y":556,"on":false},{"x":751,"y":556,"on":true},{"x":799,"y":556,"on":false},{"x":854,"y":504,"on":false},{"x":856,"y":461,"on":true},{"x":815,"y":461,"on":true},{"x":813,"y":487,"on":false},{"x":777,"y":505,"on":false},{"x":751,"y":505,"on":true},{"x":721,"y":505,"on":false},{"x":689,"y":488,"on":false},{"x":687,"y":461,"on":true}], + [{"x":102,"y":461,"on":true},{"x":104,"y":504,"on":false},{"x":156,"y":556,"on":false},{"x":205,"y":556,"on":true},{"x":253,"y":556,"on":false},{"x":308,"y":504,"on":false},{"x":311,"y":461,"on":true},{"x":270,"y":461,"on":true},{"x":267,"y":486,"on":false},{"x":232,"y":504,"on":false},{"x":205,"y":504,"on":true},{"x":176,"y":504,"on":false},{"x":144,"y":488,"on":false},{"x":141,"y":461,"on":true}], + [{"x":19,"y":224,"on":true},{"x":21,"y":268,"on":false},{"x":73,"y":319,"on":false},{"x":123,"y":319,"on":true},{"x":171,"y":319,"on":false},{"x":226,"y":267,"on":false},{"x":228,"y":224,"on":true},{"x":187,"y":224,"on":true},{"x":185,"y":250,"on":false},{"x":150,"y":267,"on":false},{"x":123,"y":267,"on":true},{"x":93,"y":267,"on":false},{"x":61,"y":251,"on":false},{"x":59,"y":224,"on":true}], + [{"x":736,"y":223,"on":true},{"x":738,"y":267,"on":false},{"x":790,"y":318,"on":false},{"x":839,"y":318,"on":true},{"x":887,"y":318,"on":false},{"x":941,"y":266,"on":false},{"x":944,"y":223,"on":true},{"x":904,"y":223,"on":true},{"x":901,"y":249,"on":false},{"x":865,"y":266,"on":false},{"x":839,"y":266,"on":true},{"x":809,"y":266,"on":false},{"x":777,"y":250,"on":false},{"x":775,"y":223,"on":true}], + [{"x":102,"y":-20,"on":true},{"x":104,"y":24,"on":false},{"x":156,"y":75,"on":false},{"x":206,"y":75,"on":true},{"x":254,"y":75,"on":false},{"x":308,"y":24,"on":false},{"x":311,"y":-20,"on":true},{"x":270,"y":-20,"on":true},{"x":268,"y":6,"on":false},{"x":232,"y":23,"on":false},{"x":206,"y":23,"on":true},{"x":176,"y":23,"on":false},{"x":144,"y":7,"on":false},{"x":142,"y":-20,"on":true}], + [{"x":647,"y":-20,"on":true},{"x":649,"y":24,"on":false},{"x":701,"y":75,"on":false},{"x":751,"y":75,"on":true},{"x":799,"y":75,"on":false},{"x":854,"y":24,"on":false},{"x":856,"y":-20,"on":true},{"x":815,"y":-20,"on":true},{"x":813,"y":6,"on":false},{"x":777,"y":23,"on":false},{"x":751,"y":23,"on":true},{"x":721,"y":23,"on":false},{"x":689,"y":7,"on":false},{"x":687,"y":-20,"on":true}], + [{"x":373,"y":-156,"on":true},{"x":375,"y":-112,"on":false},{"x":426,"y":-61,"on":false},{"x":476,"y":-61,"on":true},{"x":524,"y":-61,"on":false},{"x":579,"y":-113,"on":false},{"x":582,"y":-156,"on":true},{"x":541,"y":-156,"on":true},{"x":538,"y":-130,"on":false},{"x":503,"y":-113,"on":false},{"x":476,"y":-113,"on":true},{"x":447,"y":-113,"on":false},{"x":415,"y":-129,"on":false},{"x":412,"y":-156,"on":true}] + ] + }, + "uni0489": { + "advanceWidth": 944, + "contours": [ + [{"x":527,"y":728,"on":true},{"x":516,"y":682,"on":false},{"x":498,"y":592,"on":false},{"x":493,"y":557,"on":true},{"x":422,"y":557,"on":true},{"x":417,"y":564,"on":true},{"x":427,"y":601,"on":false},{"x":460,"y":690,"on":false},{"x":477,"y":728,"on":true}], + [{"x":190,"y":624,"on":true},{"x":216,"y":582,"on":false},{"x":267,"y":505,"on":false},{"x":287,"y":478,"on":true},{"x":237,"y":428,"on":true},{"x":228,"y":430,"on":true},{"x":208,"y":464,"on":false},{"x":171,"y":546,"on":false},{"x":155,"y":588,"on":true}], + [{"x":795,"y":582,"on":true},{"x":831,"y":547,"on":true},{"x":790,"y":522,"on":false},{"x":713,"y":470,"on":false},{"x":686,"y":450,"on":true},{"x":636,"y":500,"on":true},{"x":637,"y":508,"on":true},{"x":669,"y":527,"on":false},{"x":755,"y":567,"on":false}], + [{"x":760,"y":325,"on":true},{"x":796,"y":316,"on":false},{"x":890,"y":281,"on":false},{"x":924,"y":265,"on":true},{"x":924,"y":215,"on":true},{"x":878,"y":226,"on":false},{"x":788,"y":244,"on":false},{"x":753,"y":249,"on":true},{"x":753,"y":320,"on":true}], + [{"x":19,"y":324,"on":true},{"x":66,"y":313,"on":false},{"x":156,"y":294,"on":false},{"x":190,"y":290,"on":true},{"x":190,"y":219,"on":true},{"x":183,"y":215,"on":true},{"x":145,"y":225,"on":false},{"x":59,"y":256,"on":false},{"x":19,"y":274,"on":true}], + [{"x":706,"y":93,"on":true},{"x":715,"y":92,"on":true},{"x":734,"y":60,"on":false},{"x":774,"y":-26,"on":false},{"x":788,"y":-66,"on":true},{"x":753,"y":-102,"on":true},{"x":728,"y":-62,"on":false},{"x":677,"y":16,"on":false},{"x":657,"y":44,"on":true}], + [{"x":258,"y":72,"on":true},{"x":309,"y":23,"on":true},{"x":307,"y":14,"on":true},{"x":275,"y":-5,"on":false},{"x":186,"y":-46,"on":false},{"x":149,"y":-60,"on":true},{"x":113,"y":-24,"on":true},{"x":154,"y":1,"on":false},{"x":231,"y":52,"on":false}], + [{"x":523,"y":-17,"on":true},{"x":528,"y":-24,"on":true},{"x":518,"y":-62,"on":false},{"x":486,"y":-148,"on":false},{"x":468,"y":-188,"on":true},{"x":418,"y":-188,"on":true},{"x":428,"y":-142,"on":false},{"x":447,"y":-51,"on":false},{"x":452,"y":-17,"on":true}] + ] + }, + "uni048A": { + "advanceWidth": 748, + "contours": [ + [{"x":355,"y":770,"on":true},{"x":260,"y":770,"on":false},{"x":180,"y":849,"on":false},{"x":174,"y":928,"on":true},{"x":264,"y":928,"on":true},{"x":268,"y":876,"on":false},{"x":310,"y":836,"on":false},{"x":357,"y":836,"on":true},{"x":398,"y":836,"on":false},{"x":445,"y":878,"on":false},{"x":450,"y":928,"on":true},{"x":540,"y":928,"on":true},{"x":534,"y":852,"on":false},{"x":447,"y":770,"on":false}], + [{"x":541,"y":-196,"on":true},{"x":616,"y":0,"on":true},{"x":529,"y":0,"on":true},{"x":529,"y":386,"on":true},{"x":529,"y":426,"on":false},{"x":534,"y":530,"on":false},{"x":537,"y":570,"on":true},{"x":534,"y":570,"on":true},{"x":209,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":184,"y":714,"on":true},{"x":184,"y":329,"on":true},{"x":184,"y":287,"on":false},{"x":180,"y":188,"on":false},{"x":178,"y":148,"on":true},{"x":182,"y":148,"on":true},{"x":504,"y":714,"on":true},{"x":627,"y":714,"on":true},{"x":627,"y":94,"on":true},{"x":730,"y":94,"on":true},{"x":658,"y":-196,"on":true}] + ] + }, + "uni048B": { + "advanceWidth": 632, + "contours": [ + [{"x":304,"y":605,"on":true},{"x":209,"y":605,"on":false},{"x":129,"y":684,"on":false},{"x":123,"y":763,"on":true},{"x":213,"y":763,"on":true},{"x":218,"y":712,"on":false},{"x":259,"y":671,"on":false},{"x":306,"y":671,"on":true},{"x":346,"y":671,"on":false},{"x":394,"y":713,"on":false},{"x":399,"y":763,"on":true},{"x":489,"y":763,"on":true},{"x":483,"y":686,"on":false},{"x":396,"y":605,"on":false}], + [{"x":457,"y":-189,"on":true},{"x":517,"y":0,"on":true},{"x":429,"y":0,"on":true},{"x":429,"y":282,"on":true},{"x":429,"y":314,"on":false},{"x":432,"y":392,"on":false},{"x":435,"y":420,"on":true},{"x":196,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":173,"y":539,"on":true},{"x":173,"y":259,"on":true},{"x":173,"y":226,"on":false},{"x":169,"y":150,"on":false},{"x":167,"y":118,"on":true},{"x":406,"y":539,"on":true},{"x":526,"y":539,"on":true},{"x":526,"y":84,"on":true},{"x":621,"y":84,"on":true},{"x":558,"y":-189,"on":true}] + ] + }, + "uni048C": { + "advanceWidth": 564, + "contours": [ + [{"x":191,"y":714,"on":true},{"x":191,"y":624,"on":true},{"x":337,"y":624,"on":true},{"x":337,"y":538,"on":true},{"x":191,"y":538,"on":true},{"x":191,"y":420,"on":true},{"x":259,"y":420,"on":true},{"x":398,"y":420,"on":false},{"x":521,"y":308,"on":false},{"x":521,"y":213,"on":true},{"x":521,"y":112,"on":false},{"x":396,"y":0,"on":false},{"x":268,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":538,"on":true},{"x":15,"y":538,"on":true},{"x":15,"y":624,"on":true},{"x":86,"y":624,"on":true},{"x":86,"y":714,"on":true}], + [{"x":259,"y":330,"on":true},{"x":191,"y":330,"on":true},{"x":191,"y":89,"on":true},{"x":263,"y":89,"on":true},{"x":414,"y":89,"on":false},{"x":414,"y":213,"on":true},{"x":414,"y":277,"on":false},{"x":335,"y":330,"on":false}] + ] + }, + "uni048D": { + "advanceWidth": 535, + "contours": [ + [{"x":178,"y":760,"on":true},{"x":178,"y":645,"on":true},{"x":313,"y":645,"on":true},{"x":313,"y":570,"on":true},{"x":178,"y":570,"on":true},{"x":178,"y":322,"on":true},{"x":282,"y":322,"on":true},{"x":493,"y":322,"on":false},{"x":493,"y":166,"on":true},{"x":493,"y":88,"on":false},{"x":392,"y":0,"on":false},{"x":285,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":570,"on":true},{"x":6,"y":570,"on":true},{"x":6,"y":645,"on":true},{"x":75,"y":645,"on":true},{"x":75,"y":760,"on":true}], + [{"x":278,"y":242,"on":true},{"x":178,"y":242,"on":true},{"x":178,"y":78,"on":true},{"x":280,"y":78,"on":true},{"x":330,"y":78,"on":false},{"x":391,"y":118,"on":false},{"x":391,"y":162,"on":true},{"x":391,"y":205,"on":false},{"x":334,"y":242,"on":false}] + ] + }, + "uni048E": { + "advanceWidth": 565, + "contours": [ + [{"x":523,"y":500,"on":true},{"x":523,"y":437,"on":false},{"x":475,"y":337,"on":false},{"x":421,"y":307,"on":true},{"x":472,"y":232,"on":true},{"x":415,"y":192,"on":true},{"x":355,"y":282,"on":true},{"x":334,"y":276,"on":false},{"x":288,"y":271,"on":false},{"x":260,"y":271,"on":true},{"x":191,"y":271,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":274,"y":714,"on":true},{"x":402,"y":714,"on":false},{"x":523,"y":604,"on":false}], + [{"x":191,"y":359,"on":true},{"x":248,"y":359,"on":true},{"x":264,"y":359,"on":false},{"x":292,"y":361,"on":false},{"x":305,"y":363,"on":true},{"x":258,"y":433,"on":true},{"x":317,"y":472,"on":true},{"x":373,"y":390,"on":true},{"x":394,"y":407,"on":false},{"x":416,"y":460,"on":false},{"x":416,"y":497,"on":true},{"x":416,"y":563,"on":false},{"x":342,"y":625,"on":false},{"x":265,"y":625,"on":true},{"x":191,"y":625,"on":true}] + ] + }, + "uni048F": { + "advanceWidth": 572, + "contours": [ + [{"x":322,"y":-10,"on":true},{"x":270,"y":-10,"on":false},{"x":198,"y":36,"on":false},{"x":178,"y":68,"on":true},{"x":172,"y":68,"on":true},{"x":174,"y":56,"on":false},{"x":178,"y":2,"on":false},{"x":178,"y":-17,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":539,"on":true},{"x":159,"y":539,"on":true},{"x":173,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":201,"y":504,"on":false},{"x":273,"y":549,"on":false},{"x":326,"y":549,"on":true},{"x":418,"y":549,"on":false},{"x":524,"y":408,"on":false},{"x":524,"y":270,"on":true},{"x":524,"y":182,"on":false},{"x":480,"y":62,"on":false},{"x":439,"y":29,"on":true},{"x":483,"y":-44,"on":true},{"x":425,"y":-81,"on":true},{"x":375,"y":-1,"on":true},{"x":351,"y":-10,"on":false}], + [{"x":301,"y":464,"on":true},{"x":235,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":287,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":175,"on":false},{"x":232,"y":78,"on":false},{"x":299,"y":76,"on":true},{"x":316,"y":76,"on":false},{"x":328,"y":80,"on":true},{"x":273,"y":172,"on":true},{"x":334,"y":210,"on":true},{"x":387,"y":122,"on":true},{"x":419,"y":170,"on":false},{"x":419,"y":271,"on":true},{"x":419,"y":368,"on":false},{"x":362,"y":464,"on":false}] + ] + }, + "uni0490": { + "advanceWidth": 489, + "contours": [ + [{"x":468,"y":863,"on":true},{"x":468,"y":622,"on":true},{"x":191,"y":622,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":371,"y":714,"on":true},{"x":371,"y":863,"on":true}] + ] + }, + "uni0491": { + "advanceWidth": 412, + "contours": [ + [{"x":389,"y":693,"on":true},{"x":389,"y":458,"on":true},{"x":178,"y":458,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":292,"y":539,"on":true},{"x":292,"y":693,"on":true}] + ] + }, + "uni0492": { + "advanceWidth": 481, + "contours": [ + [{"x":463,"y":714,"on":true},{"x":463,"y":623,"on":true},{"x":191,"y":623,"on":true},{"x":191,"y":398,"on":true},{"x":362,"y":398,"on":true},{"x":362,"y":309,"on":true},{"x":191,"y":309,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":309,"on":true},{"x":19,"y":309,"on":true},{"x":19,"y":398,"on":true},{"x":86,"y":398,"on":true},{"x":86,"y":714,"on":true}] + ] + }, + "uni0493": { + "advanceWidth": 407, + "contours": [ + [{"x":390,"y":539,"on":true},{"x":390,"y":453,"on":true},{"x":175,"y":453,"on":true},{"x":175,"y":305,"on":true},{"x":314,"y":305,"on":true},{"x":314,"y":224,"on":true},{"x":175,"y":224,"on":true},{"x":175,"y":0,"on":true},{"x":73,"y":0,"on":true},{"x":73,"y":224,"on":true},{"x":5,"y":224,"on":true},{"x":5,"y":305,"on":true},{"x":73,"y":305,"on":true},{"x":73,"y":539,"on":true}] + ] + }, + "uni0494": { + "advanceWidth": 610, + "contours": [ + [{"x":267,"y":301,"on":true},{"x":248,"y":301,"on":false},{"x":205,"y":297,"on":false},{"x":191,"y":294,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":465,"y":714,"on":true},{"x":465,"y":623,"on":true},{"x":191,"y":623,"on":true},{"x":191,"y":385,"on":true},{"x":210,"y":389,"on":false},{"x":262,"y":394,"on":false},{"x":288,"y":394,"on":true},{"x":375,"y":394,"on":false},{"x":502,"y":318,"on":false},{"x":570,"y":175,"on":false},{"x":570,"y":75,"on":true},{"x":570,"y":-28,"on":false},{"x":509,"y":-173,"on":false},{"x":400,"y":-248,"on":false},{"x":327,"y":-248,"on":true},{"x":251,"y":-248,"on":false},{"x":201,"y":-226,"on":true},{"x":201,"y":-132,"on":true},{"x":228,"y":-143,"on":false},{"x":281,"y":-155,"on":false},{"x":310,"y":-155,"on":true},{"x":387,"y":-155,"on":false},{"x":463,"y":-29,"on":false},{"x":463,"y":74,"on":true},{"x":463,"y":182,"on":false},{"x":362,"y":301,"on":false}] + ] + }, + "uni0495": { + "advanceWidth": 510, + "contours": [ + [{"x":393,"y":539,"on":true},{"x":393,"y":453,"on":true},{"x":178,"y":453,"on":true},{"x":178,"y":303,"on":true},{"x":194,"y":307,"on":false},{"x":225,"y":310,"on":false},{"x":241,"y":310,"on":true},{"x":352,"y":310,"on":false},{"x":478,"y":172,"on":false},{"x":478,"y":32,"on":true},{"x":478,"y":-108,"on":false},{"x":364,"y":-244,"on":false},{"x":275,"y":-244,"on":true},{"x":211,"y":-244,"on":false},{"x":164,"y":-217,"on":true},{"x":164,"y":-127,"on":true},{"x":185,"y":-140,"on":false},{"x":235,"y":-156,"on":false},{"x":263,"y":-156,"on":true},{"x":317,"y":-156,"on":false},{"x":376,"y":-64,"on":false},{"x":376,"y":32,"on":true},{"x":376,"y":126,"on":false},{"x":305,"y":222,"on":false},{"x":231,"y":222,"on":true},{"x":218,"y":222,"on":false},{"x":191,"y":218,"on":false},{"x":178,"y":215,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni0496": { + "advanceWidth": 851, + "contours": [ + [{"x":791,"y":714,"on":true},{"x":556,"y":370,"on":true},{"x":739,"y":93,"on":true},{"x":834,"y":93,"on":true},{"x":834,"y":-196,"on":true},{"x":733,"y":-196,"on":true},{"x":733,"y":0,"on":true},{"x":683,"y":0,"on":true},{"x":449,"y":363,"on":true},{"x":449,"y":0,"on":true},{"x":349,"y":0,"on":true},{"x":349,"y":363,"on":true},{"x":115,"y":0,"on":true},{"x":-1,"y":0,"on":true},{"x":242,"y":369,"on":true},{"x":7,"y":714,"on":true},{"x":120,"y":714,"on":true},{"x":349,"y":369,"on":true},{"x":349,"y":714,"on":true},{"x":449,"y":714,"on":true},{"x":449,"y":369,"on":true},{"x":678,"y":714,"on":true}] + ] + }, + "uni0497": { + "advanceWidth": 762, + "contours": [ + [{"x":702,"y":539,"on":true},{"x":512,"y":280,"on":true},{"x":656,"y":83,"on":true},{"x":746,"y":83,"on":true},{"x":746,"y":-189,"on":true},{"x":649,"y":-189,"on":true},{"x":649,"y":0,"on":true},{"x":605,"y":0,"on":true},{"x":408,"y":275,"on":true},{"x":408,"y":0,"on":true},{"x":311,"y":0,"on":true},{"x":311,"y":275,"on":true},{"x":115,"y":0,"on":true},{"x":2,"y":0,"on":true},{"x":208,"y":280,"on":true},{"x":18,"y":539,"on":true},{"x":128,"y":539,"on":true},{"x":311,"y":279,"on":true},{"x":311,"y":539,"on":true},{"x":408,"y":539,"on":true},{"x":408,"y":279,"on":true},{"x":593,"y":539,"on":true}] + ] + }, + "uni0498": { + "advanceWidth": 548, + "references": [ + {"glyph":"uni0417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2803","x":149,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni0499": { + "advanceWidth": 457, + "references": [ + {"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2803","x":111,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni049A": { + "advanceWidth": 624, + "contours": [ + [{"x":561,"y":714,"on":true},{"x":305,"y":371,"on":true},{"x":507,"y":93,"on":true},{"x":609,"y":93,"on":true},{"x":609,"y":-196,"on":true},{"x":508,"y":-196,"on":true},{"x":508,"y":0,"on":true},{"x":451,"y":0,"on":true},{"x":191,"y":365,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":372,"on":true},{"x":446,"y":714,"on":true}] + ] + }, + "uni049B": { + "advanceWidth": 534, + "contours": [ + [{"x":425,"y":-189,"on":true},{"x":425,"y":0,"on":true},{"x":383,"y":0,"on":true},{"x":178,"y":275,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":279,"on":true},{"x":371,"y":539,"on":true},{"x":483,"y":539,"on":true},{"x":284,"y":281,"on":true},{"x":436,"y":84,"on":true},{"x":522,"y":84,"on":true},{"x":522,"y":-189,"on":true}] + ] + }, + "uni049C": { + "advanceWidth": 571, + "contours": [ + [{"x":302,"y":110,"on":true},{"x":244,"y":110,"on":true},{"x":244,"y":290,"on":true},{"x":191,"y":364,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":370,"on":true},{"x":244,"y":441,"on":true},{"x":244,"y":627,"on":true},{"x":302,"y":627,"on":true},{"x":302,"y":520,"on":true},{"x":446,"y":714,"on":true},{"x":561,"y":714,"on":true},{"x":304,"y":369,"on":true},{"x":573,"y":0,"on":true},{"x":451,"y":0,"on":true},{"x":302,"y":209,"on":true}] + ] + }, + "uni049D": { + "advanceWidth": 506, + "contours": [ + [{"x":282,"y":502,"on":true},{"x":282,"y":419,"on":true},{"x":371,"y":539,"on":true},{"x":483,"y":539,"on":true},{"x":284,"y":281,"on":true},{"x":499,"y":0,"on":true},{"x":383,"y":0,"on":true},{"x":282,"y":135,"on":true},{"x":282,"y":41,"on":true},{"x":224,"y":41,"on":true},{"x":224,"y":213,"on":true},{"x":178,"y":275,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":279,"on":true},{"x":224,"y":341,"on":true},{"x":224,"y":502,"on":true}] + ] + }, + "uni049E": { + "advanceWidth": 571, + "contours": [ + [{"x":14,"y":549,"on":true},{"x":14,"y":636,"on":true},{"x":82,"y":636,"on":true},{"x":82,"y":714,"on":true},{"x":187,"y":714,"on":true},{"x":187,"y":636,"on":true},{"x":272,"y":636,"on":true},{"x":272,"y":549,"on":true},{"x":187,"y":549,"on":true},{"x":187,"y":370,"on":true},{"x":442,"y":714,"on":true},{"x":557,"y":714,"on":true},{"x":300,"y":369,"on":true},{"x":569,"y":0,"on":true},{"x":447,"y":0,"on":true},{"x":187,"y":364,"on":true},{"x":187,"y":0,"on":true},{"x":82,"y":0,"on":true},{"x":82,"y":549,"on":true}] + ] + }, + "uni049F": { + "advanceWidth": 508, + "contours": [ + [{"x":177,"y":760,"on":true},{"x":177,"y":674,"on":true},{"x":332,"y":674,"on":true},{"x":332,"y":601,"on":true},{"x":177,"y":601,"on":true},{"x":177,"y":279,"on":true},{"x":371,"y":539,"on":true},{"x":483,"y":539,"on":true},{"x":284,"y":281,"on":true},{"x":499,"y":0,"on":true},{"x":383,"y":0,"on":true},{"x":177,"y":275,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":601,"on":true},{"x":7,"y":601,"on":true},{"x":7,"y":674,"on":true},{"x":75,"y":674,"on":true},{"x":75,"y":760,"on":true}] + ] + }, + "uni04A0": { + "advanceWidth": 643, + "contours": [ + [{"x":633,"y":714,"on":true},{"x":376,"y":369,"on":true},{"x":645,"y":0,"on":true},{"x":524,"y":0,"on":true},{"x":263,"y":364,"on":true},{"x":263,"y":0,"on":true},{"x":158,"y":0,"on":true},{"x":158,"y":622,"on":true},{"x":7,"y":622,"on":true},{"x":7,"y":714,"on":true},{"x":263,"y":714,"on":true},{"x":263,"y":370,"on":true},{"x":518,"y":714,"on":true}] + ] + }, + "uni04A1": { + "advanceWidth": 581, + "contours": [ + [{"x":561,"y":539,"on":true},{"x":363,"y":281,"on":true},{"x":578,"y":0,"on":true},{"x":464,"y":0,"on":true},{"x":258,"y":275,"on":true},{"x":258,"y":0,"on":true},{"x":158,"y":0,"on":true},{"x":158,"y":456,"on":true},{"x":12,"y":456,"on":true},{"x":12,"y":539,"on":true},{"x":258,"y":539,"on":true},{"x":258,"y":279,"on":true},{"x":452,"y":539,"on":true}] + ] + }, + "uni04A2": { + "advanceWidth": 703, + "contours": [ + [{"x":579,"y":-196,"on":true},{"x":579,"y":0,"on":true},{"x":484,"y":0,"on":true},{"x":484,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":484,"y":418,"on":true},{"x":484,"y":714,"on":true},{"x":588,"y":714,"on":true},{"x":588,"y":93,"on":true},{"x":680,"y":93,"on":true},{"x":680,"y":-196,"on":true}] + ] + }, + "uni04A3": { + "advanceWidth": 611, + "contours": [ + [{"x":491,"y":-189,"on":true},{"x":491,"y":0,"on":true},{"x":404,"y":0,"on":true},{"x":404,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":320,"on":true},{"x":404,"y":320,"on":true},{"x":404,"y":539,"on":true},{"x":506,"y":539,"on":true},{"x":506,"y":84,"on":true},{"x":589,"y":84,"on":true},{"x":589,"y":-189,"on":true}] + ] + }, + "uni04A4": { + "advanceWidth": 747, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":483,"y":418,"on":true},{"x":483,"y":714,"on":true},{"x":739,"y":714,"on":true},{"x":739,"y":622,"on":true},{"x":588,"y":622,"on":true},{"x":588,"y":0,"on":true},{"x":483,"y":0,"on":true},{"x":483,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true}] + ] + }, + "uni04A5": { + "advanceWidth": 663, + "contours": [ + [{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":320,"on":true},{"x":404,"y":320,"on":true},{"x":404,"y":539,"on":true},{"x":653,"y":539,"on":true},{"x":653,"y":456,"on":true},{"x":506,"y":456,"on":true},{"x":506,"y":0,"on":true},{"x":404,"y":0,"on":true},{"x":404,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true}] + ] + }, + "uni04A6": { + "advanceWidth": 968, + "contours": [ + [{"x":557,"y":714,"on":true},{"x":557,"y":386,"on":true},{"x":579,"y":390,"on":false},{"x":630,"y":394,"on":false},{"x":653,"y":394,"on":true},{"x":737,"y":394,"on":false},{"x":860,"y":317,"on":false},{"x":928,"y":174,"on":false},{"x":928,"y":74,"on":true},{"x":928,"y":-28,"on":false},{"x":867,"y":-172,"on":false},{"x":758,"y":-248,"on":false},{"x":686,"y":-248,"on":true},{"x":646,"y":-248,"on":false},{"x":586,"y":-236,"on":false},{"x":559,"y":-226,"on":true},{"x":559,"y":-132,"on":true},{"x":586,"y":-143,"on":false},{"x":640,"y":-155,"on":false},{"x":669,"y":-155,"on":true},{"x":745,"y":-155,"on":false},{"x":821,"y":-28,"on":false},{"x":821,"y":74,"on":true},{"x":821,"y":187,"on":false},{"x":719,"y":301,"on":false},{"x":633,"y":301,"on":true},{"x":616,"y":301,"on":false},{"x":573,"y":297,"on":false},{"x":557,"y":293,"on":true},{"x":557,"y":0,"on":true},{"x":452,"y":0,"on":true},{"x":452,"y":622,"on":true},{"x":191,"y":622,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true}] + ] + }, + "uni04A7": { + "advanceWidth": 801, + "contours": [ + [{"x":485,"y":539,"on":true},{"x":485,"y":304,"on":true},{"x":514,"y":310,"on":false},{"x":541,"y":310,"on":true},{"x":608,"y":310,"on":false},{"x":711,"y":250,"on":false},{"x":770,"y":126,"on":false},{"x":770,"y":32,"on":true},{"x":770,"y":-108,"on":false},{"x":660,"y":-244,"on":false},{"x":574,"y":-244,"on":true},{"x":511,"y":-244,"on":false},{"x":466,"y":-217,"on":true},{"x":466,"y":-127,"on":true},{"x":486,"y":-140,"on":false},{"x":535,"y":-156,"on":false},{"x":561,"y":-156,"on":true},{"x":612,"y":-156,"on":false},{"x":668,"y":-64,"on":false},{"x":668,"y":32,"on":true},{"x":668,"y":222,"on":false},{"x":533,"y":222,"on":true},{"x":507,"y":222,"on":false},{"x":485,"y":214,"on":true},{"x":485,"y":0,"on":true},{"x":383,"y":0,"on":true},{"x":383,"y":455,"on":true},{"x":178,"y":455,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni04A8": { + "advanceWidth": 719, + "contours": [ + [{"x":664,"y":331,"on":true},{"x":664,"y":242,"on":false},{"x":599,"y":104,"on":false},{"x":553,"y":64,"on":true},{"x":566,"y":56,"on":false},{"x":601,"y":47,"on":false},{"x":620,"y":47,"on":true},{"x":654,"y":47,"on":false},{"x":684,"y":58,"on":true},{"x":684,"y":-29,"on":true},{"x":670,"y":-35,"on":false},{"x":629,"y":-41,"on":false},{"x":609,"y":-41,"on":true},{"x":567,"y":-41,"on":false},{"x":493,"y":-15,"on":false},{"x":461,"y":8,"on":true},{"x":412,"y":-10,"on":false},{"x":350,"y":-10,"on":true},{"x":254,"y":-10,"on":false},{"x":124,"y":82,"on":false},{"x":58,"y":245,"on":false},{"x":58,"y":350,"on":true},{"x":58,"y":526,"on":false},{"x":200,"y":726,"on":false},{"x":341,"y":725,"on":true},{"x":372,"y":725,"on":false},{"x":431,"y":714,"on":false},{"x":450,"y":706,"on":true},{"x":423,"y":619,"on":true},{"x":409,"y":625,"on":false},{"x":366,"y":634,"on":false},{"x":344,"y":634,"on":true},{"x":282,"y":634,"on":false},{"x":203,"y":563,"on":false},{"x":166,"y":436,"on":false},{"x":166,"y":353,"on":true},{"x":166,"y":218,"on":false},{"x":270,"y":81,"on":false},{"x":353,"y":81,"on":true},{"x":376,"y":81,"on":false},{"x":392,"y":87,"on":true},{"x":358,"y":131,"on":false},{"x":318,"y":263,"on":false},{"x":318,"y":332,"on":true},{"x":318,"y":448,"on":false},{"x":410,"y":569,"on":false},{"x":490,"y":569,"on":true},{"x":566,"y":569,"on":false},{"x":664,"y":456,"on":false}], + [{"x":564,"y":328,"on":true},{"x":564,"y":402,"on":false},{"x":528,"y":484,"on":false},{"x":492,"y":484,"on":true},{"x":454,"y":484,"on":false},{"x":418,"y":395,"on":false},{"x":418,"y":329,"on":true},{"x":418,"y":264,"on":false},{"x":454,"y":157,"on":false},{"x":482,"y":120,"on":true},{"x":521,"y":152,"on":false},{"x":564,"y":265,"on":false}] + ] + }, + "uni04A9": { + "advanceWidth": 601, + "contours": [ + [{"x":270,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":338,"y":541,"on":false},{"x":354,"y":534,"on":true},{"x":332,"y":453,"on":true},{"x":320,"y":458,"on":false},{"x":288,"y":464,"on":false},{"x":271,"y":464,"on":true},{"x":206,"y":464,"on":false},{"x":151,"y":359,"on":false},{"x":151,"y":264,"on":true},{"x":151,"y":182,"on":false},{"x":213,"y":75,"on":false},{"x":280,"y":75,"on":true},{"x":293,"y":75,"on":false},{"x":312,"y":79,"on":false},{"x":316,"y":81,"on":true},{"x":292,"y":111,"on":false},{"x":263,"y":192,"on":false},{"x":263,"y":247,"on":true},{"x":263,"y":334,"on":false},{"x":342,"y":423,"on":false},{"x":409,"y":423,"on":true},{"x":473,"y":423,"on":false},{"x":553,"y":336,"on":false},{"x":553,"y":247,"on":true},{"x":553,"y":185,"on":false},{"x":506,"y":91,"on":false},{"x":467,"y":60,"on":true},{"x":475,"y":56,"on":false},{"x":502,"y":49,"on":false},{"x":515,"y":49,"on":true},{"x":540,"y":49,"on":false},{"x":569,"y":57,"on":true},{"x":569,"y":-21,"on":true},{"x":557,"y":-26,"on":false},{"x":523,"y":-30,"on":false},{"x":504,"y":-30,"on":true},{"x":435,"y":-30,"on":false},{"x":379,"y":9,"on":true},{"x":358,"y":1,"on":false},{"x":308,"y":-10,"on":false},{"x":274,"y":-10,"on":true},{"x":200,"y":-10,"on":false},{"x":100,"y":62,"on":false},{"x":48,"y":187,"on":false},{"x":48,"y":266,"on":true},{"x":48,"y":350,"on":false},{"x":96,"y":477,"on":false},{"x":195,"y":549,"on":false}], + [{"x":409,"y":344,"on":true},{"x":382,"y":344,"on":false},{"x":353,"y":292,"on":false},{"x":353,"y":243,"on":true},{"x":353,"y":199,"on":false},{"x":381,"y":132,"on":false},{"x":402,"y":109,"on":true},{"x":429,"y":128,"on":false},{"x":462,"y":198,"on":false},{"x":462,"y":245,"on":true},{"x":462,"y":292,"on":false},{"x":437,"y":344,"on":false}] + ] + }, + "uni04AA": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2803","x":242,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04AB": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2803","x":168,"y":1,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04AC": { + "advanceWidth": 501, + "contours": [ + [{"x":293,"y":-196,"on":true},{"x":293,"y":0,"on":true},{"x":198,"y":0,"on":true},{"x":198,"y":622,"on":true},{"x":12,"y":622,"on":true},{"x":12,"y":714,"on":true},{"x":488,"y":714,"on":true},{"x":488,"y":622,"on":true},{"x":302,"y":622,"on":true},{"x":302,"y":93,"on":true},{"x":394,"y":93,"on":true},{"x":394,"y":-196,"on":true}] + ] + }, + "uni04AD": { + "advanceWidth": 438, + "contours": [ + [{"x":421,"y":539,"on":true},{"x":421,"y":456,"on":true},{"x":270,"y":456,"on":true},{"x":270,"y":83,"on":true},{"x":352,"y":83,"on":true},{"x":352,"y":-189,"on":true},{"x":255,"y":-189,"on":true},{"x":255,"y":0,"on":true},{"x":168,"y":0,"on":true},{"x":168,"y":456,"on":true},{"x":17,"y":456,"on":true},{"x":17,"y":539,"on":true}] + ] + }, + "uni04AE": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni04AF": { + "advanceWidth": 478, + "contours": [ + [{"x":289,"y":-240,"on":true},{"x":187,"y":-240,"on":true},{"x":187,"y":-1,"on":true},{"x":1,"y":539,"on":true},{"x":109,"y":539,"on":true},{"x":200,"y":249,"on":true},{"x":213,"y":212,"on":false},{"x":232,"y":136,"on":false},{"x":236,"y":114,"on":true},{"x":241,"y":114,"on":true},{"x":246,"y":138,"on":false},{"x":264,"y":211,"on":false},{"x":276,"y":246,"on":true},{"x":369,"y":539,"on":true},{"x":476,"y":539,"on":true},{"x":289,"y":-1,"on":true}] + ] + }, + "uni04B0": { + "advanceWidth": 522, + "contours": [ + [{"x":209,"y":0,"on":true},{"x":209,"y":162,"on":true},{"x":76,"y":162,"on":true},{"x":76,"y":252,"on":true},{"x":209,"y":252,"on":true},{"x":209,"y":274,"on":true},{"x":0,"y":714,"on":true},{"x":113,"y":714,"on":true},{"x":261,"y":385,"on":true},{"x":409,"y":714,"on":true},{"x":522,"y":714,"on":true},{"x":313,"y":277,"on":true},{"x":313,"y":252,"on":true},{"x":445,"y":252,"on":true},{"x":445,"y":162,"on":true},{"x":313,"y":162,"on":true},{"x":313,"y":0,"on":true}] + ] + }, + "uni04B1": { + "advanceWidth": 478, + "contours": [ + [{"x":476,"y":539,"on":true},{"x":290,"y":0,"on":true},{"x":411,"y":0,"on":true},{"x":411,"y":-79,"on":true},{"x":289,"y":-79,"on":true},{"x":289,"y":-240,"on":true},{"x":187,"y":-240,"on":true},{"x":187,"y":-79,"on":true},{"x":65,"y":-79,"on":true},{"x":65,"y":0,"on":true},{"x":187,"y":0,"on":true},{"x":1,"y":539,"on":true},{"x":109,"y":539,"on":true},{"x":200,"y":251,"on":true},{"x":213,"y":210,"on":false},{"x":232,"y":140,"on":false},{"x":236,"y":114,"on":true},{"x":241,"y":114,"on":true},{"x":246,"y":141,"on":false},{"x":265,"y":211,"on":false},{"x":278,"y":249,"on":true},{"x":369,"y":539,"on":true}] + ] + }, + "uni04B2": { + "advanceWidth": 591, + "contours": [ + [{"x":476,"y":-196,"on":true},{"x":476,"y":0,"on":true},{"x":423,"y":0,"on":true},{"x":272,"y":290,"on":true},{"x":115,"y":0,"on":true},{"x":4,"y":0,"on":true},{"x":212,"y":371,"on":true},{"x":19,"y":714,"on":true},{"x":134,"y":714,"on":true},{"x":275,"y":448,"on":true},{"x":414,"y":714,"on":true},{"x":526,"y":714,"on":true},{"x":335,"y":368,"on":true},{"x":486,"y":93,"on":true},{"x":577,"y":93,"on":true},{"x":577,"y":-196,"on":true}] + ] + }, + "uni04B3": { + "advanceWidth": 520, + "contours": [ + [{"x":409,"y":-189,"on":true},{"x":409,"y":0,"on":true},{"x":363,"y":0,"on":true},{"x":246,"y":204,"on":true},{"x":127,"y":0,"on":true},{"x":13,"y":0,"on":true},{"x":183,"y":276,"on":true},{"x":22,"y":539,"on":true},{"x":137,"y":539,"on":true},{"x":246,"y":348,"on":true},{"x":356,"y":539,"on":true},{"x":469,"y":539,"on":true},{"x":308,"y":275,"on":true},{"x":426,"y":84,"on":true},{"x":507,"y":84,"on":true},{"x":507,"y":-189,"on":true}] + ] + }, + "uni04B4": { + "advanceWidth": 796, + "contours": [ + [{"x":673,"y":-196,"on":true},{"x":673,"y":0,"on":true},{"x":186,"y":0,"on":true},{"x":186,"y":622,"on":true},{"x":12,"y":622,"on":true},{"x":12,"y":714,"on":true},{"x":478,"y":714,"on":true},{"x":478,"y":622,"on":true},{"x":291,"y":622,"on":true},{"x":291,"y":92,"on":true},{"x":576,"y":92,"on":true},{"x":576,"y":714,"on":true},{"x":681,"y":714,"on":true},{"x":681,"y":93,"on":true},{"x":774,"y":93,"on":true},{"x":774,"y":-196,"on":true}] + ] + }, + "uni04B5": { + "advanceWidth": 676, + "contours": [ + [{"x":561,"y":-189,"on":true},{"x":561,"y":0,"on":true},{"x":148,"y":0,"on":true},{"x":148,"y":456,"on":true},{"x":17,"y":456,"on":true},{"x":17,"y":539,"on":true},{"x":389,"y":539,"on":true},{"x":389,"y":456,"on":true},{"x":249,"y":456,"on":true},{"x":249,"y":84,"on":true},{"x":473,"y":84,"on":true},{"x":473,"y":539,"on":true},{"x":576,"y":539,"on":true},{"x":576,"y":83,"on":true},{"x":659,"y":83,"on":true},{"x":659,"y":-189,"on":true}] + ] + }, + "uni04B6": { + "advanceWidth": 664, + "contours": [ + [{"x":554,"y":714,"on":true},{"x":554,"y":93,"on":true},{"x":645,"y":93,"on":true},{"x":645,"y":-196,"on":true},{"x":544,"y":-196,"on":true},{"x":544,"y":0,"on":true},{"x":449,"y":0,"on":true},{"x":449,"y":287,"on":true},{"x":396,"y":266,"on":false},{"x":303,"y":243,"on":false},{"x":252,"y":243,"on":true},{"x":164,"y":243,"on":false},{"x":67,"y":338,"on":false},{"x":67,"y":427,"on":true},{"x":67,"y":714,"on":true},{"x":171,"y":714,"on":true},{"x":171,"y":448,"on":true},{"x":171,"y":391,"on":false},{"x":221,"y":335,"on":false},{"x":276,"y":335,"on":true},{"x":322,"y":335,"on":false},{"x":400,"y":354,"on":false},{"x":449,"y":373,"on":true},{"x":449,"y":714,"on":true}] + ] + }, + "uni04B7": { + "advanceWidth": 590, + "contours": [ + [{"x":492,"y":539,"on":true},{"x":492,"y":84,"on":true},{"x":574,"y":84,"on":true},{"x":574,"y":-189,"on":true},{"x":476,"y":-189,"on":true},{"x":476,"y":0,"on":true},{"x":390,"y":0,"on":true},{"x":390,"y":230,"on":true},{"x":352,"y":204,"on":false},{"x":271,"y":174,"on":false},{"x":221,"y":174,"on":true},{"x":144,"y":174,"on":false},{"x":62,"y":257,"on":false},{"x":62,"y":336,"on":true},{"x":62,"y":539,"on":true},{"x":165,"y":539,"on":true},{"x":165,"y":338,"on":true},{"x":165,"y":256,"on":false},{"x":243,"y":256,"on":true},{"x":284,"y":256,"on":false},{"x":355,"y":284,"on":false},{"x":390,"y":306,"on":true},{"x":390,"y":539,"on":true}] + ] + }, + "uni04B8": { + "advanceWidth": 645, + "contours": [ + [{"x":559,"y":714,"on":true},{"x":559,"y":0,"on":true},{"x":454,"y":0,"on":true},{"x":454,"y":285,"on":true},{"x":426,"y":274,"on":false},{"x":369,"y":255,"on":false},{"x":340,"y":250,"on":true},{"x":340,"y":97,"on":true},{"x":280,"y":97,"on":true},{"x":280,"y":243,"on":true},{"x":175,"y":243,"on":false},{"x":67,"y":330,"on":false},{"x":67,"y":427,"on":true},{"x":67,"y":714,"on":true},{"x":171,"y":714,"on":true},{"x":171,"y":448,"on":true},{"x":171,"y":392,"on":false},{"x":222,"y":336,"on":false},{"x":280,"y":335,"on":true},{"x":280,"y":505,"on":true},{"x":340,"y":505,"on":true},{"x":340,"y":338,"on":true},{"x":368,"y":342,"on":false},{"x":426,"y":360,"on":false},{"x":454,"y":371,"on":true},{"x":454,"y":714,"on":true}] + ] + }, + "uni04B9": { + "advanceWidth": 569, + "contours": [ + [{"x":494,"y":539,"on":true},{"x":494,"y":0,"on":true},{"x":392,"y":0,"on":true},{"x":392,"y":230,"on":true},{"x":371,"y":215,"on":false},{"x":326,"y":192,"on":false},{"x":301,"y":185,"on":true},{"x":301,"y":63,"on":true},{"x":244,"y":63,"on":true},{"x":244,"y":175,"on":true},{"x":240,"y":174,"on":false},{"x":228,"y":173,"on":false},{"x":223,"y":173,"on":true},{"x":145,"y":173,"on":false},{"x":62,"y":257,"on":false},{"x":62,"y":335,"on":true},{"x":62,"y":539,"on":true},{"x":165,"y":539,"on":true},{"x":165,"y":337,"on":true},{"x":165,"y":295,"on":false},{"x":205,"y":257,"on":false},{"x":244,"y":256,"on":true},{"x":244,"y":396,"on":true},{"x":301,"y":396,"on":true},{"x":301,"y":263,"on":true},{"x":324,"y":269,"on":false},{"x":369,"y":291,"on":false},{"x":392,"y":306,"on":true},{"x":392,"y":539,"on":true}] + ] + }, + "uni04BA": { + "advanceWidth": 639, + "contours": [ + [{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":427,"on":true},{"x":243,"y":448,"on":false},{"x":340,"y":471,"on":false},{"x":387,"y":471,"on":true},{"x":476,"y":471,"on":false},{"x":573,"y":378,"on":false},{"x":573,"y":287,"on":true},{"x":573,"y":0,"on":true},{"x":468,"y":0,"on":true},{"x":468,"y":266,"on":true},{"x":468,"y":324,"on":false},{"x":418,"y":379,"on":false},{"x":363,"y":379,"on":true},{"x":316,"y":379,"on":false},{"x":239,"y":360,"on":false},{"x":191,"y":341,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true}] + ] + }, + "uni04BB": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni04BC": { + "advanceWidth": 793, + "contours": [ + [{"x":459,"y":725,"on":true},{"x":555,"y":725,"on":false},{"x":676,"y":637,"on":false},{"x":734,"y":476,"on":false},{"x":734,"y":364,"on":true},{"x":734,"y":320,"on":true},{"x":278,"y":320,"on":true},{"x":284,"y":206,"on":false},{"x":383,"y":82,"on":false},{"x":483,"y":82,"on":true},{"x":543,"y":82,"on":false},{"x":649,"y":111,"on":false},{"x":693,"y":131,"on":true},{"x":693,"y":34,"on":true},{"x":651,"y":14,"on":false},{"x":546,"y":-10,"on":false},{"x":474,"y":-10,"on":true},{"x":331,"y":-10,"on":false},{"x":177,"y":165,"on":false},{"x":168,"y":320,"on":true},{"x":141,"y":320,"on":true},{"x":81,"y":320,"on":false},{"x":13,"y":381,"on":false},{"x":13,"y":435,"on":true},{"x":13,"y":456,"on":false},{"x":22,"y":496,"on":false},{"x":30,"y":511,"on":true},{"x":114,"y":511,"on":true},{"x":110,"y":502,"on":false},{"x":104,"y":472,"on":false},{"x":104,"y":455,"on":true},{"x":104,"y":409,"on":false},{"x":155,"y":409,"on":true},{"x":169,"y":409,"on":true},{"x":184,"y":556,"on":false},{"x":331,"y":725,"on":false}], + [{"x":458,"y":634,"on":true},{"x":377,"y":634,"on":false},{"x":284,"y":512,"on":false},{"x":278,"y":409,"on":true},{"x":625,"y":409,"on":true},{"x":624,"y":516,"on":false},{"x":545,"y":634,"on":false}] + ] + }, + "uni04BD": { + "advanceWidth": 624, + "contours": [ + [{"x":371,"y":549,"on":true},{"x":438,"y":549,"on":false},{"x":530,"y":488,"on":false},{"x":579,"y":379,"on":false},{"x":579,"y":307,"on":true},{"x":579,"y":247,"on":true},{"x":253,"y":247,"on":true},{"x":257,"y":73,"on":false},{"x":396,"y":73,"on":true},{"x":443,"y":73,"on":false},{"x":515,"y":92,"on":false},{"x":555,"y":111,"on":true},{"x":555,"y":26,"on":true},{"x":518,"y":7,"on":false},{"x":441,"y":-10,"on":false},{"x":391,"y":-10,"on":true},{"x":280,"y":-10,"on":false},{"x":155,"y":126,"on":false},{"x":150,"y":247,"on":true},{"x":80,"y":248,"on":false},{"x":11,"y":298,"on":false},{"x":11,"y":354,"on":true},{"x":11,"y":393,"on":false},{"x":27,"y":422,"on":true},{"x":105,"y":422,"on":true},{"x":94,"y":398,"on":false},{"x":94,"y":368,"on":true},{"x":94,"y":323,"on":false},{"x":143,"y":323,"on":true},{"x":153,"y":323,"on":true},{"x":165,"y":437,"on":false},{"x":283,"y":549,"on":false}], + [{"x":370,"y":468,"on":true},{"x":320,"y":468,"on":false},{"x":260,"y":396,"on":false},{"x":255,"y":323,"on":true},{"x":479,"y":323,"on":true},{"x":479,"y":387,"on":false},{"x":426,"y":468,"on":false}] + ] + }, + "uni04BE": { + "advanceWidth": 793, + "contours": [ + [{"x":459,"y":725,"on":true},{"x":555,"y":725,"on":false},{"x":676,"y":638,"on":false},{"x":734,"y":476,"on":false},{"x":734,"y":366,"on":true},{"x":734,"y":320,"on":true},{"x":278,"y":320,"on":true},{"x":284,"y":206,"on":false},{"x":383,"y":82,"on":false},{"x":483,"y":82,"on":true},{"x":543,"y":82,"on":false},{"x":649,"y":111,"on":false},{"x":693,"y":131,"on":true},{"x":693,"y":34,"on":true},{"x":658,"y":18,"on":false},{"x":572,"y":-4,"on":false},{"x":516,"y":-7,"on":true},{"x":516,"y":-196,"on":true},{"x":415,"y":-196,"on":true},{"x":415,"y":-4,"on":true},{"x":300,"y":11,"on":false},{"x":176,"y":181,"on":false},{"x":168,"y":320,"on":true},{"x":141,"y":320,"on":true},{"x":81,"y":320,"on":false},{"x":13,"y":381,"on":false},{"x":13,"y":435,"on":true},{"x":13,"y":456,"on":false},{"x":22,"y":496,"on":false},{"x":30,"y":511,"on":true},{"x":114,"y":511,"on":true},{"x":110,"y":502,"on":false},{"x":104,"y":472,"on":false},{"x":104,"y":455,"on":true},{"x":104,"y":409,"on":false},{"x":154,"y":409,"on":true},{"x":169,"y":409,"on":true},{"x":182,"y":556,"on":false},{"x":331,"y":725,"on":false}], + [{"x":458,"y":634,"on":true},{"x":377,"y":634,"on":false},{"x":284,"y":512,"on":false},{"x":278,"y":409,"on":true},{"x":625,"y":409,"on":true},{"x":624,"y":516,"on":false},{"x":547,"y":634,"on":false}] + ] + }, + "uni04BF": { + "advanceWidth": 624, + "contours": [ + [{"x":328,"y":-3,"on":true},{"x":248,"y":13,"on":false},{"x":154,"y":139,"on":false},{"x":150,"y":247,"on":true},{"x":80,"y":248,"on":false},{"x":11,"y":298,"on":false},{"x":11,"y":354,"on":true},{"x":11,"y":393,"on":false},{"x":27,"y":422,"on":true},{"x":105,"y":422,"on":true},{"x":94,"y":398,"on":false},{"x":94,"y":368,"on":true},{"x":94,"y":323,"on":false},{"x":143,"y":323,"on":true},{"x":153,"y":323,"on":true},{"x":166,"y":436,"on":false},{"x":283,"y":549,"on":false},{"x":371,"y":549,"on":true},{"x":438,"y":549,"on":false},{"x":530,"y":488,"on":false},{"x":579,"y":379,"on":false},{"x":579,"y":307,"on":true},{"x":579,"y":247,"on":true},{"x":253,"y":247,"on":true},{"x":257,"y":73,"on":false},{"x":396,"y":73,"on":true},{"x":443,"y":73,"on":false},{"x":515,"y":92,"on":false},{"x":555,"y":111,"on":true},{"x":555,"y":26,"on":true},{"x":499,"y":-4,"on":false},{"x":426,"y":-8,"on":true},{"x":426,"y":-189,"on":true},{"x":328,"y":-189,"on":true}], + [{"x":370,"y":468,"on":true},{"x":320,"y":468,"on":false},{"x":260,"y":396,"on":false},{"x":255,"y":323,"on":true},{"x":479,"y":323,"on":true},{"x":479,"y":387,"on":false},{"x":426,"y":468,"on":false}] + ] + }, + "uni04C0": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni04C1": { + "advanceWidth": 798, + "references": [ + {"glyph":"uni0416","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":124,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04C2": { + "advanceWidth": 720, + "references": [ + {"glyph":"uni0436","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":85,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04C3": { + "advanceWidth": 642, + "contours": [ + [{"x":564,"y":714,"on":true},{"x":304,"y":382,"on":true},{"x":322,"y":382,"on":true},{"x":404,"y":380,"on":false},{"x":527,"y":308,"on":false},{"x":595,"y":172,"on":false},{"x":595,"y":73,"on":true},{"x":595,"y":-30,"on":false},{"x":532,"y":-173,"on":false},{"x":422,"y":-248,"on":false},{"x":349,"y":-248,"on":true},{"x":309,"y":-248,"on":false},{"x":249,"y":-237,"on":false},{"x":223,"y":-226,"on":true},{"x":223,"y":-132,"on":true},{"x":250,"y":-143,"on":false},{"x":304,"y":-155,"on":false},{"x":336,"y":-155,"on":true},{"x":409,"y":-155,"on":false},{"x":489,"y":-31,"on":false},{"x":489,"y":74,"on":true},{"x":489,"y":150,"on":false},{"x":435,"y":249,"on":false},{"x":340,"y":298,"on":false},{"x":280,"y":298,"on":true},{"x":230,"y":298,"on":false},{"x":191,"y":286,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":370,"on":true},{"x":208,"y":395,"on":false},{"x":247,"y":449,"on":false},{"x":266,"y":474,"on":true},{"x":445,"y":714,"on":true}] + ] + }, + "uni04C4": { + "advanceWidth": 541, + "contours": [ + [{"x":506,"y":33,"on":true},{"x":506,"y":-60,"on":false},{"x":452,"y":-183,"on":false},{"x":360,"y":-244,"on":false},{"x":301,"y":-244,"on":true},{"x":267,"y":-244,"on":false},{"x":217,"y":-231,"on":false},{"x":195,"y":-218,"on":true},{"x":195,"y":-129,"on":true},{"x":215,"y":-141,"on":false},{"x":261,"y":-157,"on":false},{"x":288,"y":-157,"on":true},{"x":340,"y":-157,"on":false},{"x":405,"y":-65,"on":false},{"x":405,"y":30,"on":true},{"x":405,"y":221,"on":false},{"x":254,"y":221,"on":true},{"x":234,"y":221,"on":false},{"x":193,"y":214,"on":false},{"x":177,"y":209,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":177,"y":539,"on":true},{"x":177,"y":290,"on":true},{"x":373,"y":539,"on":true},{"x":488,"y":539,"on":true},{"x":291,"y":302,"on":true},{"x":388,"y":298,"on":false},{"x":506,"y":166,"on":false}] + ] + }, + "uni04C5": { + "advanceWidth": 678, + "contours": [ + [{"x":560,"y":94,"on":true},{"x":662,"y":94,"on":true},{"x":591,"y":-196,"on":true},{"x":474,"y":-196,"on":true},{"x":549,"y":0,"on":true},{"x":455,"y":0,"on":true},{"x":455,"y":621,"on":true},{"x":279,"y":621,"on":true},{"x":269,"y":522,"on":false},{"x":249,"y":347,"on":false},{"x":229,"y":210,"on":false},{"x":220,"y":168,"on":true},{"x":202,"y":81,"on":false},{"x":136,"y":-9,"on":false},{"x":64,"y":-10,"on":true},{"x":27,"y":-10,"on":false},{"x":2,"y":1,"on":true},{"x":2,"y":90,"on":true},{"x":22,"y":79,"on":false},{"x":49,"y":79,"on":true},{"x":84,"y":79,"on":false},{"x":114,"y":154,"on":false},{"x":125,"y":210,"on":true},{"x":132,"y":246,"on":false},{"x":152,"y":389,"on":false},{"x":177,"y":591,"on":false},{"x":190,"y":714,"on":true},{"x":560,"y":714,"on":true}] + ] + }, + "uni04C6": { + "advanceWidth": 571, + "contours": [ + [{"x":468,"y":84,"on":true},{"x":562,"y":84,"on":true},{"x":499,"y":-189,"on":true},{"x":398,"y":-189,"on":true},{"x":458,"y":0,"on":true},{"x":366,"y":0,"on":true},{"x":366,"y":454,"on":true},{"x":234,"y":454,"on":true},{"x":223,"y":290,"on":false},{"x":184,"y":87,"on":false},{"x":114,"y":-7,"on":false},{"x":57,"y":-7,"on":true},{"x":25,"y":-7,"on":false},{"x":4,"y":2,"on":true},{"x":4,"y":84,"on":true},{"x":10,"y":82,"on":false},{"x":26,"y":78,"on":false},{"x":34,"y":78,"on":true},{"x":79,"y":78,"on":false},{"x":130,"y":302,"on":false},{"x":144,"y":539,"on":true},{"x":468,"y":539,"on":true}] + ] + }, + "uni04C7": { + "advanceWidth": 670, + "contours": [ + [{"x":588,"y":714,"on":true},{"x":588,"y":51,"on":true},{"x":588,"y":-92,"on":false},{"x":462,"y":-246,"on":false},{"x":352,"y":-246,"on":true},{"x":313,"y":-246,"on":false},{"x":256,"y":-235,"on":false},{"x":228,"y":-224,"on":true},{"x":228,"y":-131,"on":true},{"x":254,"y":-142,"on":false},{"x":307,"y":-154,"on":false},{"x":340,"y":-154,"on":true},{"x":410,"y":-154,"on":false},{"x":484,"y":-50,"on":false},{"x":484,"y":53,"on":true},{"x":484,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":484,"y":418,"on":true},{"x":484,"y":714,"on":true}] + ] + }, + "uni04C8": { + "advanceWidth": 575, + "contours": [ + [{"x":506,"y":539,"on":true},{"x":506,"y":12,"on":true},{"x":506,"y":-121,"on":false},{"x":401,"y":-244,"on":false},{"x":317,"y":-244,"on":true},{"x":253,"y":-244,"on":false},{"x":210,"y":-219,"on":true},{"x":210,"y":-128,"on":true},{"x":231,"y":-140,"on":false},{"x":278,"y":-155,"on":false},{"x":304,"y":-155,"on":true},{"x":353,"y":-155,"on":false},{"x":403,"y":-75,"on":false},{"x":404,"y":15,"on":true},{"x":404,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":320,"on":true},{"x":404,"y":320,"on":true},{"x":404,"y":539,"on":true}] + ] + }, + "uni04C9": { + "advanceWidth": 708, + "contours": [ + [{"x":588,"y":94,"on":true},{"x":691,"y":94,"on":true},{"x":619,"y":-196,"on":true},{"x":502,"y":-196,"on":true},{"x":577,"y":0,"on":true},{"x":484,"y":0,"on":true},{"x":484,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":484,"y":418,"on":true},{"x":484,"y":714,"on":true},{"x":588,"y":714,"on":true}] + ] + }, + "uni04CA": { + "advanceWidth": 616, + "contours": [ + [{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":320,"on":true},{"x":404,"y":320,"on":true},{"x":404,"y":539,"on":true},{"x":506,"y":539,"on":true},{"x":506,"y":84,"on":true},{"x":601,"y":84,"on":true},{"x":538,"y":-189,"on":true},{"x":436,"y":-189,"on":true},{"x":497,"y":0,"on":true},{"x":404,"y":0,"on":true},{"x":404,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true}] + ] + }, + "uni04CB": { + "advanceWidth": 639, + "contours": [ + [{"x":554,"y":0,"on":true},{"x":464,"y":0,"on":true},{"x":464,"y":-196,"on":true},{"x":363,"y":-196,"on":true},{"x":363,"y":93,"on":true},{"x":449,"y":93,"on":true},{"x":449,"y":287,"on":true},{"x":396,"y":266,"on":false},{"x":303,"y":243,"on":false},{"x":252,"y":243,"on":true},{"x":164,"y":243,"on":false},{"x":67,"y":338,"on":false},{"x":67,"y":427,"on":true},{"x":67,"y":714,"on":true},{"x":171,"y":714,"on":true},{"x":171,"y":448,"on":true},{"x":171,"y":391,"on":false},{"x":221,"y":335,"on":false},{"x":276,"y":335,"on":true},{"x":322,"y":335,"on":false},{"x":400,"y":354,"on":false},{"x":449,"y":373,"on":true},{"x":449,"y":714,"on":true},{"x":554,"y":714,"on":true}] + ] + }, + "uni04CC": { + "advanceWidth": 567, + "contours": [ + [{"x":492,"y":539,"on":true},{"x":492,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":410,"y":-189,"on":true},{"x":312,"y":-189,"on":true},{"x":312,"y":84,"on":true},{"x":390,"y":84,"on":true},{"x":390,"y":232,"on":true},{"x":352,"y":206,"on":false},{"x":271,"y":176,"on":false},{"x":221,"y":176,"on":true},{"x":144,"y":176,"on":false},{"x":62,"y":260,"on":false},{"x":62,"y":338,"on":true},{"x":62,"y":539,"on":true},{"x":165,"y":539,"on":true},{"x":165,"y":340,"on":true},{"x":165,"y":258,"on":false},{"x":243,"y":258,"on":true},{"x":284,"y":258,"on":false},{"x":355,"y":286,"on":false},{"x":390,"y":308,"on":true},{"x":390,"y":539,"on":true}] + ] + }, + "uni04CD": { + "advanceWidth": 882, + "contours": [ + [{"x":376,"y":0,"on":true},{"x":180,"y":596,"on":true},{"x":176,"y":596,"on":true},{"x":178,"y":567,"on":false},{"x":181,"y":499,"on":false},{"x":183,"y":438,"on":false},{"x":183,"y":418,"on":true},{"x":183,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":235,"y":714,"on":true},{"x":422,"y":147,"on":true},{"x":426,"y":147,"on":true},{"x":616,"y":714,"on":true},{"x":765,"y":714,"on":true},{"x":765,"y":94,"on":true},{"x":867,"y":94,"on":true},{"x":795,"y":-196,"on":true},{"x":678,"y":-196,"on":true},{"x":754,"y":0,"on":true},{"x":663,"y":0,"on":true},{"x":663,"y":421,"on":true},{"x":663,"y":442,"on":false},{"x":665,"y":505,"on":false},{"x":668,"y":570,"on":false},{"x":670,"y":595,"on":true},{"x":666,"y":595,"on":true},{"x":466,"y":0,"on":true}] + ] + }, + "uni04CE": { + "advanceWidth": 736, + "contours": [ + [{"x":727,"y":84,"on":true},{"x":664,"y":-189,"on":true},{"x":562,"y":-189,"on":true},{"x":623,"y":0,"on":true},{"x":538,"y":0,"on":true},{"x":538,"y":305,"on":true},{"x":538,"y":334,"on":false},{"x":540,"y":393,"on":false},{"x":543,"y":424,"on":true},{"x":540,"y":424,"on":true},{"x":394,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":168,"y":424,"on":true},{"x":165,"y":424,"on":true},{"x":167,"y":396,"on":false},{"x":169,"y":336,"on":false},{"x":169,"y":304,"on":true},{"x":169,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":217,"y":539,"on":true},{"x":353,"y":133,"on":true},{"x":493,"y":539,"on":true},{"x":632,"y":539,"on":true},{"x":632,"y":84,"on":true}] + ] + }, + "uni04CF": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni04D0": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":18,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04D1": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":-16,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04D2": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":12,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04D3": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-18,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04D4": { + "advanceWidth": 805, + "references": [ + {"glyph":"AE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni04D5": { + "advanceWidth": 800, + "references": [ + {"glyph":"ae","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni04D6": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":-3,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04D7": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2791","x":-11,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04D8": { + "advanceWidth": 684, + "contours": [ + [{"x":312,"y":633,"on":true},{"x":250,"y":633,"on":false},{"x":144,"y":604,"on":false},{"x":99,"y":584,"on":true},{"x":99,"y":679,"on":true},{"x":143,"y":698,"on":false},{"x":246,"y":725,"on":false},{"x":317,"y":725,"on":true},{"x":470,"y":725,"on":false},{"x":628,"y":528,"on":false},{"x":628,"y":356,"on":true},{"x":628,"y":247,"on":false},{"x":561,"y":82,"on":false},{"x":430,"y":-10,"on":false},{"x":335,"y":-10,"on":true},{"x":190,"y":-10,"on":false},{"x":59,"y":186,"on":false},{"x":59,"y":358,"on":true},{"x":59,"y":395,"on":true},{"x":518,"y":395,"on":true},{"x":511,"y":508,"on":false},{"x":412,"y":633,"on":false}], + [{"x":335,"y":81,"on":true},{"x":414,"y":81,"on":false},{"x":511,"y":196,"on":false},{"x":517,"y":306,"on":true},{"x":168,"y":306,"on":true},{"x":169,"y":199,"on":false},{"x":246,"y":81,"on":false}] + ] + }, + "uni04D9": { + "advanceWidth": 520, + "references": [ + {"glyph":"uni0259","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni04DA": { + "advanceWidth": 684, + "references": [ + {"glyph":"uni04D8","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":47,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04DB": { + "advanceWidth": 520, + "references": [ + {"glyph":"uni0259","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-26,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04DC": { + "advanceWidth": 798, + "references": [ + {"glyph":"uni0416","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":121,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04DD": { + "advanceWidth": 720, + "references": [ + {"glyph":"uni0436","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":79,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04DE": { + "advanceWidth": 548, + "references": [ + {"glyph":"uni0417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-18,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04DF": { + "advanceWidth": 457, + "references": [ + {"glyph":"uni0437","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-62,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04E0": { + "advanceWidth": 534, + "contours": [ + [{"x":456,"y":714,"on":true},{"x":456,"y":637,"on":true},{"x":251,"y":411,"on":true},{"x":364,"y":406,"on":false},{"x":485,"y":300,"on":false},{"x":485,"y":206,"on":true},{"x":485,"y":108,"on":false},{"x":355,"y":-10,"on":false},{"x":219,"y":-10,"on":true},{"x":166,"y":-10,"on":false},{"x":70,"y":9,"on":false},{"x":31,"y":29,"on":true},{"x":31,"y":125,"on":true},{"x":71,"y":102,"on":false},{"x":170,"y":78,"on":false},{"x":214,"y":78,"on":true},{"x":300,"y":78,"on":false},{"x":377,"y":146,"on":false},{"x":377,"y":209,"on":true},{"x":377,"y":331,"on":false},{"x":194,"y":331,"on":true},{"x":133,"y":331,"on":true},{"x":133,"y":410,"on":true},{"x":323,"y":623,"on":true},{"x":51,"y":623,"on":true},{"x":51,"y":714,"on":true}] + ] + }, + "uni04E1": { + "advanceWidth": 474, + "contours": [ + [{"x":417,"y":539,"on":true},{"x":417,"y":468,"on":true},{"x":223,"y":232,"on":true},{"x":321,"y":223,"on":false},{"x":440,"y":109,"on":false},{"x":440,"y":5,"on":true},{"x":440,"y":-67,"on":false},{"x":380,"y":-178,"on":false},{"x":266,"y":-240,"on":false},{"x":185,"y":-240,"on":true},{"x":130,"y":-240,"on":false},{"x":46,"y":-220,"on":false},{"x":17,"y":-206,"on":true},{"x":17,"y":-113,"on":true},{"x":48,"y":-129,"on":false},{"x":134,"y":-153,"on":false},{"x":183,"y":-153,"on":true},{"x":257,"y":-153,"on":false},{"x":336,"y":-68,"on":false},{"x":336,"y":4,"on":true},{"x":336,"y":153,"on":false},{"x":159,"y":153,"on":true},{"x":109,"y":153,"on":true},{"x":109,"y":225,"on":true},{"x":296,"y":455,"on":true},{"x":34,"y":455,"on":true},{"x":34,"y":539,"on":true}] + ] + }, + "uni04E2": { + "advanceWidth": 713, + "references": [ + {"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":180,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04E3": { + "advanceWidth": 602, + "references": [ + {"glyph":"uni0438","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":121,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04E4": { + "advanceWidth": 713, + "references": [ + {"glyph":"uni0418","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":84,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04E5": { + "advanceWidth": 602, + "references": [ + {"glyph":"uni0438","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":25,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04E6": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":71,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04E7": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-3,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04E8": { + "advanceWidth": 707, + "references": [ + {"glyph":"uni0472","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni04E9": { + "advanceWidth": 558, + "references": [ + {"glyph":"uni0473","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni04EA": { + "advanceWidth": 707, + "references": [ + {"glyph":"uni0472","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":74,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04EB": { + "advanceWidth": 558, + "references": [ + {"glyph":"uni0473","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-1,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04EC": { + "advanceWidth": 578, + "references": [ + {"glyph":"uni042D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-34,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04ED": { + "advanceWidth": 456, + "references": [ + {"glyph":"uni044D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-80,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04EE": { + "advanceWidth": 557, + "references": [ + {"glyph":"uni0423","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":104,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04EF": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":55,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04F0": { + "advanceWidth": 557, + "references": [ + {"glyph":"uni0423","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":6,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04F1": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-40,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04F2": { + "advanceWidth": 557, + "references": [ + {"glyph":"uni0423","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"hungarumlaut","x":133,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04F3": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"hungarumlaut","x":83,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04F4": { + "advanceWidth": 639, + "references": [ + {"glyph":"uni0427","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":29,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04F5": { + "advanceWidth": 567, + "references": [ + {"glyph":"uni0447","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-3,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04F6": { + "advanceWidth": 481, + "contours": [ + [{"x":463,"y":714,"on":true},{"x":463,"y":623,"on":true},{"x":191,"y":623,"on":true},{"x":191,"y":93,"on":true},{"x":282,"y":93,"on":true},{"x":282,"y":-196,"on":true},{"x":181,"y":-196,"on":true},{"x":181,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true}] + ] + }, + "uni04F7": { + "advanceWidth": 404, + "contours": [ + [{"x":386,"y":539,"on":true},{"x":386,"y":456,"on":true},{"x":178,"y":456,"on":true},{"x":178,"y":83,"on":true},{"x":260,"y":83,"on":true},{"x":260,"y":-189,"on":true},{"x":162,"y":-189,"on":true},{"x":162,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni04F8": { + "advanceWidth": 806, + "references": [ + {"glyph":"uni042B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":125,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04F9": { + "advanceWidth": 733, + "references": [ + {"glyph":"uni044B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":86,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04FA": { + "advanceWidth": 481, + "references": [ + {"glyph":"uni0492","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2804","x":81,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni04FB": { + "advanceWidth": 407, + "contours": [ + [{"x":143,"y":-205,"on":true},{"x":123,"y":-205,"on":false},{"x":88,"y":-198,"on":false},{"x":77,"y":-194,"on":true},{"x":77,"y":-112,"on":true},{"x":87,"y":-116,"on":false},{"x":110,"y":-121,"on":false},{"x":124,"y":-121,"on":true},{"x":173,"y":-121,"on":false},{"x":173,"y":-64,"on":true},{"x":173,"y":0,"on":true},{"x":73,"y":0,"on":true},{"x":73,"y":225,"on":true},{"x":5,"y":225,"on":true},{"x":5,"y":307,"on":true},{"x":73,"y":307,"on":true},{"x":73,"y":539,"on":true},{"x":390,"y":539,"on":true},{"x":390,"y":453,"on":true},{"x":175,"y":453,"on":true},{"x":175,"y":307,"on":true},{"x":314,"y":307,"on":true},{"x":314,"y":225,"on":true},{"x":175,"y":225,"on":true},{"x":175,"y":81,"on":true},{"x":265,"y":81,"on":true},{"x":265,"y":-61,"on":true},{"x":265,"y":-205,"on":false}] + ] + }, + "uni04FC": { + "advanceWidth": 586, + "contours": [ + [{"x":440,"y":-207,"on":true},{"x":419,"y":-207,"on":false},{"x":383,"y":-200,"on":false},{"x":371,"y":-196,"on":true},{"x":371,"y":-112,"on":true},{"x":382,"y":-116,"on":false},{"x":406,"y":-121,"on":false},{"x":420,"y":-121,"on":true},{"x":445,"y":-121,"on":false},{"x":471,"y":-92,"on":false},{"x":471,"y":-58,"on":true},{"x":471,"y":0,"on":true},{"x":420,"y":0,"on":true},{"x":270,"y":290,"on":true},{"x":114,"y":0,"on":true},{"x":4,"y":0,"on":true},{"x":211,"y":371,"on":true},{"x":19,"y":714,"on":true},{"x":133,"y":714,"on":true},{"x":273,"y":448,"on":true},{"x":412,"y":714,"on":true},{"x":523,"y":714,"on":true},{"x":333,"y":368,"on":true},{"x":485,"y":92,"on":true},{"x":569,"y":92,"on":true},{"x":569,"y":-60,"on":true},{"x":569,"y":-130,"on":false},{"x":504,"y":-207,"on":false}] + ] + }, + "uni04FD": { + "advanceWidth": 519, + "contours": [ + [{"x":381,"y":-205,"on":true},{"x":360,"y":-205,"on":false},{"x":326,"y":-198,"on":false},{"x":314,"y":-194,"on":true},{"x":314,"y":-113,"on":true},{"x":324,"y":-117,"on":false},{"x":348,"y":-122,"on":false},{"x":361,"y":-122,"on":true},{"x":411,"y":-122,"on":false},{"x":411,"y":-63,"on":true},{"x":411,"y":0,"on":true},{"x":361,"y":0,"on":true},{"x":244,"y":203,"on":true},{"x":126,"y":0,"on":true},{"x":13,"y":0,"on":true},{"x":181,"y":276,"on":true},{"x":22,"y":539,"on":true},{"x":136,"y":539,"on":true},{"x":244,"y":349,"on":true},{"x":353,"y":539,"on":true},{"x":467,"y":539,"on":true},{"x":307,"y":275,"on":true},{"x":425,"y":81,"on":true},{"x":503,"y":81,"on":true},{"x":503,"y":-62,"on":true},{"x":503,"y":-134,"on":false},{"x":440,"y":-205,"on":false}] + ] + }, + "uni04FE": { + "advanceWidth": 541, + "contours": [ + [{"x":56,"y":418,"on":true},{"x":182,"y":418,"on":true},{"x":19,"y":714,"on":true},{"x":133,"y":714,"on":true},{"x":272,"y":447,"on":true},{"x":411,"y":714,"on":true},{"x":523,"y":714,"on":true},{"x":360,"y":418,"on":true},{"x":488,"y":418,"on":true},{"x":488,"y":328,"on":true},{"x":358,"y":328,"on":true},{"x":537,"y":0,"on":true},{"x":420,"y":0,"on":true},{"x":270,"y":293,"on":true},{"x":114,"y":0,"on":true},{"x":3,"y":0,"on":true},{"x":184,"y":328,"on":true},{"x":56,"y":328,"on":true}] + ] + }, + "uni04FF": { + "advanceWidth": 488, + "contours": [ + [{"x":49,"y":316,"on":true},{"x":156,"y":316,"on":true},{"x":22,"y":539,"on":true},{"x":136,"y":539,"on":true},{"x":244,"y":347,"on":true},{"x":353,"y":539,"on":true},{"x":467,"y":539,"on":true},{"x":331,"y":316,"on":true},{"x":440,"y":316,"on":true},{"x":440,"y":236,"on":true},{"x":330,"y":236,"on":true},{"x":474,"y":0,"on":true},{"x":361,"y":0,"on":true},{"x":244,"y":204,"on":true},{"x":126,"y":0,"on":true},{"x":13,"y":0,"on":true},{"x":157,"y":236,"on":true},{"x":49,"y":236,"on":true}] + ] + }, + "uni0500": { + "advanceWidth": 561, + "contours": [ + [{"x":288,"y":0,"on":true},{"x":162,"y":0,"on":false},{"x":48,"y":108,"on":false},{"x":48,"y":209,"on":true},{"x":48,"y":273,"on":false},{"x":100,"y":371,"on":false},{"x":210,"y":426,"on":false},{"x":298,"y":426,"on":true},{"x":375,"y":426,"on":true},{"x":375,"y":714,"on":true},{"x":480,"y":714,"on":true},{"x":480,"y":0,"on":true}], + [{"x":300,"y":89,"on":true},{"x":375,"y":89,"on":true},{"x":375,"y":336,"on":true},{"x":308,"y":336,"on":true},{"x":228,"y":336,"on":false},{"x":155,"y":276,"on":false},{"x":155,"y":212,"on":true},{"x":155,"y":149,"on":false},{"x":224,"y":89,"on":false}] + ] + }, + "uni0501": { + "advanceWidth": 566, + "references": [ + {"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0502": { + "advanceWidth": 831, + "contours": [ + [{"x":466,"y":714,"on":true},{"x":466,"y":183,"on":true},{"x":467,"y":129,"on":false},{"x":512,"y":81,"on":false},{"x":558,"y":81,"on":true},{"x":648,"y":81,"on":false},{"x":648,"y":192,"on":true},{"x":648,"y":414,"on":true},{"x":752,"y":414,"on":true},{"x":752,"y":187,"on":true},{"x":752,"y":92,"on":false},{"x":654,"y":-10,"on":false},{"x":560,"y":-10,"on":true},{"x":504,"y":-10,"on":false},{"x":428,"y":30,"on":false},{"x":408,"y":66,"on":true},{"x":386,"y":32,"on":false},{"x":311,"y":-9,"on":false},{"x":253,"y":-9,"on":true},{"x":153,"y":-9,"on":false},{"x":48,"y":100,"on":false},{"x":48,"y":207,"on":true},{"x":48,"y":306,"on":false},{"x":167,"y":426,"on":false},{"x":303,"y":426,"on":true},{"x":361,"y":426,"on":true},{"x":361,"y":714,"on":true}], + [{"x":361,"y":336,"on":true},{"x":309,"y":336,"on":true},{"x":232,"y":336,"on":false},{"x":155,"y":276,"on":false},{"x":155,"y":206,"on":true},{"x":155,"y":147,"on":false},{"x":204,"y":81,"on":false},{"x":260,"y":81,"on":true},{"x":314,"y":81,"on":false},{"x":361,"y":134,"on":false},{"x":361,"y":180,"on":true}] + ] + }, + "uni0503": { + "advanceWidth": 828, + "contours": [ + [{"x":481,"y":760,"on":true},{"x":481,"y":193,"on":true},{"x":481,"y":134,"on":false},{"x":520,"y":76,"on":false},{"x":569,"y":76,"on":true},{"x":615,"y":76,"on":false},{"x":656,"y":134,"on":false},{"x":656,"y":195,"on":true},{"x":656,"y":342,"on":true},{"x":758,"y":342,"on":true},{"x":758,"y":184,"on":true},{"x":758,"y":86,"on":false},{"x":662,"y":-10,"on":false},{"x":573,"y":-10,"on":true},{"x":503,"y":-10,"on":false},{"x":439,"y":39,"on":false},{"x":420,"y":80,"on":true},{"x":394,"y":37,"on":false},{"x":311,"y":-10,"on":false},{"x":252,"y":-10,"on":true},{"x":154,"y":-10,"on":false},{"x":47,"y":132,"on":false},{"x":47,"y":269,"on":true},{"x":47,"y":406,"on":false},{"x":151,"y":549,"on":false},{"x":237,"y":549,"on":true},{"x":288,"y":549,"on":false},{"x":358,"y":505,"on":false},{"x":380,"y":470,"on":true},{"x":385,"y":470,"on":true},{"x":384,"y":485,"on":false},{"x":380,"y":536,"on":false},{"x":380,"y":555,"on":true},{"x":380,"y":760,"on":true}], + [{"x":262,"y":463,"on":true},{"x":205,"y":463,"on":false},{"x":152,"y":362,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":74,"on":false},{"x":263,"y":74,"on":true},{"x":328,"y":74,"on":false},{"x":381,"y":162,"on":false},{"x":382,"y":250,"on":true},{"x":382,"y":271,"on":true},{"x":382,"y":366,"on":false},{"x":330,"y":463,"on":false}] + ] + }, + "uni0504": { + "advanceWidth": 831, + "contours": [ + [{"x":237,"y":724,"on":true},{"x":336,"y":724,"on":false},{"x":448,"y":630,"on":false},{"x":448,"y":550,"on":true},{"x":448,"y":478,"on":false},{"x":367,"y":389,"on":false},{"x":301,"y":375,"on":true},{"x":301,"y":371,"on":true},{"x":380,"y":361,"on":false},{"x":463,"y":274,"on":false},{"x":463,"y":200,"on":true},{"x":464,"y":139,"on":false},{"x":504,"y":81,"on":false},{"x":556,"y":81,"on":true},{"x":604,"y":81,"on":false},{"x":648,"y":136,"on":false},{"x":648,"y":197,"on":true},{"x":648,"y":414,"on":true},{"x":751,"y":414,"on":true},{"x":751,"y":191,"on":true},{"x":751,"y":88,"on":false},{"x":650,"y":-10,"on":false},{"x":556,"y":-10,"on":true},{"x":460,"y":-10,"on":false},{"x":357,"y":89,"on":false},{"x":357,"y":197,"on":true},{"x":356,"y":327,"on":false},{"x":178,"y":327,"on":true},{"x":99,"y":327,"on":true},{"x":99,"y":411,"on":true},{"x":176,"y":411,"on":true},{"x":262,"y":412,"on":false},{"x":342,"y":476,"on":false},{"x":342,"y":534,"on":true},{"x":342,"y":584,"on":false},{"x":282,"y":636,"on":false},{"x":227,"y":636,"on":true},{"x":180,"y":636,"on":false},{"x":107,"y":605,"on":false},{"x":78,"y":582,"on":true},{"x":27,"y":655,"on":true},{"x":67,"y":686,"on":false},{"x":170,"y":724,"on":false}] + ] + }, + "uni0505": { + "advanceWidth": 745, + "contours": [ + [{"x":199,"y":549,"on":true},{"x":280,"y":549,"on":false},{"x":383,"y":476,"on":false},{"x":383,"y":408,"on":true},{"x":383,"y":361,"on":false},{"x":334,"y":301,"on":false},{"x":293,"y":288,"on":true},{"x":293,"y":284,"on":true},{"x":343,"y":274,"on":false},{"x":399,"y":216,"on":false},{"x":400,"y":166,"on":true},{"x":401,"y":122,"on":false},{"x":442,"y":76,"on":false},{"x":488,"y":76,"on":true},{"x":574,"y":76,"on":false},{"x":574,"y":195,"on":true},{"x":574,"y":342,"on":true},{"x":675,"y":342,"on":true},{"x":675,"y":184,"on":true},{"x":675,"y":-10,"on":false},{"x":488,"y":-10,"on":true},{"x":302,"y":-10,"on":false},{"x":299,"y":151,"on":true},{"x":298,"y":199,"on":false},{"x":236,"y":242,"on":false},{"x":175,"y":242,"on":true},{"x":115,"y":242,"on":true},{"x":115,"y":321,"on":true},{"x":166,"y":321,"on":true},{"x":222,"y":321,"on":false},{"x":286,"y":358,"on":false},{"x":286,"y":398,"on":true},{"x":286,"y":467,"on":false},{"x":190,"y":467,"on":true},{"x":129,"y":467,"on":false},{"x":62,"y":435,"on":true},{"x":28,"y":512,"on":true},{"x":68,"y":531,"on":false},{"x":148,"y":549,"on":false}] + ] + }, + "uni0506": { + "advanceWidth": 589, + "contours": [ + [{"x":242,"y":724,"on":true},{"x":343,"y":724,"on":false},{"x":458,"y":630,"on":false},{"x":458,"y":550,"on":true},{"x":458,"y":478,"on":false},{"x":376,"y":390,"on":false},{"x":308,"y":376,"on":true},{"x":308,"y":372,"on":true},{"x":388,"y":362,"on":false},{"x":474,"y":274,"on":false},{"x":474,"y":201,"on":true},{"x":474,"y":93,"on":true},{"x":567,"y":93,"on":true},{"x":567,"y":-196,"on":true},{"x":466,"y":-196,"on":true},{"x":466,"y":0,"on":true},{"x":370,"y":0,"on":true},{"x":370,"y":203,"on":true},{"x":370,"y":327,"on":false},{"x":179,"y":327,"on":true},{"x":97,"y":327,"on":true},{"x":97,"y":411,"on":true},{"x":180,"y":411,"on":true},{"x":270,"y":412,"on":false},{"x":354,"y":476,"on":false},{"x":354,"y":534,"on":true},{"x":354,"y":584,"on":false},{"x":291,"y":636,"on":false},{"x":234,"y":636,"on":true},{"x":184,"y":636,"on":false},{"x":109,"y":606,"on":false},{"x":78,"y":583,"on":true},{"x":27,"y":655,"on":true},{"x":68,"y":686,"on":false},{"x":174,"y":724,"on":false}] + ] + }, + "uni0507": { + "advanceWidth": 510, + "contours": [ + [{"x":205,"y":549,"on":true},{"x":288,"y":549,"on":false},{"x":392,"y":475,"on":false},{"x":392,"y":407,"on":true},{"x":392,"y":360,"on":false},{"x":342,"y":301,"on":false},{"x":301,"y":288,"on":true},{"x":301,"y":283,"on":true},{"x":348,"y":271,"on":false},{"x":410,"y":209,"on":false},{"x":410,"y":151,"on":true},{"x":410,"y":83,"on":true},{"x":494,"y":83,"on":true},{"x":494,"y":-189,"on":true},{"x":396,"y":-189,"on":true},{"x":396,"y":0,"on":true},{"x":311,"y":0,"on":true},{"x":311,"y":155,"on":true},{"x":311,"y":196,"on":false},{"x":247,"y":241,"on":false},{"x":181,"y":241,"on":true},{"x":117,"y":241,"on":true},{"x":117,"y":321,"on":true},{"x":170,"y":321,"on":true},{"x":229,"y":321,"on":false},{"x":297,"y":357,"on":false},{"x":297,"y":397,"on":true},{"x":297,"y":467,"on":false},{"x":198,"y":467,"on":true},{"x":165,"y":467,"on":false},{"x":98,"y":450,"on":false},{"x":65,"y":434,"on":true},{"x":30,"y":511,"on":true},{"x":110,"y":549,"on":false}] + ] + }, + "uni0508": { + "advanceWidth": 912, + "contours": [ + [{"x":549,"y":714,"on":true},{"x":549,"y":189,"on":true},{"x":549,"y":131,"on":false},{"x":592,"y":81,"on":false},{"x":639,"y":81,"on":true},{"x":686,"y":81,"on":false},{"x":730,"y":137,"on":false},{"x":730,"y":197,"on":true},{"x":730,"y":414,"on":true},{"x":834,"y":414,"on":true},{"x":834,"y":191,"on":true},{"x":834,"y":88,"on":false},{"x":733,"y":-10,"on":false},{"x":639,"y":-10,"on":true},{"x":547,"y":-10,"on":false},{"x":444,"y":84,"on":false},{"x":444,"y":189,"on":true},{"x":444,"y":621,"on":true},{"x":279,"y":621,"on":true},{"x":270,"y":530,"on":false},{"x":251,"y":365,"on":false},{"x":232,"y":232,"on":false},{"x":223,"y":189,"on":true},{"x":211,"y":127,"on":false},{"x":176,"y":38,"on":false},{"x":115,"y":-10,"on":false},{"x":64,"y":-10,"on":true},{"x":28,"y":-10,"on":false},{"x":1,"y":1,"on":true},{"x":1,"y":90,"on":true},{"x":23,"y":79,"on":false},{"x":48,"y":79,"on":true},{"x":85,"y":79,"on":false},{"x":115,"y":158,"on":false},{"x":128,"y":229,"on":true},{"x":134,"y":262,"on":false},{"x":154,"y":402,"on":false},{"x":178,"y":598,"on":false},{"x":190,"y":714,"on":true}] + ] + }, + "uni0509": { + "advanceWidth": 803, + "contours": [ + [{"x":461,"y":186,"on":true},{"x":461,"y":128,"on":false},{"x":502,"y":76,"on":false},{"x":548,"y":76,"on":true},{"x":632,"y":76,"on":false},{"x":632,"y":194,"on":true},{"x":632,"y":342,"on":true},{"x":734,"y":342,"on":true},{"x":734,"y":184,"on":true},{"x":734,"y":-10,"on":false},{"x":548,"y":-10,"on":true},{"x":457,"y":-10,"on":false},{"x":359,"y":83,"on":false},{"x":359,"y":186,"on":true},{"x":359,"y":454,"on":true},{"x":234,"y":454,"on":true},{"x":223,"y":291,"on":false},{"x":184,"y":88,"on":false},{"x":114,"y":-7,"on":false},{"x":57,"y":-7,"on":true},{"x":25,"y":-7,"on":false},{"x":4,"y":2,"on":true},{"x":4,"y":84,"on":true},{"x":10,"y":82,"on":false},{"x":26,"y":78,"on":false},{"x":34,"y":78,"on":true},{"x":78,"y":78,"on":false},{"x":130,"y":297,"on":false},{"x":144,"y":539,"on":true},{"x":461,"y":539,"on":true}] + ] + }, + "uni050A": { + "advanceWidth": 937, + "contours": [ + [{"x":575,"y":714,"on":true},{"x":575,"y":190,"on":true},{"x":575,"y":132,"on":false},{"x":618,"y":81,"on":false},{"x":665,"y":81,"on":true},{"x":712,"y":81,"on":false},{"x":755,"y":136,"on":false},{"x":755,"y":197,"on":true},{"x":755,"y":414,"on":true},{"x":858,"y":414,"on":true},{"x":858,"y":191,"on":true},{"x":858,"y":88,"on":false},{"x":758,"y":-10,"on":false},{"x":665,"y":-10,"on":true},{"x":574,"y":-10,"on":false},{"x":471,"y":82,"on":false},{"x":471,"y":189,"on":true},{"x":471,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":471,"y":418,"on":true},{"x":471,"y":714,"on":true}] + ] + }, + "uni050B": { + "advanceWidth": 841, + "contours": [ + [{"x":178,"y":539,"on":true},{"x":178,"y":320,"on":true},{"x":397,"y":320,"on":true},{"x":397,"y":539,"on":true},{"x":500,"y":539,"on":true},{"x":500,"y":185,"on":true},{"x":500,"y":128,"on":false},{"x":541,"y":76,"on":false},{"x":586,"y":76,"on":true},{"x":670,"y":76,"on":false},{"x":670,"y":195,"on":true},{"x":670,"y":342,"on":true},{"x":771,"y":342,"on":true},{"x":771,"y":184,"on":true},{"x":771,"y":-10,"on":false},{"x":586,"y":-10,"on":true},{"x":496,"y":-10,"on":false},{"x":398,"y":83,"on":false},{"x":397,"y":184,"on":true},{"x":397,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni050C": { + "advanceWidth": 695, + "contours": [ + [{"x":377,"y":381,"on":true},{"x":644,"y":381,"on":true},{"x":644,"y":328,"on":true},{"x":644,"y":223,"on":false},{"x":588,"y":71,"on":false},{"x":464,"y":-10,"on":false},{"x":364,"y":-10,"on":true},{"x":266,"y":-10,"on":false},{"x":128,"y":78,"on":false},{"x":56,"y":243,"on":false},{"x":56,"y":358,"on":true},{"x":56,"y":469,"on":false},{"x":131,"y":634,"on":false},{"x":278,"y":724,"on":false},{"x":385,"y":724,"on":true},{"x":443,"y":724,"on":false},{"x":546,"y":699,"on":false},{"x":588,"y":678,"on":true},{"x":551,"y":590,"on":true},{"x":516,"y":608,"on":false},{"x":430,"y":633,"on":false},{"x":381,"y":633,"on":true},{"x":274,"y":633,"on":false},{"x":165,"y":485,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":232,"on":false},{"x":266,"y":81,"on":false},{"x":366,"y":81,"on":true},{"x":429,"y":81,"on":false},{"x":503,"y":133,"on":false},{"x":536,"y":227,"on":false},{"x":536,"y":290,"on":true},{"x":377,"y":290,"on":true}] + ] + }, + "uni050D": { + "advanceWidth": 578, + "contours": [ + [{"x":297,"y":296,"on":true},{"x":533,"y":296,"on":true},{"x":533,"y":257,"on":true},{"x":533,"y":133,"on":false},{"x":422,"y":-10,"on":false},{"x":299,"y":-10,"on":true},{"x":178,"y":-10,"on":false},{"x":48,"y":136,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":401,"on":false},{"x":186,"y":549,"on":false},{"x":317,"y":549,"on":true},{"x":367,"y":549,"on":false},{"x":454,"y":529,"on":false},{"x":489,"y":511,"on":true},{"x":456,"y":431,"on":true},{"x":429,"y":444,"on":false},{"x":355,"y":464,"on":false},{"x":317,"y":464,"on":true},{"x":233,"y":464,"on":false},{"x":151,"y":360,"on":false},{"x":151,"y":268,"on":true},{"x":151,"y":177,"on":false},{"x":221,"y":73,"on":false},{"x":299,"y":73,"on":true},{"x":368,"y":73,"on":false},{"x":430,"y":150,"on":false},{"x":430,"y":215,"on":true},{"x":297,"y":215,"on":true}] + ] + }, + "uni050E": { + "advanceWidth": 665, + "contours": [ + [{"x":486,"y":714,"on":true},{"x":486,"y":622,"on":true},{"x":299,"y":622,"on":true},{"x":299,"y":190,"on":true},{"x":299,"y":132,"on":false},{"x":344,"y":81,"on":false},{"x":391,"y":81,"on":true},{"x":438,"y":81,"on":false},{"x":482,"y":136,"on":false},{"x":482,"y":196,"on":true},{"x":482,"y":414,"on":true},{"x":586,"y":414,"on":true},{"x":586,"y":191,"on":true},{"x":586,"y":88,"on":false},{"x":485,"y":-10,"on":false},{"x":392,"y":-10,"on":true},{"x":300,"y":-10,"on":false},{"x":195,"y":82,"on":false},{"x":195,"y":188,"on":true},{"x":195,"y":622,"on":true},{"x":12,"y":622,"on":true},{"x":12,"y":714,"on":true}] + ] + }, + "uni050F": { + "advanceWidth": 612, + "contours": [ + [{"x":418,"y":539,"on":true},{"x":418,"y":456,"on":true},{"x":268,"y":456,"on":true},{"x":268,"y":187,"on":true},{"x":268,"y":129,"on":false},{"x":310,"y":76,"on":false},{"x":356,"y":76,"on":true},{"x":399,"y":76,"on":false},{"x":441,"y":132,"on":false},{"x":441,"y":193,"on":true},{"x":441,"y":342,"on":true},{"x":542,"y":342,"on":true},{"x":542,"y":184,"on":true},{"x":542,"y":-10,"on":false},{"x":356,"y":-10,"on":true},{"x":265,"y":-10,"on":false},{"x":167,"y":83,"on":false},{"x":166,"y":185,"on":true},{"x":166,"y":456,"on":true},{"x":17,"y":456,"on":true},{"x":17,"y":539,"on":true}] + ] + }, + "uni0510": { + "advanceWidth": 542, + "contours": [ + [{"x":289,"y":724,"on":true},{"x":360,"y":724,"on":false},{"x":462,"y":689,"on":false},{"x":505,"y":657,"on":true},{"x":455,"y":581,"on":true},{"x":420,"y":606,"on":false},{"x":344,"y":634,"on":false},{"x":294,"y":634,"on":true},{"x":236,"y":634,"on":false},{"x":174,"y":578,"on":false},{"x":174,"y":531,"on":true},{"x":174,"y":475,"on":false},{"x":255,"y":414,"on":false},{"x":344,"y":414,"on":true},{"x":420,"y":414,"on":true},{"x":420,"y":327,"on":true},{"x":343,"y":327,"on":true},{"x":254,"y":327,"on":false},{"x":154,"y":265,"on":false},{"x":154,"y":203,"on":true},{"x":154,"y":141,"on":false},{"x":235,"y":80,"on":false},{"x":312,"y":80,"on":true},{"x":364,"y":80,"on":false},{"x":462,"y":104,"on":false},{"x":501,"y":125,"on":true},{"x":501,"y":28,"on":true},{"x":422,"y":-10,"on":false},{"x":298,"y":-10,"on":true},{"x":176,"y":-10,"on":false},{"x":47,"y":102,"on":false},{"x":47,"y":197,"on":true},{"x":47,"y":270,"on":false},{"x":136,"y":361,"on":false},{"x":215,"y":372,"on":true},{"x":215,"y":375,"on":true},{"x":147,"y":388,"on":false},{"x":68,"y":474,"on":false},{"x":68,"y":545,"on":true},{"x":68,"y":623,"on":false},{"x":184,"y":724,"on":false}] + ] + }, + "uni0511": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni0512": { + "advanceWidth": 672, + "contours": [ + [{"x":520,"y":-207,"on":true},{"x":500,"y":-207,"on":false},{"x":464,"y":-200,"on":false},{"x":452,"y":-196,"on":true},{"x":452,"y":-112,"on":true},{"x":462,"y":-116,"on":false},{"x":487,"y":-121,"on":false},{"x":501,"y":-121,"on":true},{"x":526,"y":-121,"on":false},{"x":552,"y":-92,"on":false},{"x":552,"y":-58,"on":true},{"x":552,"y":0,"on":true},{"x":455,"y":0,"on":true},{"x":455,"y":621,"on":true},{"x":279,"y":621,"on":true},{"x":270,"y":538,"on":false},{"x":251,"y":371,"on":false},{"x":232,"y":231,"on":false},{"x":223,"y":188,"on":true},{"x":211,"y":124,"on":false},{"x":175,"y":36,"on":false},{"x":114,"y":-10,"on":false},{"x":64,"y":-10,"on":true},{"x":27,"y":-10,"on":false},{"x":2,"y":1,"on":true},{"x":2,"y":90,"on":true},{"x":22,"y":79,"on":false},{"x":49,"y":79,"on":true},{"x":84,"y":79,"on":false},{"x":116,"y":158,"on":false},{"x":128,"y":228,"on":true},{"x":134,"y":260,"on":false},{"x":154,"y":402,"on":false},{"x":178,"y":599,"on":false},{"x":190,"y":714,"on":true},{"x":560,"y":714,"on":true},{"x":560,"y":92,"on":true},{"x":649,"y":92,"on":true},{"x":649,"y":-60,"on":true},{"x":649,"y":-130,"on":false},{"x":585,"y":-207,"on":false}] + ] + }, + "uni0513": { + "advanceWidth": 570, + "contours": [ + [{"x":425,"y":-205,"on":true},{"x":405,"y":-205,"on":false},{"x":370,"y":-198,"on":false},{"x":358,"y":-194,"on":true},{"x":358,"y":-112,"on":true},{"x":368,"y":-116,"on":false},{"x":392,"y":-121,"on":false},{"x":406,"y":-121,"on":true},{"x":455,"y":-121,"on":false},{"x":455,"y":-64,"on":true},{"x":455,"y":0,"on":true},{"x":366,"y":0,"on":true},{"x":366,"y":454,"on":true},{"x":235,"y":454,"on":true},{"x":224,"y":288,"on":false},{"x":184,"y":84,"on":false},{"x":114,"y":-8,"on":false},{"x":57,"y":-8,"on":true},{"x":24,"y":-8,"on":false},{"x":4,"y":2,"on":true},{"x":4,"y":83,"on":true},{"x":17,"y":78,"on":false},{"x":34,"y":78,"on":true},{"x":63,"y":78,"on":false},{"x":105,"y":168,"on":false},{"x":135,"y":371,"on":false},{"x":145,"y":539,"on":true},{"x":468,"y":539,"on":true},{"x":468,"y":81,"on":true},{"x":547,"y":81,"on":true},{"x":547,"y":-61,"on":true},{"x":547,"y":-205,"on":false}] + ] + }, + "uni0514": { + "advanceWidth": 864, + "contours": [ + [{"x":64,"y":-10,"on":true},{"x":28,"y":-10,"on":false},{"x":1,"y":1,"on":true},{"x":1,"y":90,"on":true},{"x":23,"y":79,"on":false},{"x":48,"y":79,"on":true},{"x":84,"y":79,"on":false},{"x":116,"y":157,"on":false},{"x":128,"y":229,"on":true},{"x":134,"y":268,"on":false},{"x":155,"y":417,"on":false},{"x":178,"y":610,"on":false},{"x":190,"y":714,"on":true},{"x":457,"y":714,"on":true},{"x":596,"y":448,"on":true},{"x":735,"y":714,"on":true},{"x":847,"y":714,"on":true},{"x":656,"y":368,"on":true},{"x":861,"y":0,"on":true},{"x":744,"y":0,"on":true},{"x":593,"y":290,"on":true},{"x":438,"y":0,"on":true},{"x":327,"y":0,"on":true},{"x":533,"y":371,"on":true},{"x":395,"y":621,"on":true},{"x":279,"y":621,"on":true},{"x":273,"y":567,"on":false},{"x":260,"y":445,"on":false},{"x":245,"y":327,"on":false},{"x":230,"y":223,"on":false},{"x":223,"y":187,"on":true},{"x":210,"y":122,"on":false},{"x":174,"y":34,"on":false},{"x":114,"y":-10,"on":false}] + ] + }, + "uni0515": { + "advanceWidth": 748, + "contours": [ + [{"x":57,"y":-7,"on":true},{"x":25,"y":-7,"on":false},{"x":4,"y":2,"on":true},{"x":4,"y":84,"on":true},{"x":10,"y":82,"on":false},{"x":26,"y":78,"on":false},{"x":34,"y":78,"on":true},{"x":64,"y":78,"on":false},{"x":106,"y":173,"on":false},{"x":134,"y":376,"on":false},{"x":144,"y":539,"on":true},{"x":396,"y":539,"on":true},{"x":505,"y":349,"on":true},{"x":614,"y":539,"on":true},{"x":727,"y":539,"on":true},{"x":567,"y":275,"on":true},{"x":735,"y":0,"on":true},{"x":621,"y":0,"on":true},{"x":504,"y":203,"on":true},{"x":387,"y":0,"on":true},{"x":274,"y":0,"on":true},{"x":442,"y":276,"on":true},{"x":334,"y":454,"on":true},{"x":234,"y":454,"on":true},{"x":223,"y":290,"on":false},{"x":183,"y":86,"on":false},{"x":114,"y":-7,"on":false}] + ] + }, + "uni0516": { + "advanceWidth": 754, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":268,"y":714,"on":true},{"x":392,"y":714,"on":false},{"x":506,"y":606,"on":false},{"x":507,"y":499,"on":true},{"x":631,"y":714,"on":true},{"x":743,"y":714,"on":true},{"x":538,"y":375,"on":true},{"x":750,"y":0,"on":true},{"x":632,"y":0,"on":true},{"x":450,"y":337,"on":true},{"x":422,"y":307,"on":false},{"x":325,"y":271,"on":false},{"x":256,"y":271,"on":true},{"x":191,"y":271,"on":true},{"x":191,"y":0,"on":true}], + [{"x":191,"y":360,"on":true},{"x":245,"y":360,"on":true},{"x":325,"y":360,"on":false},{"x":405,"y":424,"on":false},{"x":405,"y":495,"on":true},{"x":405,"y":562,"on":false},{"x":335,"y":625,"on":false},{"x":258,"y":625,"on":true},{"x":191,"y":625,"on":true}] + ] + }, + "uni0517": { + "advanceWidth": 761, + "contours": [ + [{"x":75,"y":-240,"on":true},{"x":75,"y":539,"on":true},{"x":159,"y":539,"on":true},{"x":172,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":504,"on":false},{"x":271,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":401,"y":549,"on":false},{"x":501,"y":443,"on":false},{"x":514,"y":338,"on":true},{"x":627,"y":539,"on":true},{"x":740,"y":539,"on":true},{"x":580,"y":275,"on":true},{"x":748,"y":0,"on":true},{"x":634,"y":0,"on":true},{"x":514,"y":210,"on":true},{"x":503,"y":103,"on":false},{"x":402,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":199,"y":34,"on":false},{"x":178,"y":68,"on":true},{"x":172,"y":68,"on":true},{"x":174,"y":52,"on":false},{"x":178,"y":2,"on":false},{"x":178,"y":-15,"on":true},{"x":178,"y":-240,"on":true}], + [{"x":300,"y":76,"on":true},{"x":358,"y":76,"on":false},{"x":414,"y":179,"on":false},{"x":414,"y":271,"on":true},{"x":414,"y":363,"on":false},{"x":359,"y":464,"on":false},{"x":299,"y":464,"on":true},{"x":234,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":287,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":173,"on":false},{"x":232,"y":76,"on":false}] + ] + }, + "uni0518": { + "advanceWidth": 808, + "contours": [ + [{"x":13,"y":0,"on":true},{"x":193,"y":315,"on":true},{"x":139,"y":337,"on":false},{"x":65,"y":428,"on":false},{"x":65,"y":512,"on":true},{"x":65,"y":611,"on":false},{"x":190,"y":714,"on":false},{"x":315,"y":714,"on":true},{"x":754,"y":714,"on":true},{"x":754,"y":624,"on":true},{"x":496,"y":624,"on":true},{"x":496,"y":417,"on":true},{"x":738,"y":417,"on":true},{"x":738,"y":327,"on":true},{"x":496,"y":327,"on":true},{"x":496,"y":91,"on":true},{"x":754,"y":91,"on":true},{"x":754,"y":0,"on":true},{"x":395,"y":0,"on":true},{"x":395,"y":291,"on":true},{"x":291,"y":291,"on":true},{"x":131,"y":0,"on":true}], + [{"x":317,"y":378,"on":true},{"x":394,"y":378,"on":true},{"x":394,"y":624,"on":true},{"x":317,"y":624,"on":true},{"x":246,"y":624,"on":false},{"x":172,"y":569,"on":false},{"x":172,"y":507,"on":true},{"x":172,"y":378,"on":false}] + ] + }, + "uni0519": { + "advanceWidth": 805, + "contours": [ + [{"x":573,"y":-10,"on":true},{"x":472,"y":-10,"on":false},{"x":353,"y":107,"on":false},{"x":341,"y":212,"on":true},{"x":250,"y":212,"on":true},{"x":125,"y":0,"on":true},{"x":12,"y":0,"on":true},{"x":154,"y":224,"on":true},{"x":108,"y":238,"on":false},{"x":42,"y":312,"on":false},{"x":42,"y":378,"on":true},{"x":42,"y":456,"on":false},{"x":145,"y":539,"on":false},{"x":232,"y":539,"on":true},{"x":427,"y":539,"on":true},{"x":427,"y":491,"on":true},{"x":476,"y":549,"on":false},{"x":557,"y":549,"on":true},{"x":620,"y":549,"on":false},{"x":711,"y":488,"on":false},{"x":760,"y":380,"on":false},{"x":760,"y":307,"on":true},{"x":760,"y":247,"on":true},{"x":436,"y":247,"on":true},{"x":441,"y":74,"on":false},{"x":580,"y":74,"on":true},{"x":624,"y":74,"on":false},{"x":697,"y":92,"on":false},{"x":736,"y":112,"on":true},{"x":736,"y":26,"on":true},{"x":698,"y":7,"on":false},{"x":622,"y":-10,"on":false}], + [{"x":438,"y":324,"on":true},{"x":660,"y":324,"on":true},{"x":659,"y":387,"on":false},{"x":608,"y":469,"on":false},{"x":553,"y":469,"on":true},{"x":503,"y":469,"on":false},{"x":443,"y":395,"on":false}], + [{"x":252,"y":291,"on":true},{"x":336,"y":291,"on":true},{"x":336,"y":460,"on":true},{"x":241,"y":460,"on":true},{"x":190,"y":460,"on":false},{"x":142,"y":414,"on":false},{"x":142,"y":377,"on":true},{"x":142,"y":334,"on":false},{"x":200,"y":291,"on":false}] + ] + }, + "uni051A": { + "advanceWidth": 704, + "references": [ + {"glyph":"Q","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni051B": { + "advanceWidth": 566, + "references": [ + {"glyph":"q","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni051C": { + "advanceWidth": 866, + "references": [ + {"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni051D": { + "advanceWidth": 741, + "references": [ + {"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni051E": { + "advanceWidth": 571, + "contours": [ + [{"x":573,"y":0,"on":true},{"x":451,"y":0,"on":true},{"x":191,"y":364,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":370,"on":true},{"x":335,"y":565,"on":true},{"x":253,"y":637,"on":true},{"x":300,"y":691,"on":true},{"x":378,"y":622,"on":true},{"x":446,"y":714,"on":true},{"x":561,"y":714,"on":true},{"x":447,"y":561,"on":true},{"x":537,"y":482,"on":true},{"x":489,"y":429,"on":true},{"x":404,"y":504,"on":true},{"x":304,"y":369,"on":true}] + ] + }, + "uni051F": { + "advanceWidth": 505, + "contours": [ + [{"x":219,"y":481,"on":true},{"x":262,"y":529,"on":true},{"x":323,"y":475,"on":true},{"x":371,"y":539,"on":true},{"x":483,"y":539,"on":true},{"x":389,"y":417,"on":true},{"x":461,"y":353,"on":true},{"x":418,"y":305,"on":true},{"x":349,"y":366,"on":true},{"x":284,"y":281,"on":true},{"x":499,"y":0,"on":true},{"x":383,"y":0,"on":true},{"x":178,"y":275,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":279,"on":true},{"x":285,"y":423,"on":true}] + ] + }, + "uni0520": { + "advanceWidth": 944, + "contours": [ + [{"x":662,"y":-248,"on":true},{"x":622,"y":-248,"on":false},{"x":561,"y":-236,"on":false},{"x":535,"y":-226,"on":true},{"x":535,"y":-132,"on":true},{"x":562,"y":-143,"on":false},{"x":616,"y":-155,"on":false},{"x":645,"y":-155,"on":true},{"x":722,"y":-155,"on":false},{"x":797,"y":-28,"on":false},{"x":797,"y":74,"on":true},{"x":797,"y":187,"on":false},{"x":692,"y":301,"on":false},{"x":606,"y":301,"on":true},{"x":589,"y":301,"on":false},{"x":547,"y":297,"on":false},{"x":532,"y":294,"on":true},{"x":532,"y":0,"on":true},{"x":427,"y":0,"on":true},{"x":427,"y":621,"on":true},{"x":280,"y":621,"on":true},{"x":274,"y":567,"on":false},{"x":260,"y":445,"on":false},{"x":245,"y":327,"on":false},{"x":230,"y":223,"on":false},{"x":223,"y":187,"on":true},{"x":210,"y":122,"on":false},{"x":174,"y":34,"on":false},{"x":114,"y":-10,"on":false},{"x":64,"y":-10,"on":true},{"x":27,"y":-10,"on":false},{"x":2,"y":1,"on":true},{"x":2,"y":90,"on":true},{"x":22,"y":79,"on":false},{"x":49,"y":79,"on":true},{"x":84,"y":79,"on":false},{"x":116,"y":157,"on":false},{"x":128,"y":229,"on":true},{"x":134,"y":268,"on":false},{"x":155,"y":418,"on":false},{"x":179,"y":610,"on":false},{"x":191,"y":714,"on":true},{"x":532,"y":714,"on":true},{"x":532,"y":386,"on":true},{"x":553,"y":390,"on":false},{"x":604,"y":394,"on":false},{"x":626,"y":394,"on":true},{"x":710,"y":394,"on":false},{"x":835,"y":317,"on":false},{"x":904,"y":174,"on":false},{"x":904,"y":74,"on":true},{"x":904,"y":-28,"on":false},{"x":843,"y":-172,"on":false},{"x":734,"y":-248,"on":false}] + ] + }, + "uni0521": { + "advanceWidth": 771, + "contours": [ + [{"x":537,"y":-244,"on":true},{"x":471,"y":-244,"on":false},{"x":426,"y":-217,"on":true},{"x":426,"y":-127,"on":true},{"x":446,"y":-140,"on":false},{"x":497,"y":-156,"on":false},{"x":524,"y":-156,"on":true},{"x":578,"y":-156,"on":false},{"x":637,"y":-64,"on":false},{"x":637,"y":32,"on":true},{"x":637,"y":222,"on":false},{"x":495,"y":222,"on":true},{"x":483,"y":222,"on":false},{"x":459,"y":218,"on":false},{"x":447,"y":215,"on":true},{"x":447,"y":0,"on":true},{"x":345,"y":0,"on":true},{"x":345,"y":454,"on":true},{"x":234,"y":454,"on":true},{"x":222,"y":290,"on":false},{"x":183,"y":86,"on":false},{"x":114,"y":-8,"on":false},{"x":57,"y":-8,"on":true},{"x":24,"y":-8,"on":false},{"x":4,"y":2,"on":true},{"x":4,"y":83,"on":true},{"x":10,"y":81,"on":false},{"x":25,"y":77,"on":false},{"x":33,"y":77,"on":true},{"x":62,"y":77,"on":false},{"x":105,"y":172,"on":false},{"x":135,"y":376,"on":false},{"x":145,"y":539,"on":true},{"x":447,"y":539,"on":true},{"x":447,"y":304,"on":true},{"x":476,"y":310,"on":false},{"x":505,"y":310,"on":true},{"x":615,"y":310,"on":false},{"x":739,"y":172,"on":false},{"x":739,"y":32,"on":true},{"x":739,"y":-108,"on":false},{"x":626,"y":-244,"on":false}] + ] + }, + "uni0522": { + "advanceWidth": 997, + "contours": [ + [{"x":585,"y":387,"on":true},{"x":606,"y":391,"on":false},{"x":656,"y":394,"on":false},{"x":679,"y":394,"on":true},{"x":764,"y":394,"on":false},{"x":888,"y":317,"on":false},{"x":957,"y":174,"on":false},{"x":957,"y":74,"on":true},{"x":957,"y":-28,"on":false},{"x":896,"y":-172,"on":false},{"x":788,"y":-248,"on":false},{"x":715,"y":-248,"on":true},{"x":674,"y":-248,"on":false},{"x":615,"y":-236,"on":false},{"x":588,"y":-226,"on":true},{"x":588,"y":-132,"on":true},{"x":615,"y":-143,"on":false},{"x":669,"y":-155,"on":false},{"x":698,"y":-155,"on":true},{"x":774,"y":-155,"on":false},{"x":850,"y":-28,"on":false},{"x":850,"y":74,"on":true},{"x":850,"y":187,"on":false},{"x":746,"y":301,"on":false},{"x":659,"y":301,"on":true},{"x":642,"y":301,"on":false},{"x":600,"y":297,"on":false},{"x":585,"y":294,"on":true},{"x":585,"y":0,"on":true},{"x":480,"y":0,"on":true},{"x":480,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":480,"y":418,"on":true},{"x":480,"y":714,"on":true},{"x":585,"y":714,"on":true}] + ] + }, + "uni0523": { + "advanceWidth": 813, + "contours": [ + [{"x":578,"y":-244,"on":true},{"x":513,"y":-244,"on":false},{"x":466,"y":-217,"on":true},{"x":466,"y":-127,"on":true},{"x":487,"y":-140,"on":false},{"x":538,"y":-156,"on":false},{"x":565,"y":-156,"on":true},{"x":619,"y":-156,"on":false},{"x":678,"y":-64,"on":false},{"x":678,"y":32,"on":true},{"x":678,"y":222,"on":false},{"x":537,"y":222,"on":true},{"x":525,"y":222,"on":false},{"x":499,"y":218,"on":false},{"x":488,"y":215,"on":true},{"x":488,"y":0,"on":true},{"x":386,"y":0,"on":true},{"x":386,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":320,"on":true},{"x":386,"y":320,"on":true},{"x":386,"y":539,"on":true},{"x":488,"y":539,"on":true},{"x":488,"y":304,"on":true},{"x":516,"y":310,"on":false},{"x":546,"y":310,"on":true},{"x":656,"y":310,"on":false},{"x":781,"y":172,"on":false},{"x":781,"y":32,"on":true},{"x":781,"y":-108,"on":false},{"x":666,"y":-244,"on":false}] + ] + }, + "uni0524": { + "advanceWidth": 695, + "contours": [ + [{"x":571,"y":-196,"on":true},{"x":571,"y":0,"on":true},{"x":475,"y":0,"on":true},{"x":475,"y":623,"on":true},{"x":191,"y":623,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":580,"y":714,"on":true},{"x":580,"y":93,"on":true},{"x":671,"y":93,"on":true},{"x":671,"y":-196,"on":true}] + ] + }, + "uni0525": { + "advanceWidth": 603, + "contours": [ + [{"x":582,"y":84,"on":true},{"x":582,"y":-189,"on":true},{"x":484,"y":-189,"on":true},{"x":484,"y":0,"on":true},{"x":398,"y":0,"on":true},{"x":398,"y":455,"on":true},{"x":178,"y":455,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":500,"y":539,"on":true},{"x":500,"y":84,"on":true}] + ] + }, + "uni0526": { + "advanceWidth": 687, + "contours": [ + [{"x":563,"y":-196,"on":true},{"x":563,"y":0,"on":true},{"x":468,"y":0,"on":true},{"x":468,"y":266,"on":true},{"x":468,"y":324,"on":false},{"x":418,"y":379,"on":false},{"x":363,"y":379,"on":true},{"x":316,"y":379,"on":false},{"x":239,"y":360,"on":false},{"x":191,"y":341,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":427,"on":true},{"x":243,"y":448,"on":false},{"x":340,"y":471,"on":false},{"x":387,"y":471,"on":true},{"x":476,"y":471,"on":false},{"x":574,"y":378,"on":false},{"x":573,"y":287,"on":true},{"x":573,"y":93,"on":true},{"x":664,"y":93,"on":true},{"x":664,"y":-196,"on":true}] + ] + }, + "uni0527": { + "advanceWidth": 601, + "contours": [ + [{"x":483,"y":-189,"on":true},{"x":483,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":402,"on":false},{"x":352,"y":463,"on":false},{"x":303,"y":463,"on":true},{"x":232,"y":463,"on":false},{"x":178,"y":366,"on":false},{"x":178,"y":272,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":558,"on":true},{"x":178,"y":532,"on":false},{"x":174,"y":486,"on":false},{"x":171,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":508,"on":false},{"x":278,"y":549,"on":false},{"x":325,"y":549,"on":true},{"x":410,"y":549,"on":false},{"x":498,"y":454,"on":false},{"x":498,"y":355,"on":true},{"x":498,"y":84,"on":true},{"x":581,"y":84,"on":true},{"x":581,"y":-189,"on":true}] + ] + }, + "uni0528": { + "advanceWidth": 668, + "contours": [ + [{"x":84,"y":-34,"on":true},{"x":84,"y":714,"on":true},{"x":189,"y":714,"on":true},{"x":189,"y":417,"on":true},{"x":480,"y":417,"on":true},{"x":480,"y":714,"on":true},{"x":585,"y":714,"on":true},{"x":585,"y":0,"on":true},{"x":480,"y":0,"on":true},{"x":480,"y":327,"on":true},{"x":189,"y":327,"on":true},{"x":189,"y":-35,"on":true},{"x":189,"y":-127,"on":false},{"x":108,"y":-209,"on":false},{"x":38,"y":-209,"on":true},{"x":17,"y":-209,"on":false},{"x":-19,"y":-202,"on":false},{"x":-32,"y":-197,"on":true},{"x":-32,"y":-111,"on":true},{"x":-22,"y":-115,"on":false},{"x":8,"y":-121,"on":false},{"x":24,"y":-121,"on":true},{"x":84,"y":-121,"on":false}] + ] + }, + "uni0529": { + "advanceWidth": 577, + "contours": [ + [{"x":32,"y":-240,"on":true},{"x":12,"y":-240,"on":false},{"x":-23,"y":-233,"on":false},{"x":-36,"y":-228,"on":true},{"x":-36,"y":-144,"on":true},{"x":-23,"y":-148,"on":false},{"x":0,"y":-154,"on":false},{"x":16,"y":-154,"on":true},{"x":71,"y":-154,"on":false},{"x":71,"y":-72,"on":true},{"x":71,"y":539,"on":true},{"x":173,"y":539,"on":true},{"x":173,"y":320,"on":true},{"x":403,"y":320,"on":true},{"x":403,"y":539,"on":true},{"x":506,"y":539,"on":true},{"x":506,"y":0,"on":true},{"x":403,"y":0,"on":true},{"x":403,"y":239,"on":true},{"x":173,"y":239,"on":true},{"x":173,"y":-69,"on":true},{"x":173,"y":-144,"on":false},{"x":109,"y":-240,"on":false}] + ] + }, + "uni052A": { + "advanceWidth": 1291, + "contours": [ + [{"x":546,"y":714,"on":true},{"x":546,"y":407,"on":true},{"x":806,"y":407,"on":true},{"x":806,"y":714,"on":true},{"x":911,"y":714,"on":true},{"x":911,"y":370,"on":true},{"x":1166,"y":714,"on":true},{"x":1281,"y":714,"on":true},{"x":1024,"y":369,"on":true},{"x":1293,"y":0,"on":true},{"x":1171,"y":0,"on":true},{"x":911,"y":364,"on":true},{"x":911,"y":0,"on":true},{"x":806,"y":0,"on":true},{"x":806,"y":325,"on":true},{"x":546,"y":325,"on":true},{"x":546,"y":92,"on":true},{"x":629,"y":92,"on":true},{"x":629,"y":-196,"on":true},{"x":528,"y":-196,"on":true},{"x":528,"y":0,"on":true},{"x":106,"y":0,"on":true},{"x":106,"y":-196,"on":true},{"x":5,"y":-196,"on":true},{"x":5,"y":92,"on":true},{"x":56,"y":92,"on":true},{"x":119,"y":224,"on":false},{"x":203,"y":543,"on":false},{"x":212,"y":714,"on":true}], + [{"x":442,"y":622,"on":true},{"x":304,"y":622,"on":true},{"x":298,"y":538,"on":false},{"x":260,"y":350,"on":false},{"x":202,"y":168,"on":false},{"x":167,"y":92,"on":true},{"x":442,"y":92,"on":true}] + ] + }, + "uni052B": { + "advanceWidth": 1096, + "contours": [ + [{"x":467,"y":539,"on":true},{"x":467,"y":318,"on":true},{"x":665,"y":318,"on":true},{"x":665,"y":539,"on":true},{"x":768,"y":539,"on":true},{"x":768,"y":279,"on":true},{"x":961,"y":539,"on":true},{"x":1073,"y":539,"on":true},{"x":874,"y":281,"on":true},{"x":1089,"y":0,"on":true},{"x":973,"y":0,"on":true},{"x":768,"y":275,"on":true},{"x":768,"y":0,"on":true},{"x":665,"y":0,"on":true},{"x":665,"y":244,"on":true},{"x":467,"y":244,"on":true},{"x":467,"y":84,"on":true},{"x":538,"y":84,"on":true},{"x":538,"y":-189,"on":true},{"x":441,"y":-189,"on":true},{"x":441,"y":0,"on":true},{"x":111,"y":0,"on":true},{"x":111,"y":-189,"on":true},{"x":14,"y":-189,"on":true},{"x":14,"y":84,"on":true},{"x":58,"y":84,"on":true},{"x":114,"y":176,"on":false},{"x":170,"y":417,"on":false},{"x":174,"y":539,"on":true}], + [{"x":366,"y":458,"on":true},{"x":262,"y":458,"on":true},{"x":255,"y":362,"on":false},{"x":206,"y":163,"on":false},{"x":163,"y":84,"on":true},{"x":366,"y":84,"on":true}] + ] + }, + "uni052C": { + "advanceWidth": 657, + "contours": [ + [{"x":5,"y":-196,"on":true},{"x":5,"y":90,"on":true},{"x":104,"y":90,"on":true},{"x":122,"y":124,"on":false},{"x":155,"y":208,"on":false},{"x":170,"y":253,"on":true},{"x":107,"y":266,"on":false},{"x":39,"y":355,"on":false},{"x":39,"y":429,"on":true},{"x":39,"y":714,"on":true},{"x":136,"y":714,"on":true},{"x":136,"y":448,"on":true},{"x":136,"y":362,"on":false},{"x":204,"y":342,"on":true},{"x":230,"y":434,"on":false},{"x":260,"y":626,"on":false},{"x":265,"y":714,"on":true},{"x":560,"y":714,"on":true},{"x":560,"y":90,"on":true},{"x":636,"y":90,"on":true},{"x":636,"y":-196,"on":true},{"x":536,"y":-196,"on":true},{"x":536,"y":0,"on":true},{"x":106,"y":0,"on":true},{"x":106,"y":-196,"on":true}], + [{"x":294,"y":332,"on":true},{"x":339,"y":334,"on":false},{"x":411,"y":352,"on":false},{"x":455,"y":371,"on":true},{"x":455,"y":624,"on":true},{"x":344,"y":624,"on":true},{"x":340,"y":556,"on":false},{"x":313,"y":406,"on":false}], + [{"x":208,"y":90,"on":true},{"x":456,"y":90,"on":true},{"x":456,"y":292,"on":true},{"x":404,"y":270,"on":false},{"x":312,"y":248,"on":false},{"x":267,"y":246,"on":true},{"x":254,"y":202,"on":false},{"x":224,"y":123,"on":false}] + ] + }, + "uni052D": { + "advanceWidth": 570, + "contours": [ + [{"x":15,"y":-189,"on":true},{"x":15,"y":83,"on":true},{"x":92,"y":83,"on":true},{"x":118,"y":129,"on":false},{"x":140,"y":187,"on":true},{"x":23,"y":213,"on":false},{"x":23,"y":363,"on":true},{"x":23,"y":539,"on":true},{"x":109,"y":539,"on":true},{"x":109,"y":371,"on":true},{"x":109,"y":327,"on":false},{"x":136,"y":276,"on":false},{"x":167,"y":265,"on":true},{"x":185,"y":327,"on":false},{"x":205,"y":466,"on":false},{"x":208,"y":539,"on":true},{"x":483,"y":539,"on":true},{"x":483,"y":83,"on":true},{"x":552,"y":83,"on":true},{"x":552,"y":-189,"on":true},{"x":459,"y":-189,"on":true},{"x":459,"y":0,"on":true},{"x":107,"y":0,"on":true},{"x":107,"y":-189,"on":true}], + [{"x":252,"y":259,"on":true},{"x":318,"y":263,"on":false},{"x":381,"y":313,"on":true},{"x":381,"y":457,"on":true},{"x":281,"y":457,"on":true},{"x":278,"y":403,"on":false},{"x":264,"y":304,"on":false}], + [{"x":189,"y":83,"on":true},{"x":380,"y":83,"on":true},{"x":380,"y":240,"on":true},{"x":348,"y":213,"on":false},{"x":273,"y":186,"on":false},{"x":230,"y":183,"on":true},{"x":213,"y":130,"on":false}] + ] + }, + "uni052E": { + "advanceWidth": 671, + "contours": [ + [{"x":650,"y":89,"on":true},{"x":650,"y":-196,"on":true},{"x":549,"y":-196,"on":true},{"x":549,"y":0,"on":true},{"x":455,"y":0,"on":true},{"x":455,"y":621,"on":true},{"x":279,"y":621,"on":true},{"x":273,"y":567,"on":false},{"x":260,"y":445,"on":false},{"x":245,"y":327,"on":false},{"x":230,"y":223,"on":false},{"x":223,"y":187,"on":true},{"x":205,"y":89,"on":false},{"x":138,"y":-10,"on":false},{"x":64,"y":-10,"on":true},{"x":27,"y":-10,"on":false},{"x":2,"y":1,"on":true},{"x":2,"y":90,"on":true},{"x":22,"y":79,"on":false},{"x":49,"y":79,"on":true},{"x":85,"y":79,"on":false},{"x":117,"y":158,"on":false},{"x":128,"y":228,"on":true},{"x":134,"y":267,"on":false},{"x":155,"y":417,"on":false},{"x":178,"y":610,"on":false},{"x":190,"y":714,"on":true},{"x":560,"y":714,"on":true},{"x":560,"y":89,"on":true}] + ] + }, + "uni052F": { + "advanceWidth": 565, + "contours": [ + [{"x":548,"y":79,"on":true},{"x":548,"y":-189,"on":true},{"x":456,"y":-189,"on":true},{"x":456,"y":0,"on":true},{"x":366,"y":0,"on":true},{"x":366,"y":454,"on":true},{"x":235,"y":454,"on":true},{"x":224,"y":290,"on":false},{"x":184,"y":86,"on":false},{"x":114,"y":-8,"on":false},{"x":57,"y":-8,"on":true},{"x":24,"y":-8,"on":false},{"x":4,"y":2,"on":true},{"x":4,"y":83,"on":true},{"x":17,"y":78,"on":false},{"x":34,"y":78,"on":true},{"x":64,"y":78,"on":false},{"x":106,"y":173,"on":false},{"x":135,"y":376,"on":false},{"x":145,"y":539,"on":true},{"x":468,"y":539,"on":true},{"x":468,"y":79,"on":true}] + ] + }, + "uni1AB0": { + "advanceWidth": 0, + "references": [ + {"glyph":"circumflex","x":-358,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"circumflex","x":-51,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1AB1": { + "advanceWidth": 0, + "contours": [ + [{"x":-1,"y":607,"on":true},{"x":-50,"y":607,"on":false},{"x":-111,"y":666,"on":false},{"x":-111,"y":715,"on":true},{"x":-111,"y":764,"on":false},{"x":-50,"y":824,"on":false},{"x":-1,"y":824,"on":true},{"x":48,"y":824,"on":false},{"x":111,"y":765,"on":false},{"x":111,"y":716,"on":true},{"x":111,"y":666,"on":false},{"x":48,"y":607,"on":false}], + [{"x":-1,"y":662,"on":true},{"x":22,"y":662,"on":false},{"x":52,"y":690,"on":false},{"x":52,"y":715,"on":true},{"x":52,"y":740,"on":false},{"x":22,"y":769,"on":false},{"x":-1,"y":769,"on":true},{"x":-24,"y":769,"on":false},{"x":-53,"y":740,"on":false},{"x":-53,"y":715,"on":true},{"x":-53,"y":690,"on":false},{"x":-26,"y":662,"on":false}], + [{"x":-217,"y":650,"on":true},{"x":-240,"y":650,"on":false},{"x":-268,"y":678,"on":false},{"x":-268,"y":706,"on":true},{"x":-268,"y":735,"on":false},{"x":-240,"y":763,"on":false},{"x":-217,"y":763,"on":true},{"x":-193,"y":763,"on":false},{"x":-165,"y":734,"on":false},{"x":-165,"y":706,"on":true},{"x":-165,"y":678,"on":false},{"x":-193,"y":650,"on":false}], + [{"x":217,"y":650,"on":true},{"x":193,"y":650,"on":false},{"x":165,"y":678,"on":false},{"x":165,"y":706,"on":true},{"x":165,"y":763,"on":false},{"x":217,"y":763,"on":true},{"x":240,"y":763,"on":false},{"x":269,"y":734,"on":false},{"x":269,"y":706,"on":true},{"x":269,"y":678,"on":false},{"x":240,"y":650,"on":false}] + ] + }, + "uni1AB2": { + "advanceWidth": 0, + "contours": [ + [{"x":112,"y":600,"on":true},{"x":74,"y":600,"on":false},{"x":21,"y":642,"on":false},{"x":-1,"y":674,"on":true},{"x":-22,"y":646,"on":false},{"x":-76,"y":604,"on":false},{"x":-110,"y":604,"on":true},{"x":-160,"y":604,"on":false},{"x":-224,"y":668,"on":false},{"x":-224,"y":723,"on":true},{"x":-224,"y":772,"on":false},{"x":-162,"y":842,"on":false},{"x":-110,"y":842,"on":true},{"x":-76,"y":842,"on":false},{"x":-22,"y":803,"on":false},{"x":1,"y":769,"on":true},{"x":21,"y":798,"on":false},{"x":74,"y":841,"on":false},{"x":112,"y":841,"on":true},{"x":162,"y":841,"on":false},{"x":225,"y":774,"on":false},{"x":225,"y":721,"on":true},{"x":225,"y":689,"on":false},{"x":196,"y":634,"on":false},{"x":146,"y":600,"on":false}], + [{"x":-108,"y":657,"on":true},{"x":-66,"y":657,"on":false},{"x":-30,"y":724,"on":true},{"x":-48,"y":756,"on":false},{"x":-84,"y":789,"on":false},{"x":-109,"y":789,"on":true},{"x":-137,"y":789,"on":false},{"x":-170,"y":750,"on":false},{"x":-170,"y":722,"on":true},{"x":-170,"y":696,"on":false},{"x":-139,"y":657,"on":false}], + [{"x":108,"y":656,"on":true},{"x":135,"y":656,"on":false},{"x":169,"y":694,"on":false},{"x":169,"y":722,"on":true},{"x":169,"y":750,"on":false},{"x":135,"y":787,"on":false},{"x":107,"y":787,"on":true},{"x":67,"y":787,"on":false},{"x":29,"y":722,"on":true},{"x":47,"y":690,"on":false},{"x":86,"y":656,"on":false}] + ] + }, + "uni1AB3": { + "advanceWidth": 0, + "contours": [ + [{"x":28,"y":848,"on":true},{"x":28,"y":694,"on":true},{"x":45,"y":704,"on":false},{"x":91,"y":729,"on":false},{"x":115,"y":736,"on":true},{"x":115,"y":696,"on":true},{"x":42,"y":646,"on":false},{"x":9,"y":587,"on":true},{"x":-9,"y":587,"on":true},{"x":-26,"y":616,"on":false},{"x":-79,"y":671,"on":false},{"x":-115,"y":696,"on":true},{"x":-115,"y":736,"on":true},{"x":-90,"y":728,"on":false},{"x":-44,"y":704,"on":false},{"x":-28,"y":694,"on":true},{"x":-28,"y":848,"on":true}] + ] + }, + "uni1AB4": { + "advanceWidth": 0, + "contours": [ + [{"x":-50,"y":837,"on":true},{"x":-50,"y":866,"on":false},{"x":-22,"y":892,"on":false},{"x":0,"y":892,"on":true},{"x":22,"y":892,"on":false},{"x":52,"y":865,"on":false},{"x":52,"y":837,"on":true},{"x":52,"y":810,"on":false},{"x":22,"y":783,"on":false},{"x":0,"y":783,"on":true},{"x":-22,"y":783,"on":false},{"x":-50,"y":810,"on":false}], + [{"x":-143,"y":682,"on":true},{"x":-143,"y":710,"on":false},{"x":-115,"y":736,"on":false},{"x":-93,"y":736,"on":true},{"x":-70,"y":736,"on":false},{"x":-42,"y":709,"on":false},{"x":-42,"y":682,"on":true},{"x":-42,"y":655,"on":false},{"x":-70,"y":627,"on":false},{"x":-93,"y":627,"on":true},{"x":-115,"y":627,"on":false},{"x":-143,"y":654,"on":false}], + [{"x":41,"y":682,"on":true},{"x":41,"y":710,"on":false},{"x":70,"y":736,"on":false},{"x":93,"y":736,"on":true},{"x":115,"y":736,"on":false},{"x":144,"y":709,"on":false},{"x":144,"y":682,"on":true},{"x":144,"y":655,"on":false},{"x":115,"y":627,"on":false},{"x":93,"y":627,"on":true},{"x":70,"y":627,"on":false},{"x":41,"y":654,"on":false}] + ] + }, + "uni1AB5": { + "advanceWidth": 0, + "contours": [ + [{"x":-29,"y":-93,"on":true},{"x":-84,"y":-149,"on":true},{"x":-28,"y":-205,"on":true},{"x":-67,"y":-244,"on":true},{"x":-122,"y":-187,"on":true},{"x":-180,"y":-246,"on":true},{"x":-216,"y":-210,"on":true},{"x":-158,"y":-152,"on":true},{"x":-214,"y":-96,"on":true},{"x":-175,"y":-57,"on":true},{"x":-121,"y":-113,"on":true},{"x":-65,"y":-57,"on":true}], + [{"x":212,"y":-94,"on":true},{"x":157,"y":-150,"on":true},{"x":213,"y":-206,"on":true},{"x":175,"y":-244,"on":true},{"x":119,"y":-187,"on":true},{"x":62,"y":-246,"on":true},{"x":25,"y":-209,"on":true},{"x":82,"y":-151,"on":true},{"x":27,"y":-96,"on":true},{"x":65,"y":-57,"on":true},{"x":119,"y":-113,"on":true},{"x":176,"y":-57,"on":true}] + ] + }, + "uni1AB6": { + "advanceWidth": 0, + "contours": [ + [{"x":-500,"y":-268,"on":true},{"x":-498,"y":-238,"on":false},{"x":-482,"y":-167,"on":false},{"x":-449,"y":-105,"on":false},{"x":-393,"y":-65,"on":false},{"x":-350,"y":-65,"on":true},{"x":-317,"y":-65,"on":false},{"x":-273,"y":-93,"on":false},{"x":-243,"y":-134,"on":false},{"x":-219,"y":-175,"on":false},{"x":-191,"y":-203,"on":false},{"x":-171,"y":-203,"on":true},{"x":-148,"y":-203,"on":false},{"x":-123,"y":-175,"on":false},{"x":-103,"y":-134,"on":false},{"x":-79,"y":-93,"on":false},{"x":-37,"y":-65,"on":false},{"x":0,"y":-65,"on":true},{"x":37,"y":-65,"on":false},{"x":79,"y":-93,"on":false},{"x":103,"y":-134,"on":false},{"x":123,"y":-175,"on":false},{"x":148,"y":-203,"on":false},{"x":171,"y":-203,"on":true},{"x":191,"y":-203,"on":false},{"x":219,"y":-175,"on":false},{"x":244,"y":-134,"on":false},{"x":274,"y":-93,"on":false},{"x":318,"y":-65,"on":false},{"x":352,"y":-65,"on":true},{"x":404,"y":-65,"on":false},{"x":467,"y":-125,"on":false},{"x":496,"y":-218,"on":false},{"x":500,"y":-268,"on":true},{"x":439,"y":-268,"on":true},{"x":432,"y":-210,"on":false},{"x":392,"y":-130,"on":false},{"x":356,"y":-130,"on":true},{"x":334,"y":-130,"on":false},{"x":305,"y":-158,"on":false},{"x":280,"y":-199,"on":false},{"x":251,"y":-240,"on":false},{"x":206,"y":-268,"on":false},{"x":171,"y":-268,"on":true},{"x":133,"y":-268,"on":false},{"x":88,"y":-240,"on":false},{"x":62,"y":-199,"on":false},{"x":44,"y":-158,"on":false},{"x":20,"y":-130,"on":false},{"x":0,"y":-130,"on":true},{"x":-20,"y":-130,"on":false},{"x":-43,"y":-158,"on":false},{"x":-62,"y":-199,"on":false},{"x":-89,"y":-240,"on":false},{"x":-133,"y":-268,"on":false},{"x":-171,"y":-268,"on":true},{"x":-206,"y":-268,"on":false},{"x":-251,"y":-240,"on":false},{"x":-281,"y":-199,"on":false},{"x":-306,"y":-158,"on":false},{"x":-335,"y":-130,"on":false},{"x":-357,"y":-130,"on":true},{"x":-382,"y":-130,"on":false},{"x":-416,"y":-170,"on":false},{"x":-436,"y":-233,"on":false},{"x":-440,"y":-268,"on":true}] + ] + }, + "uni1AB7": { + "advanceWidth": 0, + "contours": [ + [{"x":60,"y":-241,"on":true},{"x":-59,"y":-241,"on":false},{"x":-59,"y":-140,"on":true},{"x":-59,"y":-25,"on":true},{"x":19,"y":-25,"on":true},{"x":19,"y":-122,"on":true},{"x":19,"y":-150,"on":false},{"x":40,"y":-176,"on":false},{"x":60,"y":-178,"on":true}] + ] + }, + "uni1AB8": { + "advanceWidth": 0, + "contours": [ + [{"x":-23,"y":-241,"on":true},{"x":-142,"y":-241,"on":false},{"x":-142,"y":-140,"on":true},{"x":-142,"y":-25,"on":true},{"x":-64,"y":-25,"on":true},{"x":-64,"y":-122,"on":true},{"x":-64,"y":-150,"on":false},{"x":-43,"y":-176,"on":false},{"x":-23,"y":-178,"on":true}], + [{"x":142,"y":-241,"on":true},{"x":23,"y":-241,"on":false},{"x":23,"y":-140,"on":true},{"x":23,"y":-25,"on":true},{"x":101,"y":-25,"on":true},{"x":101,"y":-122,"on":true},{"x":101,"y":-150,"on":false},{"x":122,"y":-176,"on":false},{"x":142,"y":-178,"on":true}] + ] + }, + "uni1AB9": { + "advanceWidth": 0, + "contours": [ + [{"x":23,"y":40,"on":true},{"x":87,"y":40,"on":true},{"x":-37,"y":-240,"on":true},{"x":-102,"y":-240,"on":true}] + ] + }, + "uni1ABA": { + "advanceWidth": 0, + "contours": [ + [{"x":23,"y":40,"on":true},{"x":87,"y":40,"on":true},{"x":5,"y":-145,"on":true},{"x":12,"y":-158,"on":false},{"x":12,"y":-178,"on":true},{"x":12,"y":-206,"on":false},{"x":-18,"y":-235,"on":false},{"x":-41,"y":-235,"on":true},{"x":-64,"y":-235,"on":false},{"x":-94,"y":-206,"on":false},{"x":-94,"y":-178,"on":true},{"x":-94,"y":-150,"on":false},{"x":-69,"y":-121,"on":false},{"x":-48,"y":-119,"on":true}] + ] + }, + "uni1ABB": { + "advanceWidth": 0, + "contours": [ + [{"x":-211,"y":723,"on":true},{"x":-211,"y":754,"on":false},{"x":-188,"y":812,"on":false},{"x":-163,"y":835,"on":true},{"x":-104,"y":835,"on":true},{"x":-149,"y":787,"on":false},{"x":-149,"y":723,"on":true},{"x":-149,"y":661,"on":false},{"x":-104,"y":611,"on":true},{"x":-163,"y":611,"on":true},{"x":-188,"y":634,"on":false},{"x":-211,"y":692,"on":false}], + [{"x":210,"y":722,"on":true},{"x":210,"y":690,"on":false},{"x":186,"y":634,"on":false},{"x":161,"y":611,"on":true},{"x":103,"y":611,"on":true},{"x":149,"y":659,"on":false},{"x":149,"y":722,"on":true},{"x":149,"y":786,"on":false},{"x":103,"y":835,"on":true},{"x":161,"y":835,"on":true},{"x":186,"y":812,"on":false},{"x":210,"y":754,"on":false}] + ] + }, + "uni1ABC": { + "advanceWidth": 0, + "contours": [ + [{"x":-335,"y":723,"on":true},{"x":-335,"y":754,"on":false},{"x":-312,"y":812,"on":false},{"x":-287,"y":835,"on":true},{"x":-229,"y":835,"on":true},{"x":-274,"y":787,"on":false},{"x":-274,"y":723,"on":true},{"x":-274,"y":661,"on":false},{"x":-229,"y":611,"on":true},{"x":-287,"y":611,"on":true},{"x":-312,"y":634,"on":false},{"x":-335,"y":692,"on":false}], + [{"x":335,"y":722,"on":true},{"x":335,"y":690,"on":false},{"x":311,"y":634,"on":false},{"x":286,"y":611,"on":true},{"x":228,"y":611,"on":true},{"x":273,"y":659,"on":false},{"x":273,"y":722,"on":true},{"x":273,"y":785,"on":false},{"x":228,"y":835,"on":true},{"x":286,"y":835,"on":true},{"x":311,"y":812,"on":false},{"x":335,"y":754,"on":false}], + [{"x":-211,"y":723,"on":true},{"x":-211,"y":754,"on":false},{"x":-188,"y":812,"on":false},{"x":-163,"y":835,"on":true},{"x":-104,"y":835,"on":true},{"x":-149,"y":787,"on":false},{"x":-149,"y":723,"on":true},{"x":-149,"y":661,"on":false},{"x":-104,"y":611,"on":true},{"x":-163,"y":611,"on":true},{"x":-188,"y":634,"on":false},{"x":-211,"y":692,"on":false}], + [{"x":210,"y":722,"on":true},{"x":210,"y":690,"on":false},{"x":186,"y":634,"on":false},{"x":161,"y":611,"on":true},{"x":103,"y":611,"on":true},{"x":149,"y":659,"on":false},{"x":149,"y":722,"on":true},{"x":149,"y":786,"on":false},{"x":103,"y":835,"on":true},{"x":161,"y":835,"on":true},{"x":186,"y":812,"on":false},{"x":210,"y":754,"on":false}] + ] + }, + "uni1ABD": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni1ABB","x":0,"y":-849,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni1ABE": { + "advanceWidth": 0, + "contours": [ + [{"x":-411,"y":219,"on":true},{"x":-411,"y":250,"on":false},{"x":-387,"y":308,"on":false},{"x":-362,"y":331,"on":true},{"x":-304,"y":331,"on":true},{"x":-349,"y":283,"on":false},{"x":-349,"y":219,"on":true},{"x":-349,"y":157,"on":false},{"x":-304,"y":107,"on":true},{"x":-362,"y":107,"on":true},{"x":-411,"y":153,"on":false}], + [{"x":410,"y":218,"on":true},{"x":410,"y":186,"on":false},{"x":386,"y":130,"on":false},{"x":361,"y":107,"on":true},{"x":303,"y":107,"on":true},{"x":349,"y":155,"on":false},{"x":349,"y":218,"on":true},{"x":349,"y":282,"on":false},{"x":303,"y":331,"on":true},{"x":361,"y":331,"on":true},{"x":386,"y":308,"on":false},{"x":410,"y":250,"on":false}] + ] + }, + "uni1C80": { + "advanceWidth": 525, + "contours": [ + [{"x":483,"y":154,"on":true},{"x":483,"y":81,"on":false},{"x":383,"y":-10,"on":false},{"x":290,"y":-10,"on":true},{"x":171,"y":-10,"on":false},{"x":47,"y":178,"on":false},{"x":47,"y":369,"on":true},{"x":47,"y":490,"on":false},{"x":115,"y":669,"on":false},{"x":238,"y":768,"on":false},{"x":320,"y":768,"on":true},{"x":391,"y":768,"on":false},{"x":467,"y":692,"on":false},{"x":467,"y":638,"on":true},{"x":467,"y":574,"on":false},{"x":377,"y":505,"on":false},{"x":311,"y":505,"on":true},{"x":238,"y":505,"on":false},{"x":170,"y":532,"on":true},{"x":150,"y":458,"on":false},{"x":150,"y":372,"on":true},{"x":151,"y":319,"on":false},{"x":155,"y":276,"on":true},{"x":185,"y":292,"on":false},{"x":268,"y":313,"on":false},{"x":305,"y":313,"on":true},{"x":388,"y":313,"on":false},{"x":483,"y":230,"on":false}], + [{"x":319,"y":703,"on":true},{"x":279,"y":703,"on":false},{"x":215,"y":645,"on":false},{"x":193,"y":596,"on":true},{"x":218,"y":583,"on":false},{"x":282,"y":571,"on":false},{"x":308,"y":571,"on":true},{"x":390,"y":571,"on":false},{"x":390,"y":638,"on":true},{"x":390,"y":668,"on":false},{"x":353,"y":703,"on":false}], + [{"x":289,"y":236,"on":true},{"x":260,"y":236,"on":false},{"x":191,"y":218,"on":false},{"x":167,"y":204,"on":true},{"x":183,"y":141,"on":false},{"x":243,"y":74,"on":false},{"x":289,"y":74,"on":true},{"x":339,"y":74,"on":false},{"x":386,"y":118,"on":false},{"x":386,"y":155,"on":true},{"x":386,"y":193,"on":false},{"x":338,"y":236,"on":false}] + ] + }, + "uni1C81": { + "advanceWidth": 556, + "contours": [ + [{"x":467,"y":539,"on":true},{"x":467,"y":124,"on":true},{"x":538,"y":124,"on":true},{"x":538,"y":-240,"on":true},{"x":441,"y":-240,"on":true},{"x":441,"y":40,"on":true},{"x":111,"y":40,"on":true},{"x":111,"y":-240,"on":true},{"x":14,"y":-240,"on":true},{"x":14,"y":124,"on":true},{"x":58,"y":124,"on":true},{"x":114,"y":208,"on":false},{"x":170,"y":427,"on":false},{"x":174,"y":539,"on":true}], + [{"x":366,"y":458,"on":true},{"x":262,"y":458,"on":true},{"x":255,"y":372,"on":false},{"x":206,"y":196,"on":false},{"x":163,"y":124,"on":true},{"x":366,"y":124,"on":true}] + ] + }, + "uni1C82": { + "advanceWidth": 429, + "contours": [ + [{"x":382,"y":271,"on":true},{"x":382,"y":122,"on":false},{"x":294,"y":-10,"on":false},{"x":213,"y":-10,"on":true},{"x":136,"y":-10,"on":false},{"x":48,"y":120,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":421,"on":false},{"x":135,"y":549,"on":false},{"x":216,"y":549,"on":true},{"x":266,"y":549,"on":false},{"x":340,"y":496,"on":false},{"x":382,"y":374,"on":false}], + [{"x":152,"y":270,"on":true},{"x":152,"y":162,"on":false},{"x":182,"y":75,"on":false},{"x":215,"y":75,"on":true},{"x":247,"y":75,"on":false},{"x":277,"y":162,"on":false},{"x":277,"y":271,"on":true},{"x":277,"y":379,"on":false},{"x":247,"y":464,"on":false},{"x":214,"y":464,"on":true},{"x":182,"y":464,"on":false},{"x":152,"y":379,"on":false}] + ] + }, + "uni1C83": { + "advanceWidth": 562, + "contours": [ + [{"x":345,"y":-10,"on":true},{"x":208,"y":-10,"on":false},{"x":48,"y":123,"on":false},{"x":48,"y":266,"on":true},{"x":48,"y":366,"on":false},{"x":124,"y":490,"on":false},{"x":260,"y":549,"on":false},{"x":348,"y":549,"on":true},{"x":405,"y":549,"on":false},{"x":502,"y":531,"on":false},{"x":534,"y":518,"on":true},{"x":502,"y":432,"on":true},{"x":467,"y":446,"on":false},{"x":387,"y":459,"on":false},{"x":351,"y":459,"on":true},{"x":251,"y":459,"on":false},{"x":157,"y":362,"on":false},{"x":157,"y":267,"on":true},{"x":157,"y":175,"on":false},{"x":250,"y":79,"on":false},{"x":339,"y":79,"on":true},{"x":396,"y":79,"on":false},{"x":482,"y":99,"on":false},{"x":520,"y":115,"on":true},{"x":520,"y":23,"on":true},{"x":486,"y":6,"on":false},{"x":404,"y":-10,"on":false}] + ] + }, + "uni1C84": { + "advanceWidth": 360, + "contours": [ + [{"x":315,"y":714,"on":true},{"x":204,"y":0,"on":true},{"x":102,"y":0,"on":true},{"x":200,"y":630,"on":true},{"x":-68,"y":630,"on":true},{"x":-68,"y":714,"on":true}] + ] + }, + "uni1C85": { + "advanceWidth": 828, + "contours": [ + [{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":752,"y":539,"on":true},{"x":752,"y":0,"on":true},{"x":650,"y":0,"on":true},{"x":650,"y":455,"on":true},{"x":465,"y":455,"on":true},{"x":465,"y":0,"on":true},{"x":363,"y":0,"on":true},{"x":363,"y":455,"on":true},{"x":178,"y":455,"on":true},{"x":178,"y":0,"on":true}] + ] + }, + "uni1C86": { + "advanceWidth": 567, + "contours": [ + [{"x":210,"y":760,"on":true},{"x":210,"y":322,"on":true},{"x":314,"y":322,"on":true},{"x":525,"y":322,"on":false},{"x":525,"y":166,"on":true},{"x":525,"y":88,"on":false},{"x":424,"y":0,"on":false},{"x":317,"y":0,"on":true},{"x":108,"y":0,"on":true},{"x":108,"y":675,"on":true},{"x":-42,"y":675,"on":true},{"x":-42,"y":760,"on":true}], + [{"x":313,"y":242,"on":true},{"x":210,"y":242,"on":true},{"x":210,"y":78,"on":true},{"x":315,"y":78,"on":true},{"x":365,"y":78,"on":false},{"x":423,"y":118,"on":false},{"x":423,"y":162,"on":true},{"x":423,"y":205,"on":false},{"x":368,"y":242,"on":false}] + ] + }, + "uni1C87": { + "advanceWidth": 570, + "contours": [ + [{"x":213,"y":760,"on":true},{"x":213,"y":539,"on":true},{"x":356,"y":539,"on":true},{"x":356,"y":460,"on":true},{"x":213,"y":460,"on":true},{"x":213,"y":321,"on":true},{"x":318,"y":321,"on":true},{"x":528,"y":321,"on":false},{"x":528,"y":166,"on":true},{"x":528,"y":88,"on":false},{"x":427,"y":0,"on":false},{"x":320,"y":0,"on":true},{"x":111,"y":0,"on":true},{"x":111,"y":460,"on":true},{"x":7,"y":460,"on":true},{"x":7,"y":539,"on":true},{"x":111,"y":539,"on":true},{"x":111,"y":760,"on":true}], + [{"x":314,"y":242,"on":true},{"x":213,"y":242,"on":true},{"x":213,"y":78,"on":true},{"x":315,"y":78,"on":true},{"x":365,"y":78,"on":false},{"x":426,"y":118,"on":false},{"x":426,"y":162,"on":true},{"x":426,"y":205,"on":false},{"x":370,"y":242,"on":false}] + ] + }, + "uni1C88": { + "advanceWidth": 556, + "contours": [ + [{"x":510,"y":237,"on":true},{"x":510,"y":166,"on":false},{"x":460,"y":54,"on":false},{"x":358,"y":-10,"on":false},{"x":278,"y":-10,"on":true},{"x":198,"y":-10,"on":false},{"x":96,"y":55,"on":false},{"x":46,"y":166,"on":false},{"x":46,"y":237,"on":true},{"x":46,"y":329,"on":false},{"x":122,"y":452,"on":false},{"x":200,"y":473,"on":true},{"x":44,"y":760,"on":true},{"x":152,"y":760,"on":true},{"x":279,"y":498,"on":true},{"x":405,"y":760,"on":true},{"x":512,"y":760,"on":true},{"x":355,"y":474,"on":true},{"x":434,"y":452,"on":false},{"x":510,"y":325,"on":false}], + [{"x":151,"y":240,"on":true},{"x":151,"y":166,"on":false},{"x":214,"y":76,"on":false},{"x":278,"y":76,"on":true},{"x":343,"y":76,"on":false},{"x":405,"y":165,"on":false},{"x":405,"y":240,"on":true},{"x":405,"y":316,"on":false},{"x":342,"y":404,"on":false},{"x":279,"y":404,"on":true},{"x":214,"y":404,"on":false},{"x":151,"y":314,"on":false}] + ] + }, + "uni1D00": { + "advanceWidth": 486, + "contours": [ + [{"x":7,"y":0,"on":true},{"x":192,"y":540,"on":true},{"x":296,"y":540,"on":true},{"x":479,"y":0,"on":true},{"x":378,"y":0,"on":true},{"x":329,"y":151,"on":true},{"x":155,"y":151,"on":true},{"x":107,"y":0,"on":true}], + [{"x":179,"y":228,"on":true},{"x":307,"y":228,"on":true},{"x":264,"y":365,"on":true},{"x":258,"y":385,"on":false},{"x":247,"y":434,"on":false},{"x":244,"y":453,"on":true},{"x":240,"y":434,"on":false},{"x":229,"y":386,"on":false},{"x":223,"y":364,"on":true}] + ] + }, + "uni1D01": { + "advanceWidth": 665, + "contours": [ + [{"x":614,"y":0,"on":true},{"x":325,"y":0,"on":true},{"x":325,"y":151,"on":true},{"x":168,"y":151,"on":true},{"x":105,"y":0,"on":true},{"x":4,"y":0,"on":true},{"x":235,"y":539,"on":true},{"x":614,"y":539,"on":true},{"x":614,"y":461,"on":true},{"x":420,"y":461,"on":true},{"x":420,"y":319,"on":true},{"x":602,"y":319,"on":true},{"x":602,"y":241,"on":true},{"x":420,"y":241,"on":true},{"x":420,"y":78,"on":true},{"x":614,"y":78,"on":true}], + [{"x":200,"y":229,"on":true},{"x":325,"y":229,"on":true},{"x":325,"y":461,"on":true},{"x":295,"y":461,"on":true}] + ] + }, + "uni1D02": { + "advanceWidth": 800, + "contours": [ + [{"x":759,"y":386,"on":true},{"x":759,"y":222,"on":false},{"x":541,"y":214,"on":true},{"x":460,"y":211,"on":true},{"x":460,"y":176,"on":true},{"x":460,"y":120,"on":false},{"x":508,"y":71,"on":false},{"x":551,"y":71,"on":true},{"x":584,"y":71,"on":false},{"x":651,"y":92,"on":false},{"x":684,"y":109,"on":true},{"x":715,"y":35,"on":true},{"x":680,"y":16,"on":false},{"x":591,"y":-10,"on":false},{"x":543,"y":-10,"on":true},{"x":435,"y":-10,"on":false},{"x":396,"y":66,"on":true},{"x":343,"y":-10,"on":false},{"x":245,"y":-10,"on":true},{"x":182,"y":-10,"on":false},{"x":93,"y":51,"on":false},{"x":45,"y":160,"on":false},{"x":45,"y":232,"on":true},{"x":45,"y":292,"on":true},{"x":358,"y":292,"on":true},{"x":355,"y":466,"on":false},{"x":222,"y":466,"on":true},{"x":142,"y":466,"on":false},{"x":70,"y":428,"on":true},{"x":70,"y":513,"on":true},{"x":106,"y":532,"on":false},{"x":180,"y":550,"on":false},{"x":229,"y":550,"on":true},{"x":291,"y":550,"on":false},{"x":390,"y":495,"on":false},{"x":418,"y":442,"on":true},{"x":452,"y":494,"on":false},{"x":536,"y":550,"on":false},{"x":604,"y":550,"on":true},{"x":674,"y":550,"on":false},{"x":759,"y":462,"on":false}], + [{"x":655,"y":386,"on":true},{"x":655,"y":430,"on":false},{"x":613,"y":469,"on":false},{"x":578,"y":469,"on":true},{"x":527,"y":469,"on":false},{"x":461,"y":397,"on":false},{"x":461,"y":328,"on":true},{"x":461,"y":279,"on":true},{"x":521,"y":282,"on":true},{"x":594,"y":285,"on":false},{"x":655,"y":337,"on":false}], + [{"x":357,"y":216,"on":true},{"x":146,"y":216,"on":true},{"x":146,"y":152,"on":false},{"x":195,"y":71,"on":false},{"x":246,"y":71,"on":true},{"x":295,"y":71,"on":false},{"x":352,"y":143,"on":false}] + ] + }, + "uni1D03": { + "advanceWidth": 536, + "contours": [ + [{"x":526,"y":318,"on":true},{"x":526,"y":245,"on":true},{"x":461,"y":245,"on":true},{"x":476,"y":230,"on":false},{"x":494,"y":186,"on":false},{"x":494,"y":159,"on":true},{"x":494,"y":87,"on":false},{"x":396,"y":0,"on":false},{"x":290,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":245,"on":true},{"x":9,"y":245,"on":true},{"x":9,"y":318,"on":true},{"x":75,"y":318,"on":true},{"x":75,"y":539,"on":true},{"x":287,"y":539,"on":true},{"x":372,"y":539,"on":false},{"x":478,"y":476,"on":false},{"x":478,"y":403,"on":true},{"x":478,"y":349,"on":false},{"x":445,"y":318,"on":true}], + [{"x":375,"y":392,"on":true},{"x":375,"y":460,"on":false},{"x":281,"y":460,"on":true},{"x":178,"y":460,"on":true},{"x":178,"y":320,"on":true},{"x":273,"y":320,"on":true},{"x":375,"y":320,"on":false}], + [{"x":389,"y":163,"on":true},{"x":389,"y":205,"on":false},{"x":333,"y":242,"on":false},{"x":280,"y":242,"on":true},{"x":178,"y":242,"on":true},{"x":178,"y":78,"on":true},{"x":281,"y":78,"on":true},{"x":334,"y":78,"on":false},{"x":389,"y":118,"on":false}] + ] + }, + "uni1D04": { + "advanceWidth": 469, + "contours": [ + [{"x":296,"y":467,"on":true},{"x":228,"y":467,"on":false},{"x":152,"y":364,"on":false},{"x":152,"y":269,"on":true},{"x":152,"y":174,"on":false},{"x":224,"y":72,"on":false},{"x":297,"y":72,"on":true},{"x":327,"y":72,"on":false},{"x":389,"y":86,"on":false},{"x":422,"y":100,"on":true},{"x":422,"y":19,"on":true},{"x":360,"y":-8,"on":false},{"x":287,"y":-8,"on":true},{"x":171,"y":-8,"on":false},{"x":52,"y":138,"on":false},{"x":52,"y":269,"on":true},{"x":52,"y":352,"on":false},{"x":108,"y":478,"on":false},{"x":216,"y":548,"on":false},{"x":294,"y":548,"on":true},{"x":334,"y":548,"on":false},{"x":408,"y":531,"on":false},{"x":439,"y":515,"on":true},{"x":406,"y":438,"on":true},{"x":380,"y":451,"on":false},{"x":324,"y":467,"on":false}] + ] + }, + "uni1D05": { + "advanceWidth": 546, + "contours": [ + [{"x":493,"y":276,"on":true},{"x":493,"y":139,"on":false},{"x":354,"y":0,"on":false},{"x":229,"y":0,"on":true},{"x":77,"y":0,"on":true},{"x":77,"y":539,"on":true},{"x":243,"y":539,"on":true},{"x":359,"y":539,"on":false},{"x":493,"y":404,"on":false}], + [{"x":393,"y":273,"on":true},{"x":393,"y":369,"on":false},{"x":314,"y":462,"on":false},{"x":237,"y":462,"on":true},{"x":174,"y":462,"on":true},{"x":174,"y":78,"on":true},{"x":227,"y":78,"on":true},{"x":393,"y":78,"on":false}] + ] + }, + "uni1D06": { + "advanceWidth": 546, + "contours": [ + [{"x":243,"y":539,"on":true},{"x":359,"y":539,"on":false},{"x":493,"y":404,"on":false},{"x":493,"y":276,"on":true},{"x":493,"y":139,"on":false},{"x":353,"y":0,"on":false},{"x":228,"y":0,"on":true},{"x":80,"y":0,"on":true},{"x":80,"y":231,"on":true},{"x":27,"y":231,"on":true},{"x":27,"y":307,"on":true},{"x":80,"y":307,"on":true},{"x":80,"y":539,"on":true}], + [{"x":237,"y":462,"on":true},{"x":176,"y":462,"on":true},{"x":176,"y":307,"on":true},{"x":280,"y":307,"on":true},{"x":280,"y":231,"on":true},{"x":176,"y":231,"on":true},{"x":176,"y":78,"on":true},{"x":227,"y":78,"on":true},{"x":393,"y":78,"on":false},{"x":393,"y":273,"on":true},{"x":393,"y":369,"on":false},{"x":313,"y":462,"on":false}] + ] + }, + "uni1D07": { + "advanceWidth": 427, + "contours": [ + [{"x":377,"y":0,"on":true},{"x":77,"y":0,"on":true},{"x":77,"y":539,"on":true},{"x":377,"y":539,"on":true},{"x":377,"y":461,"on":true},{"x":173,"y":461,"on":true},{"x":173,"y":320,"on":true},{"x":364,"y":320,"on":true},{"x":364,"y":242,"on":true},{"x":173,"y":242,"on":true},{"x":173,"y":78,"on":true},{"x":377,"y":78,"on":true}] + ] + }, + "uni1D08": { + "advanceWidth": 457, + "contours": [ + [{"x":212,"y":-10,"on":true},{"x":116,"y":-10,"on":false},{"x":36,"y":27,"on":true},{"x":71,"y":104,"on":true},{"x":105,"y":89,"on":false},{"x":168,"y":72,"on":false},{"x":202,"y":72,"on":true},{"x":302,"y":72,"on":false},{"x":302,"y":141,"on":true},{"x":302,"y":182,"on":false},{"x":234,"y":219,"on":false},{"x":175,"y":219,"on":true},{"x":127,"y":219,"on":true},{"x":127,"y":298,"on":true},{"x":183,"y":298,"on":true},{"x":315,"y":298,"on":false},{"x":315,"y":381,"on":true},{"x":315,"y":426,"on":false},{"x":246,"y":466,"on":false},{"x":193,"y":466,"on":true},{"x":145,"y":466,"on":false},{"x":63,"y":440,"on":false},{"x":32,"y":424,"on":true},{"x":32,"y":514,"on":true},{"x":94,"y":549,"on":false},{"x":202,"y":549,"on":true},{"x":309,"y":549,"on":false},{"x":416,"y":457,"on":false},{"x":416,"y":388,"on":true},{"x":416,"y":330,"on":false},{"x":353,"y":268,"on":false},{"x":305,"y":256,"on":true},{"x":305,"y":251,"on":true},{"x":348,"y":239,"on":false},{"x":399,"y":178,"on":false},{"x":399,"y":131,"on":true},{"x":399,"y":64,"on":false},{"x":294,"y":-10,"on":false}] + ] + }, + "uni1D09": { + "advanceWidth": 261, + "contours": [ + [{"x":182,"y":539,"on":true},{"x":182,"y":0,"on":true},{"x":80,"y":0,"on":true},{"x":80,"y":539,"on":true}], + [{"x":130,"y":-82,"on":true},{"x":156,"y":-82,"on":false},{"x":188,"y":-112,"on":false},{"x":188,"y":-144,"on":true},{"x":188,"y":-176,"on":false},{"x":156,"y":-205,"on":false},{"x":130,"y":-205,"on":true},{"x":104,"y":-205,"on":false},{"x":72,"y":-176,"on":false},{"x":72,"y":-144,"on":true},{"x":72,"y":-112,"on":false},{"x":105,"y":-82,"on":false}] + ] + }, + "uni1D0A": { + "advanceWidth": 323, + "contours": [ + [{"x":105,"y":-10,"on":true},{"x":87,"y":-10,"on":false},{"x":55,"y":-4,"on":false},{"x":43,"y":1,"on":true},{"x":43,"y":81,"on":true},{"x":70,"y":72,"on":false},{"x":95,"y":72,"on":true},{"x":120,"y":72,"on":false},{"x":153,"y":106,"on":false},{"x":153,"y":153,"on":true},{"x":153,"y":539,"on":true},{"x":249,"y":539,"on":true},{"x":249,"y":155,"on":true},{"x":249,"y":71,"on":false},{"x":172,"y":-10,"on":false}] + ] + }, + "uni1D0B": { + "advanceWidth": 484, + "contours": [ + [{"x":77,"y":0,"on":true},{"x":77,"y":539,"on":true},{"x":174,"y":539,"on":true},{"x":174,"y":290,"on":true},{"x":188,"y":310,"on":false},{"x":212,"y":342,"on":false},{"x":220,"y":352,"on":true},{"x":365,"y":539,"on":true},{"x":473,"y":539,"on":true},{"x":290,"y":312,"on":true},{"x":479,"y":0,"on":true},{"x":370,"y":0,"on":true},{"x":223,"y":246,"on":true},{"x":174,"y":201,"on":true},{"x":174,"y":0,"on":true}] + ] + }, + "uni1D0C": { + "advanceWidth": 410, + "contours": [ + [{"x":81,"y":0,"on":true},{"x":81,"y":184,"on":true},{"x":49,"y":162,"on":true},{"x":9,"y":222,"on":true},{"x":81,"y":270,"on":true},{"x":81,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":178,"y":330,"on":true},{"x":257,"y":383,"on":true},{"x":298,"y":323,"on":true},{"x":178,"y":244,"on":true},{"x":178,"y":80,"on":true},{"x":385,"y":80,"on":true},{"x":385,"y":0,"on":true}] + ] + }, + "uni1D0D": { + "advanceWidth": 686, + "contours": [ + [{"x":77,"y":0,"on":true},{"x":77,"y":539,"on":true},{"x":210,"y":539,"on":true},{"x":341,"y":132,"on":true},{"x":343,"y":132,"on":true},{"x":477,"y":539,"on":true},{"x":609,"y":539,"on":true},{"x":609,"y":0,"on":true},{"x":515,"y":0,"on":true},{"x":515,"y":298,"on":true},{"x":515,"y":323,"on":false},{"x":517,"y":380,"on":false},{"x":519,"y":411,"on":true},{"x":515,"y":411,"on":true},{"x":380,"y":0,"on":true},{"x":299,"y":0,"on":true},{"x":168,"y":411,"on":true},{"x":163,"y":411,"on":true},{"x":165,"y":381,"on":false},{"x":167,"y":322,"on":false},{"x":167,"y":296,"on":true},{"x":167,"y":0,"on":true}] + ] + }, + "uni1D0E": { + "advanceWidth": 581, + "contours": [ + [{"x":77,"y":539,"on":true},{"x":169,"y":539,"on":true},{"x":169,"y":254,"on":true},{"x":169,"y":224,"on":false},{"x":166,"y":160,"on":false},{"x":165,"y":132,"on":true},{"x":167,"y":132,"on":true},{"x":394,"y":539,"on":true},{"x":504,"y":539,"on":true},{"x":504,"y":0,"on":true},{"x":413,"y":0,"on":true},{"x":413,"y":282,"on":true},{"x":413,"y":314,"on":false},{"x":416,"y":380,"on":false},{"x":418,"y":407,"on":true},{"x":415,"y":407,"on":true},{"x":187,"y":0,"on":true},{"x":77,"y":0,"on":true}] + ] + }, + "uni1D0F": { + "advanceWidth": 578, + "contours": [ + [{"x":525,"y":271,"on":true},{"x":525,"y":188,"on":false},{"x":473,"y":62,"on":false},{"x":368,"y":-8,"on":false},{"x":288,"y":-8,"on":true},{"x":208,"y":-8,"on":false},{"x":103,"y":62,"on":false},{"x":52,"y":188,"on":false},{"x":52,"y":271,"on":true},{"x":52,"y":398,"on":false},{"x":168,"y":548,"on":false},{"x":290,"y":548,"on":true},{"x":404,"y":548,"on":false},{"x":525,"y":400,"on":false}], + [{"x":153,"y":270,"on":true},{"x":153,"y":176,"on":false},{"x":218,"y":72,"on":false},{"x":289,"y":72,"on":true},{"x":360,"y":72,"on":false},{"x":425,"y":176,"on":false},{"x":425,"y":271,"on":true},{"x":425,"y":366,"on":false},{"x":360,"y":468,"on":false},{"x":290,"y":468,"on":true},{"x":218,"y":468,"on":false},{"x":153,"y":365,"on":false}] + ] + }, + "uni1D10": { + "advanceWidth": 463, + "contours": [ + [{"x":179,"y":-8,"on":true},{"x":141,"y":-8,"on":false},{"x":76,"y":6,"on":false},{"x":46,"y":19,"on":true},{"x":46,"y":99,"on":true},{"x":78,"y":86,"on":false},{"x":139,"y":72,"on":false},{"x":169,"y":72,"on":true},{"x":236,"y":72,"on":false},{"x":311,"y":174,"on":false},{"x":311,"y":269,"on":true},{"x":311,"y":363,"on":false},{"x":239,"y":467,"on":false},{"x":170,"y":467,"on":true},{"x":142,"y":467,"on":false},{"x":88,"y":450,"on":false},{"x":62,"y":438,"on":true},{"x":30,"y":515,"on":true},{"x":61,"y":531,"on":false},{"x":136,"y":548,"on":false},{"x":180,"y":548,"on":true},{"x":296,"y":548,"on":false},{"x":411,"y":396,"on":false},{"x":411,"y":269,"on":true},{"x":411,"y":140,"on":false},{"x":292,"y":-8,"on":false}] + ] + }, + "uni1D11": { + "advanceWidth": 620, + "references": [ + {"glyph":"o","x":32,"y":546,"a":0,"b":-1,"c":1,"d":0,"roundToGrid":true} + ] + }, + "uni1D12": { + "advanceWidth": 620, + "references": [ + {"glyph":"c","x":41,"y":504,"a":0,"b":-1,"c":1,"d":0,"roundToGrid":true} + ] + }, + "uni1D13": { + "advanceWidth": 620, + "references": [ + {"glyph":"oslash","x":41,"y":546,"a":0,"b":-1,"c":1,"d":0,"roundToGrid":true} + ] + }, + "uni1D14": { + "advanceWidth": 865, + "references": [ + {"glyph":"oe","x":865,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni1D15": { + "advanceWidth": 526, + "contours": [ + [{"x":449,"y":539,"on":true},{"x":449,"y":468,"on":true},{"x":449,"y":416,"on":false},{"x":414,"y":344,"on":false},{"x":376,"y":323,"on":true},{"x":423,"y":305,"on":false},{"x":475,"y":231,"on":false},{"x":475,"y":175,"on":true},{"x":475,"y":92,"on":false},{"x":366,"y":-8,"on":false},{"x":262,"y":-8,"on":true},{"x":163,"y":-8,"on":false},{"x":51,"y":91,"on":false},{"x":51,"y":175,"on":true},{"x":51,"y":285,"on":false},{"x":147,"y":323,"on":true},{"x":77,"y":361,"on":false},{"x":77,"y":469,"on":true},{"x":77,"y":539,"on":true},{"x":173,"y":539,"on":true},{"x":173,"y":468,"on":true},{"x":173,"y":360,"on":false},{"x":262,"y":360,"on":true},{"x":308,"y":360,"on":false},{"x":353,"y":416,"on":false},{"x":353,"y":467,"on":true},{"x":353,"y":539,"on":true}], + [{"x":263,"y":283,"on":true},{"x":204,"y":283,"on":false},{"x":151,"y":229,"on":false},{"x":151,"y":177,"on":true},{"x":151,"y":126,"on":false},{"x":204,"y":70,"on":false},{"x":263,"y":70,"on":true},{"x":322,"y":70,"on":false},{"x":375,"y":126,"on":false},{"x":375,"y":178,"on":true},{"x":375,"y":228,"on":false},{"x":322,"y":283,"on":false}] + ] + }, + "uni1D16": { + "advanceWidth": 567, + "contours": [ + [{"x":284,"y":548,"on":true},{"x":394,"y":548,"on":false},{"x":517,"y":402,"on":false},{"x":517,"y":269,"on":true},{"x":411,"y":269,"on":true},{"x":411,"y":364,"on":false},{"x":350,"y":464,"on":false},{"x":283,"y":464,"on":true},{"x":217,"y":464,"on":false},{"x":155,"y":364,"on":false},{"x":155,"y":269,"on":true},{"x":50,"y":269,"on":true},{"x":50,"y":398,"on":false},{"x":166,"y":548,"on":false}] + ] + }, + "uni1D17": { + "advanceWidth": 567, + "contours": [ + [{"x":517,"y":269,"on":true},{"x":517,"y":186,"on":false},{"x":464,"y":60,"on":false},{"x":360,"y":-9,"on":false},{"x":282,"y":-9,"on":true},{"x":206,"y":-9,"on":false},{"x":103,"y":60,"on":false},{"x":50,"y":186,"on":false},{"x":50,"y":269,"on":true},{"x":155,"y":269,"on":true},{"x":155,"y":176,"on":false},{"x":217,"y":76,"on":false},{"x":283,"y":76,"on":true},{"x":350,"y":76,"on":false},{"x":411,"y":175,"on":false},{"x":411,"y":269,"on":true}] + ] + }, + "uni1D18": { + "advanceWidth": 467, + "contours": [ + [{"x":231,"y":539,"on":true},{"x":329,"y":539,"on":false},{"x":422,"y":454,"on":false},{"x":422,"y":376,"on":true},{"x":422,"y":328,"on":false},{"x":383,"y":248,"on":false},{"x":296,"y":201,"on":false},{"x":222,"y":201,"on":true},{"x":174,"y":201,"on":true},{"x":174,"y":0,"on":true},{"x":77,"y":0,"on":true},{"x":77,"y":539,"on":true}], + [{"x":225,"y":463,"on":true},{"x":174,"y":463,"on":true},{"x":174,"y":278,"on":true},{"x":212,"y":278,"on":true},{"x":266,"y":278,"on":false},{"x":324,"y":320,"on":false},{"x":324,"y":373,"on":true},{"x":324,"y":463,"on":false}] + ] + }, + "uni1D19": { + "advanceWidth": 486, + "contours": [ + [{"x":17,"y":0,"on":true},{"x":153,"y":233,"on":true},{"x":113,"y":250,"on":false},{"x":58,"y":321,"on":false},{"x":58,"y":383,"on":true},{"x":58,"y":458,"on":false},{"x":156,"y":539,"on":false},{"x":250,"y":539,"on":true},{"x":409,"y":539,"on":true},{"x":409,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":312,"y":214,"on":true},{"x":244,"y":214,"on":true},{"x":125,"y":0,"on":true}], + [{"x":257,"y":289,"on":true},{"x":312,"y":289,"on":true},{"x":312,"y":463,"on":true},{"x":253,"y":463,"on":true},{"x":156,"y":463,"on":false},{"x":156,"y":380,"on":true},{"x":156,"y":289,"on":false}] + ] + }, + "uni1D1A": { + "advanceWidth": 486, + "contours": [ + [{"x":250,"y":0,"on":true},{"x":156,"y":0,"on":false},{"x":58,"y":81,"on":false},{"x":58,"y":156,"on":true},{"x":58,"y":218,"on":false},{"x":113,"y":290,"on":false},{"x":153,"y":307,"on":true},{"x":17,"y":539,"on":true},{"x":125,"y":539,"on":true},{"x":244,"y":326,"on":true},{"x":312,"y":326,"on":true},{"x":312,"y":539,"on":true},{"x":409,"y":539,"on":true},{"x":409,"y":0,"on":true}], + [{"x":253,"y":77,"on":true},{"x":312,"y":77,"on":true},{"x":312,"y":250,"on":true},{"x":257,"y":250,"on":true},{"x":156,"y":250,"on":false},{"x":156,"y":160,"on":true},{"x":156,"y":116,"on":false},{"x":205,"y":77,"on":false}] + ] + }, + "uni1D1B": { + "advanceWidth": 418, + "contours": [ + [{"x":257,"y":0,"on":true},{"x":160,"y":0,"on":true},{"x":160,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":539,"on":true},{"x":400,"y":539,"on":true},{"x":400,"y":459,"on":true},{"x":257,"y":459,"on":true}] + ] + }, + "uni1D1C": { + "advanceWidth": 567, + "contours": [ + [{"x":495,"y":539,"on":true},{"x":495,"y":201,"on":true},{"x":495,"y":140,"on":false},{"x":452,"y":45,"on":false},{"x":358,"y":-9,"on":false},{"x":282,"y":-9,"on":true},{"x":170,"y":-9,"on":false},{"x":72,"y":108,"on":false},{"x":72,"y":202,"on":true},{"x":72,"y":539,"on":true},{"x":175,"y":539,"on":true},{"x":175,"y":206,"on":true},{"x":175,"y":77,"on":false},{"x":285,"y":77,"on":true},{"x":393,"y":77,"on":false},{"x":393,"y":206,"on":true},{"x":393,"y":539,"on":true}] + ] + }, + "uni1D1D": { + "advanceWidth": 620, + "references": [ + {"glyph":"n","x":39,"y":557,"a":0,"b":-1,"c":1,"d":0,"roundToGrid":true} + ] + }, + "uni1D1E": { + "advanceWidth": 795, + "references": [ + {"glyph":"udieresis","x":753,"y":-15,"a":0,"b":1,"c":-1,"d":0,"roundToGrid":true} + ] + }, + "uni1D1F": { + "advanceWidth": 620, + "references": [ + {"glyph":"m","x":40,"y":700,"a":0,"b":-1,"c":1,"d":0,"roundToGrid":true} + ] + }, + "uni1D20": { + "advanceWidth": 452, + "references": [ + {"glyph":"v","x":0,"y":0,"a":0.95318603515625,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1D21": { + "advanceWidth": 696, + "contours": [ + [{"x":137,"y":0,"on":true},{"x":9,"y":539,"on":true},{"x":106,"y":539,"on":true},{"x":165,"y":274,"on":true},{"x":174,"y":233,"on":false},{"x":190,"y":140,"on":false},{"x":195,"y":105,"on":true},{"x":198,"y":105,"on":true},{"x":202,"y":135,"on":false},{"x":218,"y":227,"on":false},{"x":226,"y":262,"on":true},{"x":295,"y":539,"on":true},{"x":402,"y":539,"on":true},{"x":469,"y":261,"on":true},{"x":476,"y":230,"on":false},{"x":493,"y":142,"on":false},{"x":497,"y":106,"on":true},{"x":501,"y":106,"on":true},{"x":503,"y":131,"on":false},{"x":518,"y":216,"on":false},{"x":528,"y":257,"on":true},{"x":591,"y":539,"on":true},{"x":687,"y":539,"on":true},{"x":556,"y":0,"on":true},{"x":446,"y":0,"on":true},{"x":380,"y":284,"on":true},{"x":374,"y":308,"on":false},{"x":361,"y":371,"on":false},{"x":350,"y":428,"on":false},{"x":349,"y":441,"on":true},{"x":346,"y":441,"on":true},{"x":344,"y":427,"on":false},{"x":333,"y":370,"on":false},{"x":320,"y":308,"on":false},{"x":315,"y":284,"on":true},{"x":246,"y":0,"on":true}] + ] + }, + "uni1D22": { + "advanceWidth": 418, + "references": [ + {"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni1D23": { + "advanceWidth": 440, + "contours": [ + [{"x":377,"y":539,"on":true},{"x":377,"y":475,"on":true},{"x":227,"y":318,"on":true},{"x":312,"y":313,"on":false},{"x":398,"y":228,"on":false},{"x":398,"y":157,"on":true},{"x":398,"y":84,"on":false},{"x":296,"y":-9,"on":false},{"x":189,"y":-9,"on":true},{"x":141,"y":-9,"on":false},{"x":60,"y":8,"on":false},{"x":30,"y":23,"on":true},{"x":30,"y":105,"on":true},{"x":63,"y":88,"on":false},{"x":143,"y":67,"on":false},{"x":183,"y":67,"on":true},{"x":240,"y":67,"on":false},{"x":301,"y":114,"on":false},{"x":301,"y":161,"on":true},{"x":301,"y":204,"on":false},{"x":237,"y":249,"on":false},{"x":166,"y":249,"on":true},{"x":113,"y":249,"on":true},{"x":113,"y":316,"on":true},{"x":252,"y":464,"on":true},{"x":42,"y":464,"on":true},{"x":42,"y":539,"on":true}] + ] + }, + "uni1D24": { + "advanceWidth": 421, + "contours": [ + [{"x":223,"y":-9,"on":true},{"x":136,"y":-9,"on":false},{"x":40,"y":65,"on":false},{"x":40,"y":134,"on":true},{"x":40,"y":191,"on":false},{"x":110,"y":260,"on":false},{"x":178,"y":279,"on":true},{"x":178,"y":333,"on":true},{"x":234,"y":344,"on":false},{"x":284,"y":378,"on":false},{"x":284,"y":410,"on":true},{"x":284,"y":436,"on":false},{"x":245,"y":468,"on":false},{"x":206,"y":468,"on":true},{"x":175,"y":468,"on":false},{"x":116,"y":450,"on":false},{"x":88,"y":436,"on":true},{"x":61,"y":512,"on":true},{"x":95,"y":528,"on":false},{"x":172,"y":548,"on":false},{"x":212,"y":548,"on":true},{"x":292,"y":548,"on":false},{"x":379,"y":474,"on":false},{"x":379,"y":413,"on":true},{"x":379,"y":359,"on":false},{"x":314,"y":290,"on":false},{"x":250,"y":270,"on":true},{"x":250,"y":215,"on":true},{"x":188,"y":205,"on":false},{"x":136,"y":167,"on":false},{"x":136,"y":135,"on":true},{"x":136,"y":72,"on":false},{"x":226,"y":72,"on":true},{"x":265,"y":72,"on":false},{"x":343,"y":95,"on":false},{"x":374,"y":111,"on":true},{"x":374,"y":23,"on":true},{"x":346,"y":9,"on":false},{"x":267,"y":-9,"on":false}] + ] + }, + "uni1D25": { + "advanceWidth": 459, + "contours": [ + [{"x":289,"y":164,"on":true},{"x":321,"y":114,"on":false},{"x":372,"y":71,"on":false},{"x":389,"y":71,"on":true},{"x":423,"y":71,"on":false},{"x":443,"y":82,"on":true},{"x":443,"y":5,"on":true},{"x":433,"y":-2,"on":false},{"x":399,"y":-10,"on":false},{"x":381,"y":-10,"on":true},{"x":356,"y":-10,"on":false},{"x":312,"y":8,"on":false},{"x":263,"y":57,"on":false},{"x":231,"y":102,"on":true},{"x":185,"y":37,"on":false},{"x":115,"y":-10,"on":false},{"x":79,"y":-10,"on":true},{"x":41,"y":-10,"on":false},{"x":16,"y":5,"on":true},{"x":16,"y":82,"on":true},{"x":24,"y":78,"on":false},{"x":53,"y":71,"on":false},{"x":68,"y":71,"on":true},{"x":89,"y":71,"on":false},{"x":138,"y":114,"on":false},{"x":172,"y":164,"on":true},{"x":127,"y":216,"on":false},{"x":70,"y":324,"on":false},{"x":70,"y":382,"on":true},{"x":70,"y":453,"on":false},{"x":156,"y":547,"on":false},{"x":231,"y":547,"on":true},{"x":306,"y":547,"on":false},{"x":392,"y":453,"on":false},{"x":392,"y":382,"on":true},{"x":392,"y":324,"on":false},{"x":330,"y":213,"on":false}] + ] + }, + "uni1D26": { + "advanceWidth": 406, + "contours": [ + [{"x":383,"y":539,"on":true},{"x":383,"y":459,"on":true},{"x":174,"y":459,"on":true},{"x":174,"y":0,"on":true},{"x":77,"y":0,"on":true},{"x":77,"y":539,"on":true}] + ] + }, + "uni1D27": { + "advanceWidth": 465, + "contours": [ + [{"x":8,"y":0,"on":true},{"x":183,"y":539,"on":true},{"x":283,"y":539,"on":true},{"x":457,"y":0,"on":true},{"x":357,"y":0,"on":true},{"x":257,"y":333,"on":true},{"x":250,"y":356,"on":false},{"x":237,"y":411,"on":false},{"x":233,"y":432,"on":true},{"x":229,"y":410,"on":false},{"x":216,"y":355,"on":false},{"x":209,"y":332,"on":true},{"x":108,"y":0,"on":true}] + ] + }, + "uni1D28": { + "advanceWidth": 555, + "contours": [ + [{"x":477,"y":0,"on":true},{"x":381,"y":0,"on":true},{"x":381,"y":460,"on":true},{"x":174,"y":460,"on":true},{"x":174,"y":0,"on":true},{"x":77,"y":0,"on":true},{"x":77,"y":539,"on":true},{"x":477,"y":539,"on":true}] + ] + }, + "uni1D29": { + "advanceWidth": 467, + "references": [ + {"glyph":"uni1D18","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni1D2A": { + "advanceWidth": 638, + "contours": [ + [{"x":585,"y":539,"on":true},{"x":585,"y":349,"on":true},{"x":585,"y":292,"on":false},{"x":542,"y":205,"on":false},{"x":445,"y":156,"on":false},{"x":365,"y":155,"on":true},{"x":365,"y":0,"on":true},{"x":272,"y":0,"on":true},{"x":272,"y":155,"on":true},{"x":193,"y":156,"on":false},{"x":97,"y":204,"on":false},{"x":54,"y":291,"on":false},{"x":54,"y":348,"on":true},{"x":54,"y":539,"on":true},{"x":149,"y":539,"on":true},{"x":149,"y":355,"on":true},{"x":149,"y":234,"on":false},{"x":272,"y":233,"on":true},{"x":272,"y":539,"on":true},{"x":365,"y":539,"on":true},{"x":365,"y":233,"on":true},{"x":489,"y":234,"on":false},{"x":489,"y":354,"on":true},{"x":489,"y":539,"on":true}] + ] + }, + "uni1D2B": { + "advanceWidth": 537, + "contours": [ + [{"x":460,"y":0,"on":true},{"x":363,"y":0,"on":true},{"x":363,"y":458,"on":true},{"x":235,"y":458,"on":true},{"x":230,"y":404,"on":false},{"x":218,"y":294,"on":false},{"x":204,"y":194,"on":false},{"x":197,"y":158,"on":true},{"x":180,"y":71,"on":false},{"x":120,"y":-8,"on":false},{"x":63,"y":-8,"on":true},{"x":35,"y":-8,"on":false},{"x":10,"y":3,"on":true},{"x":10,"y":82,"on":true},{"x":32,"y":72,"on":false},{"x":49,"y":72,"on":true},{"x":70,"y":72,"on":false},{"x":96,"y":121,"on":false},{"x":109,"y":185,"on":true},{"x":114,"y":217,"on":false},{"x":129,"y":324,"on":false},{"x":144,"y":462,"on":false},{"x":151,"y":539,"on":true},{"x":460,"y":539,"on":true}] + ] + }, + "uni1D2C": { + "advanceWidth": 382, + "references": [ + {"glyph":"A","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D2D": { + "advanceWidth": 524, + "references": [ + {"glyph":"AE","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D2E": { + "advanceWidth": 388, + "references": [ + {"glyph":"B","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D2F": { + "advanceWidth": 388, + "contours": [ + [{"x":9,"y":484,"on":true},{"x":9,"y":536,"on":true},{"x":56,"y":536,"on":true},{"x":56,"y":715,"on":true},{"x":182,"y":715,"on":true},{"x":261,"y":715,"on":false},{"x":343,"y":666,"on":false},{"x":343,"y":610,"on":true},{"x":343,"y":562,"on":false},{"x":314,"y":536,"on":true},{"x":382,"y":536,"on":true},{"x":382,"y":484,"on":true},{"x":327,"y":484,"on":true},{"x":341,"y":472,"on":false},{"x":356,"y":435,"on":false},{"x":356,"y":410,"on":true},{"x":356,"y":352,"on":false},{"x":276,"y":287,"on":false},{"x":207,"y":287,"on":true},{"x":56,"y":287,"on":true},{"x":56,"y":484,"on":true}], + [{"x":124,"y":536,"on":true},{"x":189,"y":536,"on":true},{"x":236,"y":536,"on":false},{"x":274,"y":569,"on":false},{"x":274,"y":602,"on":true},{"x":274,"y":663,"on":false},{"x":184,"y":663,"on":true},{"x":124,"y":663,"on":true}], + [{"x":124,"y":340,"on":true},{"x":198,"y":340,"on":true},{"x":245,"y":340,"on":false},{"x":285,"y":380,"on":false},{"x":285,"y":415,"on":true},{"x":285,"y":445,"on":false},{"x":248,"y":482,"on":false},{"x":206,"y":484,"on":true},{"x":124,"y":484,"on":true}] + ] + }, + "uni1D30": { + "advanceWidth": 428, + "references": [ + {"glyph":"D","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D31": { + "advanceWidth": 327, + "references": [ + {"glyph":"E","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D32": { + "advanceWidth": 327, + "references": [ + {"glyph":"uni018E","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D33": { + "advanceWidth": 431, + "references": [ + {"glyph":"G","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D34": { + "advanceWidth": 438, + "references": [ + {"glyph":"H","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D35": { + "advanceWidth": 216, + "references": [ + {"glyph":"I","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D36": { + "advanceWidth": 176, + "references": [ + {"glyph":"J","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D37": { + "advanceWidth": 371, + "references": [ + {"glyph":"K","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D38": { + "advanceWidth": 312, + "references": [ + {"glyph":"L","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D39": { + "advanceWidth": 553, + "references": [ + {"glyph":"M","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D3A": { + "advanceWidth": 459, + "references": [ + {"glyph":"N","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D3B": { + "advanceWidth": 459, + "contours": [ + [{"x":56,"y":287,"on":true},{"x":56,"y":715,"on":true},{"x":119,"y":715,"on":true},{"x":119,"y":482,"on":true},{"x":119,"y":457,"on":false},{"x":116,"y":399,"on":false},{"x":115,"y":377,"on":true},{"x":117,"y":377,"on":true},{"x":321,"y":715,"on":true},{"x":403,"y":715,"on":true},{"x":403,"y":287,"on":true},{"x":340,"y":287,"on":true},{"x":340,"y":521,"on":true},{"x":340,"y":548,"on":false},{"x":344,"y":604,"on":false},{"x":345,"y":629,"on":true},{"x":342,"y":629,"on":true},{"x":138,"y":287,"on":true}] + ] + }, + "uni1D3C": { + "advanceWidth": 458, + "references": [ + {"glyph":"O","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D3D": { + "advanceWidth": 422, + "references": [ + {"glyph":"uni0222","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D3E": { + "advanceWidth": 361, + "references": [ + {"glyph":"P","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D3F": { + "advanceWidth": 374, + "references": [ + {"glyph":"R","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D40": { + "advanceWidth": 326, + "references": [ + {"glyph":"T","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D41": { + "advanceWidth": 431, + "references": [ + {"glyph":"U","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D42": { + "advanceWidth": 563, + "references": [ + {"glyph":"W","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D43": { + "advanceWidth": 339, + "references": [ + {"glyph":"a","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D44": { + "advanceWidth": 339, + "references": [ + {"glyph":"uni0250","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D45": { + "advanceWidth": 368, + "references": [ + {"glyph":"uni0251","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D46": { + "advanceWidth": 520, + "references": [ + {"glyph":"uni1D02","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D47": { + "advanceWidth": 368, + "references": [ + {"glyph":"b","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D48": { + "advanceWidth": 368, + "references": [ + {"glyph":"d","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D49": { + "advanceWidth": 338, + "references": [ + {"glyph":"e","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D4A": { + "advanceWidth": 338, + "references": [ + {"glyph":"uni0259","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D4B": { + "advanceWidth": 295, + "references": [ + {"glyph":"uni025B","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D4C": { + "advanceWidth": 294, + "references": [ + {"glyph":"uni1D08","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D4D": { + "advanceWidth": 368, + "references": [ + {"glyph":"g","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D4E": { + "advanceWidth": 170, + "references": [ + {"glyph":"uni1D09","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D4F": { + "advanceWidth": 330, + "references": [ + {"glyph":"k","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D50": { + "advanceWidth": 558, + "references": [ + {"glyph":"m","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D51": { + "advanceWidth": 371, + "references": [ + {"glyph":"eng","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D52": { + "advanceWidth": 360, + "references": [ + {"glyph":"o","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D53": { + "advanceWidth": 288, + "references": [ + {"glyph":"uni0254","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D54": { + "advanceWidth": 368, + "references": [ + {"glyph":"uni1D16","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D55": { + "advanceWidth": 368, + "references": [ + {"glyph":"uni1D17","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D56": { + "advanceWidth": 368, + "references": [ + {"glyph":"p","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D57": { + "advanceWidth": 223, + "references": [ + {"glyph":"t","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D58": { + "advanceWidth": 371, + "references": [ + {"glyph":"u","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D59": { + "advanceWidth": 404, + "references": [ + {"glyph":"uni1D1D","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D5A": { + "advanceWidth": 558, + "references": [ + {"glyph":"uni026F","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D5B": { + "advanceWidth": 310, + "references": [ + {"glyph":"v","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D5C": { + "advanceWidth": 299, + "references": [ + {"glyph":"uni1D25","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D5D": { + "advanceWidth": 378, + "references": [ + {"glyph":"beta","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D5E": { + "advanceWidth": 313, + "references": [ + {"glyph":"gamma","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D5F": { + "advanceWidth": 360, + "references": [ + {"glyph":"delta","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D60": { + "advanceWidth": 449, + "references": [ + {"glyph":"phi","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D61": { + "advanceWidth": 329, + "references": [ + {"glyph":"chi","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D62": { + "advanceWidth": 165, + "references": [ + {"glyph":"i","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D63": { + "advanceWidth": 250, + "references": [ + {"glyph":"r","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D64": { + "advanceWidth": 371, + "references": [ + {"glyph":"u","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D65": { + "advanceWidth": 310, + "references": [ + {"glyph":"v","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D66": { + "advanceWidth": 378, + "references": [ + {"glyph":"beta","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D67": { + "advanceWidth": 313, + "references": [ + {"glyph":"gamma","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D68": { + "advanceWidth": 362, + "references": [ + {"glyph":"rho","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D69": { + "advanceWidth": 449, + "references": [ + {"glyph":"phi","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D6A": { + "advanceWidth": 329, + "references": [ + {"glyph":"chi","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D6B": { + "advanceWidth": 860, + "contours": [ + [{"x":815,"y":247,"on":true},{"x":491,"y":247,"on":true},{"x":492,"y":162,"on":false},{"x":566,"y":74,"on":false},{"x":635,"y":74,"on":true},{"x":678,"y":74,"on":false},{"x":752,"y":92,"on":false},{"x":790,"y":112,"on":true},{"x":790,"y":26,"on":true},{"x":753,"y":7,"on":false},{"x":677,"y":-10,"on":false},{"x":627,"y":-10,"on":true},{"x":508,"y":-10,"on":false},{"x":448,"y":86,"on":true},{"x":428,"y":44,"on":false},{"x":346,"y":-9,"on":false},{"x":279,"y":-9,"on":true},{"x":169,"y":-9,"on":false},{"x":72,"y":108,"on":false},{"x":72,"y":203,"on":true},{"x":72,"y":539,"on":true},{"x":175,"y":539,"on":true},{"x":175,"y":206,"on":true},{"x":175,"y":77,"on":false},{"x":284,"y":77,"on":true},{"x":392,"y":77,"on":false},{"x":392,"y":206,"on":true},{"x":392,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":493,"on":true},{"x":513,"y":519,"on":false},{"x":574,"y":549,"on":false},{"x":614,"y":549,"on":true},{"x":676,"y":549,"on":false},{"x":767,"y":488,"on":false},{"x":815,"y":379,"on":false},{"x":815,"y":307,"on":true}], + [{"x":715,"y":324,"on":true},{"x":714,"y":387,"on":false},{"x":663,"y":469,"on":false},{"x":608,"y":469,"on":true},{"x":558,"y":469,"on":false},{"x":498,"y":395,"on":false},{"x":493,"y":324,"on":true}] + ] + }, + "uni1D6C": { + "advanceWidth": 566, + "contours": [ + [{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":413,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":271,"y":-10,"on":false},{"x":201,"y":32,"on":false},{"x":178,"y":66,"on":true},{"x":171,"y":66,"on":true},{"x":153,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":633,"on":true},{"x":70,"y":635,"on":false},{"x":60,"y":639,"on":false},{"x":55,"y":639,"on":true},{"x":20,"y":639,"on":false},{"x":11,"y":582,"on":true},{"x":-46,"y":582,"on":true},{"x":-42,"y":646,"on":false},{"x":9,"y":714,"on":false},{"x":54,"y":714,"on":true},{"x":67,"y":714,"on":false},{"x":75,"y":710,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":666,"on":true},{"x":184,"y":663,"on":false},{"x":198,"y":658,"on":false},{"x":204,"y":658,"on":true},{"x":221,"y":658,"on":false},{"x":241,"y":687,"on":false},{"x":246,"y":715,"on":true},{"x":303,"y":715,"on":true},{"x":299,"y":653,"on":false},{"x":246,"y":583,"on":false},{"x":203,"y":583,"on":true},{"x":197,"y":583,"on":false},{"x":184,"y":587,"on":false},{"x":178,"y":589,"on":true},{"x":178,"y":564,"on":true},{"x":178,"y":538,"on":false},{"x":174,"y":486,"on":false},{"x":173,"y":466,"on":true},{"x":178,"y":466,"on":true},{"x":200,"y":503,"on":false},{"x":272,"y":547,"on":false},{"x":324,"y":547,"on":true},{"x":413,"y":547,"on":false},{"x":519,"y":409,"on":false}], + [{"x":414,"y":271,"on":true},{"x":414,"y":461,"on":false},{"x":299,"y":461,"on":true},{"x":231,"y":461,"on":false},{"x":178,"y":366,"on":false},{"x":178,"y":276,"on":true},{"x":178,"y":265,"on":true},{"x":178,"y":171,"on":false},{"x":232,"y":75,"on":false},{"x":301,"y":75,"on":true},{"x":414,"y":75,"on":false}] + ] + }, + "uni1D6D": { + "advanceWidth": 566, + "contours": [ + [{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":405,"on":false},{"x":153,"y":547,"on":false},{"x":243,"y":547,"on":true},{"x":295,"y":547,"on":false},{"x":368,"y":503,"on":false},{"x":390,"y":468,"on":true},{"x":395,"y":468,"on":true},{"x":394,"y":483,"on":false},{"x":389,"y":534,"on":false},{"x":389,"y":553,"on":true},{"x":389,"y":631,"on":true},{"x":382,"y":634,"on":false},{"x":369,"y":639,"on":false},{"x":363,"y":639,"on":true},{"x":329,"y":639,"on":false},{"x":320,"y":582,"on":true},{"x":263,"y":582,"on":true},{"x":268,"y":640,"on":false},{"x":316,"y":714,"on":false},{"x":363,"y":714,"on":true},{"x":376,"y":714,"on":false},{"x":389,"y":709,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":664,"on":true},{"x":503,"y":658,"on":false},{"x":513,"y":658,"on":true},{"x":531,"y":658,"on":false},{"x":550,"y":687,"on":false},{"x":555,"y":715,"on":true},{"x":612,"y":715,"on":true},{"x":608,"y":653,"on":false},{"x":555,"y":583,"on":false},{"x":513,"y":583,"on":true},{"x":508,"y":583,"on":false},{"x":496,"y":586,"on":false},{"x":491,"y":587,"on":true},{"x":491,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":365,"on":false},{"x":336,"y":461,"on":false},{"x":266,"y":461,"on":true},{"x":209,"y":461,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "uni1D6E": { + "advanceWidth": 352, + "contours": [ + [{"x":112,"y":0,"on":true},{"x":112,"y":255,"on":true},{"x":102,"y":261,"on":false},{"x":92,"y":261,"on":true},{"x":58,"y":261,"on":false},{"x":49,"y":204,"on":true},{"x":-8,"y":204,"on":true},{"x":-4,"y":262,"on":false},{"x":44,"y":335,"on":false},{"x":91,"y":335,"on":true},{"x":102,"y":335,"on":false},{"x":112,"y":332,"on":true},{"x":112,"y":459,"on":true},{"x":31,"y":459,"on":true},{"x":31,"y":509,"on":true},{"x":112,"y":541,"on":true},{"x":112,"y":573,"on":true},{"x":112,"y":674,"on":false},{"x":193,"y":765,"on":false},{"x":273,"y":765,"on":true},{"x":304,"y":765,"on":false},{"x":355,"y":754,"on":false},{"x":377,"y":746,"on":true},{"x":351,"y":668,"on":true},{"x":336,"y":672,"on":false},{"x":301,"y":681,"on":false},{"x":282,"y":681,"on":true},{"x":246,"y":681,"on":false},{"x":215,"y":630,"on":false},{"x":214,"y":574,"on":true},{"x":214,"y":539,"on":true},{"x":330,"y":539,"on":true},{"x":330,"y":459,"on":true},{"x":214,"y":459,"on":true},{"x":214,"y":288,"on":true},{"x":228,"y":280,"on":false},{"x":242,"y":280,"on":true},{"x":259,"y":280,"on":false},{"x":279,"y":309,"on":false},{"x":284,"y":336,"on":true},{"x":341,"y":336,"on":true},{"x":337,"y":274,"on":false},{"x":283,"y":205,"on":false},{"x":241,"y":205,"on":true},{"x":226,"y":205,"on":false},{"x":214,"y":211,"on":true},{"x":214,"y":0,"on":true}] + ] + }, + "uni1D6F": { + "advanceWidth": 902, + "contours": [ + [{"x":97,"y":0,"on":true},{"x":97,"y":251,"on":true},{"x":69,"y":244,"on":false},{"x":48,"y":208,"on":false},{"x":45,"y":188,"on":true},{"x":-11,"y":188,"on":true},{"x":-1,"y":296,"on":false},{"x":97,"y":320,"on":true},{"x":97,"y":539,"on":true},{"x":178,"y":539,"on":true},{"x":192,"y":467,"on":true},{"x":197,"y":467,"on":true},{"x":219,"y":509,"on":false},{"x":295,"y":549,"on":false},{"x":339,"y":549,"on":true},{"x":450,"y":549,"on":false},{"x":486,"y":464,"on":true},{"x":493,"y":464,"on":true},{"x":517,"y":508,"on":false},{"x":596,"y":549,"on":false},{"x":644,"y":549,"on":true},{"x":726,"y":549,"on":false},{"x":808,"y":455,"on":false},{"x":808,"y":354,"on":true},{"x":808,"y":263,"on":true},{"x":834,"y":270,"on":false},{"x":857,"y":303,"on":false},{"x":861,"y":327,"on":true},{"x":917,"y":327,"on":true},{"x":908,"y":218,"on":false},{"x":808,"y":194,"on":true},{"x":808,"y":0,"on":true},{"x":706,"y":0,"on":true},{"x":706,"y":185,"on":true},{"x":657,"y":186,"on":false},{"x":556,"y":200,"on":false},{"x":503,"y":208,"on":true},{"x":503,"y":0,"on":true},{"x":402,"y":0,"on":true},{"x":402,"y":226,"on":true},{"x":349,"y":236,"on":false},{"x":248,"y":251,"on":false},{"x":199,"y":253,"on":true},{"x":199,"y":0,"on":true}], + [{"x":402,"y":301,"on":true},{"x":402,"y":342,"on":true},{"x":402,"y":404,"on":false},{"x":358,"y":463,"on":false},{"x":314,"y":463,"on":true},{"x":258,"y":463,"on":false},{"x":207,"y":390,"on":false},{"x":201,"y":326,"on":true},{"x":250,"y":324,"on":false},{"x":350,"y":310,"on":false}], + [{"x":706,"y":258,"on":true},{"x":706,"y":338,"on":true},{"x":706,"y":463,"on":false},{"x":619,"y":463,"on":true},{"x":558,"y":463,"on":false},{"x":503,"y":378,"on":false},{"x":503,"y":296,"on":true},{"x":503,"y":283,"on":true},{"x":553,"y":275,"on":false},{"x":655,"y":260,"on":false}] + ] + }, + "uni1D70": { + "advanceWidth": 586, + "contours": [ + [{"x":332,"y":549,"on":true},{"x":415,"y":549,"on":false},{"x":504,"y":456,"on":false},{"x":504,"y":356,"on":true},{"x":504,"y":267,"on":true},{"x":526,"y":272,"on":false},{"x":547,"y":302,"on":false},{"x":550,"y":325,"on":true},{"x":606,"y":325,"on":true},{"x":602,"y":267,"on":false},{"x":549,"y":204,"on":false},{"x":504,"y":195,"on":true},{"x":504,"y":0,"on":true},{"x":403,"y":0,"on":true},{"x":403,"y":196,"on":true},{"x":347,"y":204,"on":false},{"x":237,"y":236,"on":false},{"x":184,"y":245,"on":true},{"x":184,"y":0,"on":true},{"x":81,"y":0,"on":true},{"x":81,"y":248,"on":true},{"x":58,"y":242,"on":false},{"x":38,"y":213,"on":false},{"x":36,"y":191,"on":true},{"x":-21,"y":191,"on":true},{"x":-17,"y":249,"on":false},{"x":38,"y":313,"on":false},{"x":81,"y":322,"on":true},{"x":81,"y":539,"on":true},{"x":162,"y":539,"on":true},{"x":176,"y":467,"on":true},{"x":182,"y":467,"on":true},{"x":204,"y":508,"on":false},{"x":286,"y":549,"on":false}], + [{"x":309,"y":463,"on":true},{"x":248,"y":463,"on":false},{"x":192,"y":392,"on":false},{"x":186,"y":321,"on":true},{"x":239,"y":312,"on":false},{"x":349,"y":280,"on":false},{"x":403,"y":271,"on":true},{"x":403,"y":338,"on":true},{"x":403,"y":400,"on":false},{"x":358,"y":463,"on":false}] + ] + }, + "uni1D71": { + "advanceWidth": 566, + "contours": [ + [{"x":75,"y":-240,"on":true},{"x":75,"y":-129,"on":true},{"x":64,"y":-123,"on":false},{"x":53,"y":-123,"on":true},{"x":19,"y":-123,"on":false},{"x":11,"y":-180,"on":true},{"x":-46,"y":-180,"on":true},{"x":-42,"y":-122,"on":false},{"x":6,"y":-48,"on":false},{"x":53,"y":-48,"on":true},{"x":59,"y":-48,"on":false},{"x":70,"y":-50,"on":false},{"x":75,"y":-52,"on":true},{"x":75,"y":539,"on":true},{"x":159,"y":539,"on":true},{"x":172,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":504,"on":false},{"x":271,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":414,"y":549,"on":false},{"x":519,"y":409,"on":false},{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":413,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":199,"y":34,"on":false},{"x":178,"y":68,"on":true},{"x":172,"y":68,"on":true},{"x":174,"y":48,"on":false},{"x":177,"y":4,"on":false},{"x":177,"y":-15,"on":true},{"x":177,"y":-95,"on":true},{"x":190,"y":-104,"on":false},{"x":203,"y":-104,"on":true},{"x":221,"y":-104,"on":false},{"x":241,"y":-75,"on":false},{"x":246,"y":-47,"on":true},{"x":302,"y":-47,"on":true},{"x":299,"y":-109,"on":false},{"x":245,"y":-179,"on":false},{"x":203,"y":-179,"on":true},{"x":196,"y":-179,"on":false},{"x":183,"y":-175,"on":false},{"x":177,"y":-173,"on":true},{"x":177,"y":-240,"on":true}], + [{"x":300,"y":76,"on":true},{"x":358,"y":76,"on":false},{"x":414,"y":179,"on":false},{"x":414,"y":271,"on":true},{"x":414,"y":363,"on":false},{"x":359,"y":464,"on":false},{"x":299,"y":464,"on":true},{"x":234,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":287,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":173,"on":false},{"x":232,"y":76,"on":false}] + ] + }, + "uni1D72": { + "advanceWidth": 406, + "contours": [ + [{"x":97,"y":0,"on":true},{"x":97,"y":228,"on":true},{"x":85,"y":234,"on":false},{"x":75,"y":234,"on":true},{"x":41,"y":234,"on":false},{"x":32,"y":177,"on":true},{"x":-25,"y":177,"on":true},{"x":-21,"y":235,"on":false},{"x":28,"y":309,"on":false},{"x":74,"y":309,"on":true},{"x":80,"y":309,"on":false},{"x":91,"y":306,"on":false},{"x":97,"y":305,"on":true},{"x":97,"y":539,"on":true},{"x":177,"y":539,"on":true},{"x":191,"y":445,"on":true},{"x":196,"y":445,"on":true},{"x":218,"y":488,"on":false},{"x":290,"y":549,"on":false},{"x":339,"y":549,"on":true},{"x":368,"y":549,"on":false},{"x":393,"y":543,"on":true},{"x":381,"y":444,"on":true},{"x":370,"y":447,"on":false},{"x":344,"y":451,"on":false},{"x":332,"y":451,"on":true},{"x":277,"y":451,"on":false},{"x":199,"y":362,"on":false},{"x":199,"y":285,"on":true},{"x":199,"y":261,"on":true},{"x":212,"y":253,"on":false},{"x":224,"y":253,"on":true},{"x":242,"y":253,"on":false},{"x":262,"y":282,"on":false},{"x":267,"y":310,"on":true},{"x":324,"y":310,"on":true},{"x":320,"y":248,"on":false},{"x":266,"y":178,"on":false},{"x":224,"y":178,"on":true},{"x":211,"y":178,"on":false},{"x":199,"y":184,"on":true},{"x":199,"y":0,"on":true}] + ] + }, + "uni1D73": { + "advanceWidth": 354, + "contours": [ + [{"x":95,"y":0,"on":true},{"x":95,"y":228,"on":true},{"x":89,"y":230,"on":false},{"x":79,"y":234,"on":false},{"x":74,"y":234,"on":true},{"x":40,"y":234,"on":false},{"x":31,"y":177,"on":true},{"x":-26,"y":177,"on":true},{"x":-22,"y":235,"on":false},{"x":27,"y":309,"on":false},{"x":74,"y":309,"on":true},{"x":86,"y":309,"on":false},{"x":95,"y":305,"on":true},{"x":95,"y":384,"on":true},{"x":95,"y":476,"on":false},{"x":175,"y":550,"on":false},{"x":245,"y":550,"on":true},{"x":270,"y":550,"on":false},{"x":316,"y":540,"on":false},{"x":334,"y":533,"on":true},{"x":321,"y":448,"on":true},{"x":310,"y":452,"on":false},{"x":276,"y":461,"on":false},{"x":256,"y":461,"on":true},{"x":197,"y":461,"on":false},{"x":197,"y":382,"on":true},{"x":197,"y":261,"on":true},{"x":204,"y":258,"on":false},{"x":217,"y":253,"on":false},{"x":224,"y":253,"on":true},{"x":241,"y":253,"on":false},{"x":261,"y":282,"on":false},{"x":266,"y":310,"on":true},{"x":323,"y":310,"on":true},{"x":319,"y":248,"on":false},{"x":266,"y":178,"on":false},{"x":223,"y":178,"on":true},{"x":217,"y":178,"on":false},{"x":203,"y":182,"on":false},{"x":197,"y":184,"on":true},{"x":197,"y":0,"on":true}] + ] + }, + "uni1D74": { + "advanceWidth": 471, + "contours": [ + [{"x":217,"y":-10,"on":true},{"x":168,"y":-10,"on":false},{"x":92,"y":6,"on":false},{"x":61,"y":22,"on":true},{"x":61,"y":114,"on":true},{"x":92,"y":98,"on":false},{"x":174,"y":72,"on":false},{"x":215,"y":72,"on":true},{"x":266,"y":72,"on":false},{"x":314,"y":110,"on":false},{"x":314,"y":143,"on":true},{"x":314,"y":171,"on":false},{"x":270,"y":214,"on":false},{"x":212,"y":239,"on":true},{"x":191,"y":250,"on":false},{"x":140,"y":266,"on":false},{"x":115,"y":266,"on":true},{"x":85,"y":266,"on":false},{"x":60,"y":236,"on":false},{"x":55,"y":207,"on":true},{"x":-2,"y":207,"on":true},{"x":7,"y":312,"on":false},{"x":79,"y":332,"on":true},{"x":61,"y":360,"on":false},{"x":61,"y":404,"on":true},{"x":61,"y":473,"on":false},{"x":163,"y":549,"on":false},{"x":248,"y":549,"on":true},{"x":292,"y":549,"on":false},{"x":370,"y":530,"on":false},{"x":407,"y":512,"on":true},{"x":374,"y":433,"on":true},{"x":343,"y":448,"on":false},{"x":279,"y":467,"on":false},{"x":246,"y":467,"on":true},{"x":204,"y":467,"on":false},{"x":160,"y":436,"on":false},{"x":160,"y":409,"on":true},{"x":160,"y":380,"on":false},{"x":208,"y":342,"on":false},{"x":273,"y":314,"on":true},{"x":295,"y":304,"on":false},{"x":336,"y":283,"on":false},{"x":351,"y":272,"on":true},{"x":379,"y":274,"on":false},{"x":410,"y":298,"on":false},{"x":416,"y":333,"on":true},{"x":472,"y":333,"on":true},{"x":469,"y":281,"on":false},{"x":429,"y":221,"on":false},{"x":400,"y":210,"on":true},{"x":414,"y":185,"on":false},{"x":414,"y":151,"on":true},{"x":414,"y":72,"on":false},{"x":310,"y":-10,"on":false}] + ] + }, + "uni1D75": { + "advanceWidth": 367, + "contours": [ + [{"x":245,"y":-10,"on":true},{"x":182,"y":-10,"on":false},{"x":102,"y":62,"on":false},{"x":102,"y":154,"on":true},{"x":102,"y":258,"on":true},{"x":90,"y":263,"on":false},{"x":83,"y":263,"on":true},{"x":50,"y":263,"on":false},{"x":41,"y":206,"on":true},{"x":-16,"y":206,"on":true},{"x":-12,"y":264,"on":false},{"x":37,"y":337,"on":false},{"x":84,"y":337,"on":true},{"x":88,"y":337,"on":false},{"x":98,"y":336,"on":false},{"x":102,"y":335,"on":true},{"x":102,"y":459,"on":true},{"x":36,"y":459,"on":true},{"x":36,"y":508,"on":true},{"x":106,"y":543,"on":true},{"x":140,"y":660,"on":true},{"x":204,"y":660,"on":true},{"x":204,"y":539,"on":true},{"x":336,"y":539,"on":true},{"x":336,"y":459,"on":true},{"x":204,"y":459,"on":true},{"x":204,"y":291,"on":true},{"x":212,"y":287,"on":false},{"x":226,"y":282,"on":false},{"x":234,"y":282,"on":true},{"x":251,"y":282,"on":false},{"x":271,"y":311,"on":false},{"x":276,"y":338,"on":true},{"x":333,"y":338,"on":true},{"x":329,"y":276,"on":false},{"x":276,"y":207,"on":false},{"x":233,"y":207,"on":true},{"x":220,"y":207,"on":false},{"x":204,"y":214,"on":true},{"x":204,"y":158,"on":true},{"x":204,"y":116,"on":false},{"x":240,"y":75,"on":false},{"x":271,"y":75,"on":true},{"x":308,"y":75,"on":false},{"x":341,"y":88,"on":true},{"x":341,"y":9,"on":true},{"x":324,"y":1,"on":false},{"x":273,"y":-10,"on":false}] + ] + }, + "uni1D76": { + "advanceWidth": 440, + "contours": [ + [{"x":391,"y":539,"on":true},{"x":391,"y":467,"on":true},{"x":281,"y":283,"on":true},{"x":290,"y":280,"on":false},{"x":308,"y":276,"on":false},{"x":317,"y":276,"on":true},{"x":353,"y":276,"on":false},{"x":364,"y":337,"on":true},{"x":420,"y":337,"on":true},{"x":416,"y":273,"on":false},{"x":361,"y":203,"on":false},{"x":318,"y":203,"on":true},{"x":298,"y":203,"on":false},{"x":260,"y":214,"on":false},{"x":242,"y":222,"on":true},{"x":159,"y":81,"on":true},{"x":399,"y":81,"on":true},{"x":399,"y":0,"on":true},{"x":42,"y":0,"on":true},{"x":42,"y":65,"on":true},{"x":157,"y":258,"on":true},{"x":136,"y":266,"on":false},{"x":119,"y":266,"on":true},{"x":81,"y":266,"on":false},{"x":72,"y":206,"on":true},{"x":15,"y":206,"on":true},{"x":20,"y":270,"on":false},{"x":74,"y":340,"on":false},{"x":117,"y":340,"on":true},{"x":138,"y":340,"on":false},{"x":177,"y":328,"on":false},{"x":196,"y":320,"on":true},{"x":278,"y":458,"on":true},{"x":56,"y":458,"on":true},{"x":56,"y":539,"on":true}] + ] + }, + "uni1D77": { + "advanceWidth": 566, + "references": [ + {"glyph":"g","x":566,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni1D78": { + "advanceWidth": 378, + "references": [ + {"glyph":"uni043D","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D79": { + "advanceWidth": 511, + "contours": [ + [{"x":444,"y":539,"on":true},{"x":444,"y":468,"on":true},{"x":251,"y":315,"on":true},{"x":367,"y":218,"on":true},{"x":424,"y":178,"on":false},{"x":479,"y":76,"on":false},{"x":479,"y":1,"on":true},{"x":479,"y":-109,"on":false},{"x":360,"y":-240,"on":false},{"x":251,"y":-240,"on":true},{"x":182,"y":-240,"on":false},{"x":81,"y":-182,"on":false},{"x":25,"y":-74,"on":false},{"x":25,"y":0,"on":true},{"x":25,"y":103,"on":false},{"x":128,"y":220,"on":false},{"x":225,"y":228,"on":true},{"x":144,"y":294,"on":true},{"x":144,"y":335,"on":true},{"x":300,"y":455,"on":true},{"x":56,"y":455,"on":true},{"x":56,"y":539,"on":true}], + [{"x":253,"y":153,"on":true},{"x":190,"y":153,"on":false},{"x":130,"y":74,"on":false},{"x":130,"y":0,"on":true},{"x":130,"y":-73,"on":false},{"x":188,"y":-157,"on":false},{"x":252,"y":-157,"on":true},{"x":316,"y":-157,"on":false},{"x":374,"y":-73,"on":false},{"x":374,"y":0,"on":true},{"x":374,"y":74,"on":false},{"x":316,"y":153,"on":false}] + ] + }, + "uni1D7A": { + "advanceWidth": 914, + "contours": [ + [{"x":42,"y":-75,"on":true},{"x":119,"y":31,"on":true},{"x":102,"y":50,"on":false},{"x":83,"y":111,"on":false},{"x":83,"y":154,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":88,"y":543,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":539,"on":true},{"x":317,"y":539,"on":true},{"x":317,"y":459,"on":true},{"x":185,"y":459,"on":true},{"x":185,"y":158,"on":true},{"x":185,"y":140,"on":false},{"x":188,"y":126,"on":true},{"x":419,"y":444,"on":true},{"x":419,"y":760,"on":true},{"x":522,"y":760,"on":true},{"x":522,"y":585,"on":true},{"x":649,"y":760,"on":true},{"x":724,"y":760,"on":true},{"x":516,"y":473,"on":true},{"x":516,"y":470,"on":false},{"x":515,"y":467,"on":true},{"x":522,"y":467,"on":true},{"x":544,"y":508,"on":false},{"x":622,"y":549,"on":false},{"x":669,"y":549,"on":true},{"x":754,"y":549,"on":false},{"x":842,"y":454,"on":false},{"x":842,"y":355,"on":true},{"x":842,"y":0,"on":true},{"x":741,"y":0,"on":true},{"x":741,"y":338,"on":true},{"x":741,"y":402,"on":false},{"x":696,"y":463,"on":false},{"x":647,"y":463,"on":true},{"x":576,"y":463,"on":false},{"x":522,"y":366,"on":false},{"x":522,"y":272,"on":true},{"x":522,"y":0,"on":true},{"x":419,"y":0,"on":true},{"x":419,"y":340,"on":true},{"x":229,"y":78,"on":true},{"x":239,"y":75,"on":false},{"x":252,"y":75,"on":true},{"x":290,"y":75,"on":false},{"x":322,"y":88,"on":true},{"x":322,"y":9,"on":true},{"x":305,"y":1,"on":false},{"x":254,"y":-10,"on":false},{"x":226,"y":-10,"on":true},{"x":195,"y":-10,"on":false},{"x":171,"y":-2,"on":true},{"x":118,"y":-75,"on":true}] + ] + }, + "uni1D7B": { + "advanceWidth": 318, + "contours": [ + [{"x":281,"y":322,"on":true},{"x":281,"y":246,"on":true},{"x":210,"y":246,"on":true},{"x":210,"y":79,"on":true},{"x":286,"y":57,"on":true},{"x":286,"y":0,"on":true},{"x":32,"y":0,"on":true},{"x":32,"y":57,"on":true},{"x":108,"y":79,"on":true},{"x":108,"y":246,"on":true},{"x":39,"y":246,"on":true},{"x":39,"y":322,"on":true},{"x":108,"y":322,"on":true},{"x":108,"y":460,"on":true},{"x":32,"y":482,"on":true},{"x":32,"y":539,"on":true},{"x":286,"y":539,"on":true},{"x":286,"y":482,"on":true},{"x":210,"y":460,"on":true},{"x":210,"y":322,"on":true}] + ] + }, + "uni1D7C": { + "advanceWidth": 328, + "contours": [ + [{"x":274,"y":322,"on":true},{"x":274,"y":246,"on":true},{"x":176,"y":246,"on":true},{"x":176,"y":153,"on":true},{"x":176,"y":76,"on":false},{"x":237,"y":76,"on":true},{"x":256,"y":76,"on":false},{"x":297,"y":84,"on":false},{"x":311,"y":89,"on":true},{"x":311,"y":9,"on":true},{"x":294,"y":1,"on":false},{"x":243,"y":-10,"on":false},{"x":215,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":74,"y":60,"on":false},{"x":74,"y":152,"on":true},{"x":74,"y":246,"on":true},{"x":3,"y":246,"on":true},{"x":3,"y":322,"on":true},{"x":74,"y":322,"on":true},{"x":74,"y":539,"on":true},{"x":176,"y":539,"on":true},{"x":176,"y":322,"on":true}] + ] + }, + "uni1D7D": { + "advanceWidth": 566, + "contours": [ + [{"x":324,"y":549,"on":true},{"x":406,"y":549,"on":false},{"x":509,"y":432,"on":false},{"x":517,"y":316,"on":true},{"x":563,"y":316,"on":true},{"x":563,"y":241,"on":true},{"x":518,"y":241,"on":true},{"x":512,"y":119,"on":false},{"x":408,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":199,"y":34,"on":false},{"x":178,"y":68,"on":true},{"x":172,"y":68,"on":true},{"x":174,"y":48,"on":false},{"x":178,"y":2,"on":false},{"x":178,"y":-15,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":241,"on":true},{"x":6,"y":241,"on":true},{"x":6,"y":316,"on":true},{"x":75,"y":316,"on":true},{"x":75,"y":539,"on":true},{"x":159,"y":539,"on":true},{"x":172,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":504,"on":false},{"x":271,"y":549,"on":false}], + [{"x":299,"y":464,"on":true},{"x":239,"y":464,"on":false},{"x":183,"y":391,"on":false},{"x":179,"y":316,"on":true},{"x":412,"y":316,"on":true},{"x":406,"y":387,"on":false},{"x":351,"y":464,"on":false}], + [{"x":300,"y":76,"on":true},{"x":353,"y":76,"on":false},{"x":409,"y":163,"on":false},{"x":413,"y":241,"on":true},{"x":179,"y":241,"on":true},{"x":182,"y":159,"on":false},{"x":237,"y":76,"on":false}] + ] + }, + "uni1D7E": { + "advanceWidth": 568, + "contours": [ + [{"x":283,"y":-9,"on":true},{"x":208,"y":-9,"on":false},{"x":116,"y":43,"on":false},{"x":73,"y":135,"on":false},{"x":73,"y":195,"on":true},{"x":73,"y":245,"on":true},{"x":6,"y":245,"on":true},{"x":6,"y":320,"on":true},{"x":73,"y":320,"on":true},{"x":73,"y":539,"on":true},{"x":176,"y":539,"on":true},{"x":176,"y":320,"on":true},{"x":393,"y":320,"on":true},{"x":393,"y":539,"on":true},{"x":495,"y":539,"on":true},{"x":495,"y":320,"on":true},{"x":560,"y":320,"on":true},{"x":560,"y":245,"on":true},{"x":495,"y":245,"on":true},{"x":495,"y":194,"on":true},{"x":495,"y":136,"on":false},{"x":452,"y":44,"on":false},{"x":358,"y":-9,"on":false}], + [{"x":286,"y":77,"on":true},{"x":341,"y":77,"on":false},{"x":393,"y":140,"on":false},{"x":393,"y":197,"on":true},{"x":393,"y":245,"on":true},{"x":176,"y":245,"on":true},{"x":176,"y":197,"on":true},{"x":176,"y":77,"on":false}] + ] + }, + "uni1D7F": { + "advanceWidth": 565, + "contours": [ + [{"x":281,"y":-10,"on":true},{"x":210,"y":-10,"on":false},{"x":106,"y":52,"on":false},{"x":50,"y":165,"on":false},{"x":50,"y":241,"on":true},{"x":6,"y":241,"on":true},{"x":6,"y":316,"on":true},{"x":57,"y":316,"on":true},{"x":66,"y":361,"on":false},{"x":107,"y":430,"on":false},{"x":136,"y":455,"on":true},{"x":27,"y":455,"on":true},{"x":27,"y":539,"on":true},{"x":250,"y":539,"on":true},{"x":250,"y":462,"on":true},{"x":215,"y":446,"on":false},{"x":167,"y":372,"on":false},{"x":157,"y":316,"on":true},{"x":407,"y":316,"on":true},{"x":397,"y":371,"on":false},{"x":349,"y":446,"on":false},{"x":315,"y":462,"on":true},{"x":315,"y":539,"on":true},{"x":537,"y":539,"on":true},{"x":537,"y":455,"on":true},{"x":430,"y":455,"on":true},{"x":459,"y":429,"on":false},{"x":499,"y":360,"on":false},{"x":508,"y":316,"on":true},{"x":559,"y":316,"on":true},{"x":559,"y":241,"on":true},{"x":515,"y":241,"on":true},{"x":513,"y":127,"on":false},{"x":393,"y":-10,"on":false}], + [{"x":282,"y":75,"on":true},{"x":348,"y":75,"on":false},{"x":413,"y":165,"on":false},{"x":413,"y":241,"on":true},{"x":152,"y":241,"on":true},{"x":154,"y":164,"on":false},{"x":218,"y":75,"on":false}] + ] + }, + "uni1D80": { + "advanceWidth": 566, + "contours": [ + [{"x":178,"y":760,"on":true},{"x":178,"y":568,"on":true},{"x":178,"y":541,"on":false},{"x":174,"y":488,"on":false},{"x":173,"y":468,"on":true},{"x":178,"y":468,"on":true},{"x":200,"y":505,"on":false},{"x":272,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":413,"y":549,"on":false},{"x":519,"y":407,"on":false},{"x":519,"y":270,"on":true},{"x":519,"y":198,"on":false},{"x":489,"y":90,"on":false},{"x":461,"y":55,"on":true},{"x":461,"y":-68,"on":true},{"x":461,"y":-207,"on":false},{"x":344,"y":-207,"on":true},{"x":324,"y":-207,"on":false},{"x":291,"y":-200,"on":false},{"x":279,"y":-196,"on":true},{"x":279,"y":-117,"on":true},{"x":288,"y":-121,"on":false},{"x":311,"y":-126,"on":false},{"x":324,"y":-126,"on":true},{"x":347,"y":-126,"on":false},{"x":371,"y":-99,"on":false},{"x":371,"y":-68,"on":true},{"x":371,"y":-4,"on":true},{"x":349,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":271,"y":-10,"on":false},{"x":200,"y":32,"on":false},{"x":178,"y":66,"on":true},{"x":171,"y":66,"on":true},{"x":153,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true}], + [{"x":299,"y":463,"on":true},{"x":229,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":278,"on":true},{"x":178,"y":265,"on":true},{"x":178,"y":171,"on":false},{"x":232,"y":75,"on":false},{"x":301,"y":75,"on":true},{"x":414,"y":75,"on":false},{"x":414,"y":271,"on":true},{"x":414,"y":463,"on":false}] + ] + }, + "uni1D81": { + "advanceWidth": 568, + "contours": [ + [{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":488,"on":false},{"x":389,"y":536,"on":false},{"x":389,"y":555,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":83,"on":true},{"x":535,"y":83,"on":true},{"x":535,"y":-68,"on":true},{"x":535,"y":-207,"on":false},{"x":419,"y":-207,"on":true},{"x":399,"y":-207,"on":false},{"x":365,"y":-200,"on":false},{"x":354,"y":-196,"on":true},{"x":354,"y":-117,"on":true},{"x":363,"y":-121,"on":false},{"x":386,"y":-126,"on":false},{"x":399,"y":-126,"on":true},{"x":422,"y":-126,"on":false},{"x":446,"y":-99,"on":false},{"x":446,"y":-68,"on":true},{"x":446,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "uni1D82": { + "advanceWidth": 324, + "contours": [ + [{"x":123,"y":-207,"on":true},{"x":103,"y":-207,"on":false},{"x":70,"y":-200,"on":false},{"x":58,"y":-196,"on":true},{"x":58,"y":-117,"on":true},{"x":67,"y":-121,"on":false},{"x":90,"y":-126,"on":false},{"x":103,"y":-126,"on":true},{"x":126,"y":-126,"on":false},{"x":150,"y":-99,"on":false},{"x":150,"y":-68,"on":true},{"x":150,"y":0,"on":true},{"x":95,"y":0,"on":true},{"x":95,"y":459,"on":true},{"x":14,"y":459,"on":true},{"x":14,"y":509,"on":true},{"x":95,"y":541,"on":true},{"x":95,"y":573,"on":true},{"x":95,"y":674,"on":false},{"x":175,"y":765,"on":false},{"x":255,"y":765,"on":true},{"x":286,"y":765,"on":false},{"x":337,"y":754,"on":false},{"x":359,"y":746,"on":true},{"x":334,"y":668,"on":true},{"x":318,"y":672,"on":false},{"x":283,"y":681,"on":false},{"x":264,"y":681,"on":true},{"x":229,"y":681,"on":false},{"x":197,"y":630,"on":false},{"x":197,"y":574,"on":true},{"x":197,"y":539,"on":true},{"x":313,"y":539,"on":true},{"x":313,"y":459,"on":true},{"x":197,"y":459,"on":true},{"x":197,"y":83,"on":true},{"x":240,"y":83,"on":true},{"x":240,"y":-68,"on":true},{"x":240,"y":-207,"on":false}] + ] + }, + "uni1D83": { + "advanceWidth": 709, + "contours": [ + [{"x":243,"y":549,"on":true},{"x":339,"y":549,"on":false},{"x":391,"y":469,"on":true},{"x":396,"y":469,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":108,"on":true},{"x":698,"y":108,"on":true},{"x":698,"y":-60,"on":true},{"x":698,"y":-204,"on":false},{"x":586,"y":-204,"on":true},{"x":566,"y":-204,"on":false},{"x":534,"y":-198,"on":false},{"x":523,"y":-193,"on":true},{"x":523,"y":-114,"on":true},{"x":531,"y":-118,"on":false},{"x":553,"y":-123,"on":false},{"x":565,"y":-123,"on":true},{"x":608,"y":-123,"on":false},{"x":608,"y":-65,"on":true},{"x":608,"y":28,"on":true},{"x":491,"y":28,"on":true},{"x":491,"y":-3,"on":true},{"x":491,"y":-118,"on":false},{"x":376,"y":-240,"on":false},{"x":255,"y":-240,"on":true},{"x":204,"y":-240,"on":false},{"x":119,"y":-224,"on":false},{"x":82,"y":-207,"on":true},{"x":82,"y":-116,"on":true},{"x":122,"y":-136,"on":false},{"x":211,"y":-156,"on":false},{"x":258,"y":-156,"on":true},{"x":321,"y":-156,"on":false},{"x":390,"y":-87,"on":false},{"x":390,"y":-17,"on":true},{"x":390,"y":0,"on":true},{"x":390,"y":14,"on":false},{"x":392,"y":57,"on":false},{"x":393,"y":72,"on":true},{"x":389,"y":72,"on":true},{"x":339,"y":-10,"on":false},{"x":242,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":48,"y":135,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":402,"on":false},{"x":152,"y":549,"on":false}], + [{"x":266,"y":463,"on":true},{"x":210,"y":463,"on":false},{"x":152,"y":362,"on":false},{"x":152,"y":267,"on":true},{"x":152,"y":75,"on":false},{"x":268,"y":75,"on":true},{"x":332,"y":75,"on":false},{"x":392,"y":157,"on":false},{"x":392,"y":248,"on":true},{"x":392,"y":270,"on":true},{"x":392,"y":372,"on":false},{"x":331,"y":463,"on":false}] + ] + }, + "uni1D84": { + "advanceWidth": 511, + "contours": [ + [{"x":177,"y":760,"on":true},{"x":177,"y":386,"on":true},{"x":177,"y":362,"on":false},{"x":174,"y":307,"on":false},{"x":172,"y":282,"on":true},{"x":175,"y":282,"on":true},{"x":186,"y":298,"on":false},{"x":216,"y":341,"on":false},{"x":229,"y":357,"on":true},{"x":377,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":305,"y":315,"on":true},{"x":452,"y":83,"on":true},{"x":509,"y":83,"on":true},{"x":509,"y":-68,"on":true},{"x":509,"y":-207,"on":false},{"x":393,"y":-207,"on":true},{"x":373,"y":-207,"on":false},{"x":339,"y":-200,"on":false},{"x":328,"y":-196,"on":true},{"x":328,"y":-117,"on":true},{"x":337,"y":-121,"on":false},{"x":360,"y":-126,"on":false},{"x":373,"y":-126,"on":true},{"x":396,"y":-126,"on":false},{"x":420,"y":-99,"on":false},{"x":420,"y":-68,"on":true},{"x":420,"y":0,"on":true},{"x":386,"y":0,"on":true},{"x":236,"y":246,"on":true},{"x":177,"y":190,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true}] + ] + }, + "uni1D85": { + "advanceWidth": 255, + "contours": [ + [{"x":178,"y":760,"on":true},{"x":178,"y":83,"on":true},{"x":221,"y":83,"on":true},{"x":221,"y":-68,"on":true},{"x":221,"y":-207,"on":false},{"x":105,"y":-207,"on":true},{"x":85,"y":-207,"on":false},{"x":51,"y":-200,"on":false},{"x":40,"y":-196,"on":true},{"x":40,"y":-117,"on":true},{"x":49,"y":-121,"on":false},{"x":72,"y":-126,"on":false},{"x":85,"y":-126,"on":true},{"x":108,"y":-126,"on":false},{"x":132,"y":-99,"on":false},{"x":132,"y":-68,"on":true},{"x":132,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true}] + ] + }, + "uni1D86": { + "advanceWidth": 860, + "contours": [ + [{"x":713,"y":-207,"on":true},{"x":693,"y":-207,"on":false},{"x":659,"y":-200,"on":false},{"x":647,"y":-196,"on":true},{"x":647,"y":-117,"on":true},{"x":657,"y":-121,"on":false},{"x":680,"y":-126,"on":false},{"x":693,"y":-126,"on":true},{"x":716,"y":-126,"on":false},{"x":739,"y":-99,"on":false},{"x":739,"y":-68,"on":true},{"x":739,"y":0,"on":true},{"x":684,"y":0,"on":true},{"x":684,"y":338,"on":true},{"x":684,"y":463,"on":false},{"x":597,"y":463,"on":true},{"x":535,"y":463,"on":false},{"x":481,"y":374,"on":false},{"x":481,"y":290,"on":true},{"x":481,"y":0,"on":true},{"x":380,"y":0,"on":true},{"x":380,"y":339,"on":true},{"x":380,"y":463,"on":false},{"x":292,"y":463,"on":true},{"x":226,"y":463,"on":false},{"x":178,"y":363,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":197,"y":509,"on":false},{"x":273,"y":549,"on":false},{"x":317,"y":549,"on":true},{"x":429,"y":549,"on":false},{"x":464,"y":464,"on":true},{"x":471,"y":464,"on":true},{"x":495,"y":508,"on":false},{"x":575,"y":549,"on":false},{"x":622,"y":549,"on":true},{"x":704,"y":549,"on":false},{"x":786,"y":455,"on":false},{"x":786,"y":354,"on":true},{"x":786,"y":83,"on":true},{"x":829,"y":83,"on":true},{"x":829,"y":-68,"on":true},{"x":829,"y":-207,"on":false}] + ] + }, + "uni1D87": { + "advanceWidth": 573, + "contours": [ + [{"x":426,"y":-207,"on":true},{"x":406,"y":-207,"on":false},{"x":372,"y":-200,"on":false},{"x":360,"y":-196,"on":true},{"x":360,"y":-117,"on":true},{"x":370,"y":-121,"on":false},{"x":393,"y":-126,"on":false},{"x":405,"y":-126,"on":true},{"x":428,"y":-126,"on":false},{"x":452,"y":-99,"on":false},{"x":452,"y":-68,"on":true},{"x":452,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":463,"on":false},{"x":304,"y":463,"on":true},{"x":233,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":198,"y":508,"on":false},{"x":280,"y":549,"on":false},{"x":326,"y":549,"on":true},{"x":409,"y":549,"on":false},{"x":498,"y":456,"on":false},{"x":498,"y":356,"on":true},{"x":498,"y":83,"on":true},{"x":542,"y":83,"on":true},{"x":542,"y":-68,"on":true},{"x":542,"y":-207,"on":false}] + ] + }, + "uni1D88": { + "advanceWidth": 566, + "contours": [ + [{"x":324,"y":549,"on":true},{"x":414,"y":549,"on":false},{"x":519,"y":409,"on":false},{"x":519,"y":270,"on":true},{"x":519,"y":199,"on":false},{"x":489,"y":92,"on":false},{"x":462,"y":57,"on":true},{"x":462,"y":-68,"on":true},{"x":462,"y":-207,"on":false},{"x":345,"y":-207,"on":true},{"x":325,"y":-207,"on":false},{"x":292,"y":-200,"on":false},{"x":280,"y":-196,"on":true},{"x":280,"y":-117,"on":true},{"x":289,"y":-121,"on":false},{"x":312,"y":-126,"on":false},{"x":325,"y":-126,"on":true},{"x":348,"y":-126,"on":false},{"x":372,"y":-99,"on":false},{"x":372,"y":-68,"on":true},{"x":372,"y":-4,"on":true},{"x":349,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":199,"y":34,"on":false},{"x":178,"y":68,"on":true},{"x":172,"y":68,"on":true},{"x":174,"y":48,"on":false},{"x":178,"y":2,"on":false},{"x":178,"y":-15,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":539,"on":true},{"x":159,"y":539,"on":true},{"x":172,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":504,"on":false},{"x":271,"y":549,"on":false}], + [{"x":299,"y":464,"on":true},{"x":234,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":287,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":173,"on":false},{"x":232,"y":76,"on":false},{"x":300,"y":76,"on":true},{"x":358,"y":76,"on":false},{"x":414,"y":179,"on":false},{"x":414,"y":271,"on":true},{"x":414,"y":363,"on":false},{"x":359,"y":464,"on":false}] + ] + }, + "uni1D89": { + "advanceWidth": 385, + "contours": [ + [{"x":318,"y":549,"on":true},{"x":346,"y":549,"on":false},{"x":372,"y":543,"on":true},{"x":360,"y":444,"on":true},{"x":350,"y":447,"on":false},{"x":323,"y":451,"on":false},{"x":311,"y":451,"on":true},{"x":256,"y":451,"on":false},{"x":178,"y":360,"on":false},{"x":178,"y":282,"on":true},{"x":178,"y":83,"on":true},{"x":221,"y":83,"on":true},{"x":221,"y":-68,"on":true},{"x":221,"y":-207,"on":false},{"x":104,"y":-207,"on":true},{"x":84,"y":-207,"on":false},{"x":51,"y":-200,"on":false},{"x":39,"y":-196,"on":true},{"x":39,"y":-117,"on":true},{"x":49,"y":-121,"on":false},{"x":71,"y":-126,"on":false},{"x":84,"y":-126,"on":true},{"x":107,"y":-126,"on":false},{"x":131,"y":-99,"on":false},{"x":131,"y":-68,"on":true},{"x":131,"y":0,"on":true},{"x":76,"y":0,"on":true},{"x":76,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":445,"on":true},{"x":174,"y":445,"on":true},{"x":196,"y":488,"on":false},{"x":269,"y":549,"on":false}] + ] + }, + "uni1D8A": { + "advanceWidth": 435, + "contours": [ + [{"x":230,"y":549,"on":true},{"x":274,"y":549,"on":false},{"x":352,"y":530,"on":false},{"x":389,"y":512,"on":true},{"x":356,"y":433,"on":true},{"x":325,"y":448,"on":false},{"x":262,"y":467,"on":false},{"x":228,"y":467,"on":true},{"x":186,"y":467,"on":false},{"x":142,"y":436,"on":false},{"x":142,"y":409,"on":true},{"x":142,"y":390,"on":false},{"x":162,"y":362,"on":false},{"x":212,"y":334,"on":false},{"x":255,"y":314,"on":true},{"x":298,"y":294,"on":false},{"x":362,"y":252,"on":false},{"x":396,"y":194,"on":false},{"x":396,"y":151,"on":true},{"x":396,"y":84,"on":false},{"x":356,"y":44,"on":true},{"x":356,"y":-68,"on":true},{"x":356,"y":-207,"on":false},{"x":239,"y":-207,"on":true},{"x":220,"y":-207,"on":false},{"x":186,"y":-200,"on":false},{"x":174,"y":-196,"on":true},{"x":174,"y":-117,"on":true},{"x":184,"y":-121,"on":false},{"x":206,"y":-126,"on":false},{"x":219,"y":-126,"on":true},{"x":242,"y":-126,"on":false},{"x":266,"y":-99,"on":false},{"x":266,"y":-68,"on":true},{"x":266,"y":-2,"on":true},{"x":251,"y":-6,"on":false},{"x":218,"y":-10,"on":false},{"x":199,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":74,"y":6,"on":false},{"x":43,"y":22,"on":true},{"x":43,"y":116,"on":true},{"x":74,"y":99,"on":false},{"x":158,"y":73,"on":false},{"x":199,"y":73,"on":true},{"x":249,"y":73,"on":false},{"x":296,"y":111,"on":false},{"x":296,"y":143,"on":true},{"x":296,"y":161,"on":false},{"x":278,"y":190,"on":false},{"x":230,"y":220,"on":false},{"x":185,"y":240,"on":true},{"x":140,"y":260,"on":false},{"x":76,"y":303,"on":false},{"x":43,"y":361,"on":false},{"x":43,"y":404,"on":true},{"x":43,"y":473,"on":false},{"x":145,"y":549,"on":false}] + ] + }, + "uni1D8B": { + "advanceWidth": 404, + "contours": [ + [{"x":214,"y":765,"on":true},{"x":234,"y":765,"on":false},{"x":272,"y":757,"on":false},{"x":282,"y":752,"on":true},{"x":282,"y":670,"on":true},{"x":273,"y":674,"on":false},{"x":247,"y":680,"on":false},{"x":234,"y":680,"on":true},{"x":206,"y":680,"on":false},{"x":178,"y":647,"on":false},{"x":178,"y":601,"on":true},{"x":178,"y":108,"on":true},{"x":394,"y":108,"on":true},{"x":394,"y":-66,"on":true},{"x":394,"y":-210,"on":false},{"x":281,"y":-210,"on":true},{"x":262,"y":-210,"on":false},{"x":229,"y":-204,"on":false},{"x":218,"y":-199,"on":true},{"x":218,"y":-120,"on":true},{"x":227,"y":-124,"on":false},{"x":248,"y":-129,"on":false},{"x":260,"y":-129,"on":true},{"x":282,"y":-129,"on":false},{"x":304,"y":-102,"on":false},{"x":304,"y":-71,"on":true},{"x":304,"y":28,"on":true},{"x":178,"y":28,"on":true},{"x":178,"y":-78,"on":true},{"x":178,"y":-164,"on":false},{"x":109,"y":-240,"on":false},{"x":47,"y":-240,"on":true},{"x":-1,"y":-240,"on":false},{"x":-30,"y":-223,"on":true},{"x":-30,"y":-143,"on":true},{"x":-20,"y":-148,"on":false},{"x":9,"y":-154,"on":false},{"x":24,"y":-154,"on":true},{"x":50,"y":-154,"on":false},{"x":75,"y":-122,"on":false},{"x":75,"y":-78,"on":true},{"x":75,"y":603,"on":true},{"x":75,"y":692,"on":false},{"x":152,"y":765,"on":false}] + ] + }, + "uni1D8C": { + "advanceWidth": 477, + "contours": [ + [{"x":323,"y":-210,"on":true},{"x":304,"y":-210,"on":false},{"x":271,"y":-204,"on":false},{"x":260,"y":-199,"on":true},{"x":260,"y":-120,"on":true},{"x":269,"y":-124,"on":false},{"x":290,"y":-129,"on":false},{"x":302,"y":-129,"on":true},{"x":324,"y":-129,"on":false},{"x":346,"y":-102,"on":false},{"x":346,"y":-71,"on":true},{"x":346,"y":0,"on":true},{"x":182,"y":0,"on":true},{"x":1,"y":539,"on":true},{"x":109,"y":539,"on":true},{"x":204,"y":226,"on":true},{"x":214,"y":195,"on":false},{"x":232,"y":125,"on":false},{"x":236,"y":97,"on":true},{"x":239,"y":97,"on":true},{"x":243,"y":120,"on":false},{"x":261,"y":188,"on":false},{"x":270,"y":220,"on":true},{"x":368,"y":539,"on":true},{"x":475,"y":539,"on":true},{"x":321,"y":82,"on":true},{"x":436,"y":82,"on":true},{"x":436,"y":-66,"on":true},{"x":436,"y":-210,"on":false}] + ] + }, + "uni1D8D": { + "advanceWidth": 490, + "contours": [ + [{"x":467,"y":539,"on":true},{"x":307,"y":275,"on":true},{"x":424,"y":83,"on":true},{"x":472,"y":83,"on":true},{"x":472,"y":-68,"on":true},{"x":472,"y":-207,"on":false},{"x":356,"y":-207,"on":true},{"x":336,"y":-207,"on":false},{"x":303,"y":-200,"on":false},{"x":291,"y":-196,"on":true},{"x":291,"y":-117,"on":true},{"x":300,"y":-121,"on":false},{"x":323,"y":-126,"on":false},{"x":336,"y":-126,"on":true},{"x":359,"y":-126,"on":false},{"x":383,"y":-99,"on":false},{"x":383,"y":-68,"on":true},{"x":383,"y":0,"on":true},{"x":361,"y":0,"on":true},{"x":244,"y":203,"on":true},{"x":126,"y":0,"on":true},{"x":13,"y":0,"on":true},{"x":181,"y":276,"on":true},{"x":22,"y":539,"on":true},{"x":136,"y":539,"on":true},{"x":244,"y":349,"on":true},{"x":353,"y":539,"on":true}] + ] + }, + "uni1D8E": { + "advanceWidth": 419, + "contours": [ + [{"x":380,"y":539,"on":true},{"x":380,"y":467,"on":true},{"x":149,"y":81,"on":true},{"x":395,"y":81,"on":true},{"x":395,"y":-68,"on":true},{"x":395,"y":-207,"on":false},{"x":279,"y":-207,"on":true},{"x":259,"y":-207,"on":false},{"x":225,"y":-200,"on":false},{"x":214,"y":-196,"on":true},{"x":214,"y":-117,"on":true},{"x":223,"y":-121,"on":false},{"x":246,"y":-126,"on":false},{"x":259,"y":-126,"on":true},{"x":282,"y":-126,"on":false},{"x":306,"y":-99,"on":false},{"x":306,"y":-68,"on":true},{"x":306,"y":0,"on":true},{"x":31,"y":0,"on":true},{"x":31,"y":65,"on":true},{"x":267,"y":458,"on":true},{"x":45,"y":458,"on":true},{"x":45,"y":539,"on":true}] + ] + }, + "uni1D8F": { + "advanceWidth": 525, + "contours": [ + [{"x":516,"y":-207,"on":true},{"x":464,"y":-207,"on":false},{"x":402,"y":-143,"on":false},{"x":402,"y":-69,"on":true},{"x":402,"y":0,"on":true},{"x":374,"y":0,"on":true},{"x":356,"y":75,"on":true},{"x":353,"y":75,"on":true},{"x":322,"y":32,"on":false},{"x":251,"y":-10,"on":false},{"x":192,"y":-10,"on":true},{"x":122,"y":-10,"on":false},{"x":40,"y":76,"on":false},{"x":40,"y":153,"on":true},{"x":40,"y":317,"on":false},{"x":266,"y":326,"on":true},{"x":348,"y":329,"on":true},{"x":348,"y":359,"on":true},{"x":348,"y":418,"on":false},{"x":301,"y":468,"on":false},{"x":257,"y":468,"on":true},{"x":222,"y":468,"on":false},{"x":155,"y":446,"on":false},{"x":123,"y":430,"on":true},{"x":91,"y":504,"on":true},{"x":127,"y":524,"on":false},{"x":218,"y":549,"on":false},{"x":267,"y":549,"on":true},{"x":449,"y":549,"on":false},{"x":449,"y":364,"on":true},{"x":449,"y":83,"on":true},{"x":492,"y":83,"on":true},{"x":492,"y":-64,"on":true},{"x":492,"y":-98,"on":false},{"x":516,"y":-128,"on":false},{"x":541,"y":-128,"on":true},{"x":552,"y":-128,"on":false},{"x":575,"y":-123,"on":false},{"x":584,"y":-119,"on":true},{"x":584,"y":-196,"on":true},{"x":560,"y":-207,"on":false}], + [{"x":224,"y":70,"on":true},{"x":278,"y":70,"on":false},{"x":347,"y":142,"on":false},{"x":347,"y":211,"on":true},{"x":347,"y":260,"on":true},{"x":285,"y":258,"on":true},{"x":208,"y":255,"on":false},{"x":145,"y":202,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":110,"on":false},{"x":188,"y":70,"on":false}] + ] + }, + "uni1D90": { + "advanceWidth": 571, + "contours": [ + [{"x":244,"y":549,"on":true},{"x":296,"y":549,"on":false},{"x":367,"y":507,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":83,"on":true},{"x":536,"y":83,"on":true},{"x":536,"y":-64,"on":true},{"x":536,"y":-98,"on":false},{"x":560,"y":-128,"on":false},{"x":585,"y":-128,"on":true},{"x":596,"y":-128,"on":false},{"x":619,"y":-123,"on":false},{"x":628,"y":-119,"on":true},{"x":628,"y":-196,"on":true},{"x":603,"y":-207,"on":false},{"x":560,"y":-207,"on":true},{"x":507,"y":-207,"on":false},{"x":446,"y":-143,"on":false},{"x":446,"y":-69,"on":true},{"x":446,"y":0,"on":true},{"x":409,"y":0,"on":true},{"x":394,"y":71,"on":true},{"x":389,"y":71,"on":true},{"x":366,"y":34,"on":false},{"x":295,"y":-10,"on":false},{"x":241,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":407,"on":false},{"x":155,"y":549,"on":false}], + [{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":266,"on":true},{"x":152,"y":75,"on":false},{"x":268,"y":75,"on":true},{"x":334,"y":75,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":269,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false}] + ] + }, + "uni1D91": { + "advanceWidth": 566, + "contours": [ + [{"x":520,"y":-240,"on":true},{"x":459,"y":-240,"on":false},{"x":389,"y":-164,"on":false},{"x":389,"y":-78,"on":true},{"x":389,"y":-10,"on":true},{"x":389,"y":7,"on":false},{"x":392,"y":52,"on":false},{"x":394,"y":68,"on":true},{"x":389,"y":68,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false},{"x":243,"y":-10,"on":true},{"x":153,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":482,"on":false},{"x":389,"y":531,"on":false},{"x":389,"y":550,"on":true},{"x":389,"y":617,"on":true},{"x":389,"y":767,"on":false},{"x":523,"y":767,"on":true},{"x":542,"y":767,"on":false},{"x":579,"y":760,"on":false},{"x":589,"y":755,"on":true},{"x":589,"y":670,"on":true},{"x":581,"y":674,"on":false},{"x":554,"y":680,"on":false},{"x":541,"y":680,"on":true},{"x":516,"y":680,"on":false},{"x":491,"y":652,"on":false},{"x":491,"y":617,"on":true},{"x":491,"y":-75,"on":true},{"x":491,"y":-121,"on":false},{"x":516,"y":-154,"on":false},{"x":541,"y":-154,"on":true},{"x":555,"y":-154,"on":false},{"x":579,"y":-149,"on":false},{"x":589,"y":-145,"on":true},{"x":589,"y":-227,"on":true},{"x":578,"y":-233,"on":false},{"x":541,"y":-240,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "uni1D92": { + "advanceWidth": 520, + "contours": [ + [{"x":288,"y":-10,"on":true},{"x":175,"y":-10,"on":false},{"x":48,"y":136,"on":false},{"x":48,"y":266,"on":true},{"x":48,"y":402,"on":false},{"x":166,"y":549,"on":false},{"x":268,"y":549,"on":true},{"x":366,"y":549,"on":false},{"x":475,"y":416,"on":false},{"x":475,"y":307,"on":true},{"x":475,"y":247,"on":true},{"x":151,"y":247,"on":true},{"x":156,"y":74,"on":false},{"x":295,"y":74,"on":true},{"x":339,"y":74,"on":false},{"x":412,"y":92,"on":false},{"x":451,"y":112,"on":true},{"x":451,"y":-64,"on":true},{"x":451,"y":-98,"on":false},{"x":475,"y":-128,"on":false},{"x":499,"y":-128,"on":true},{"x":510,"y":-128,"on":false},{"x":534,"y":-123,"on":false},{"x":543,"y":-119,"on":true},{"x":543,"y":-196,"on":true},{"x":518,"y":-207,"on":false},{"x":474,"y":-207,"on":true},{"x":422,"y":-207,"on":false},{"x":361,"y":-143,"on":false},{"x":361,"y":-69,"on":true},{"x":361,"y":-3,"on":true},{"x":344,"y":-6,"on":false},{"x":308,"y":-10,"on":false}], + [{"x":268,"y":469,"on":true},{"x":218,"y":469,"on":false},{"x":158,"y":395,"on":false},{"x":153,"y":324,"on":true},{"x":375,"y":324,"on":true},{"x":375,"y":387,"on":false},{"x":323,"y":469,"on":false}] + ] + }, + "uni1D93": { + "advanceWidth": 459, + "contours": [ + [{"x":444,"y":-207,"on":true},{"x":391,"y":-207,"on":false},{"x":330,"y":-143,"on":false},{"x":330,"y":-69,"on":true},{"x":330,"y":-3,"on":true},{"x":313,"y":-7,"on":false},{"x":274,"y":-10,"on":false},{"x":251,"y":-10,"on":true},{"x":142,"y":-10,"on":false},{"x":40,"y":79,"on":false},{"x":40,"y":148,"on":true},{"x":40,"y":205,"on":false},{"x":104,"y":268,"on":false},{"x":154,"y":280,"on":true},{"x":154,"y":285,"on":true},{"x":110,"y":298,"on":false},{"x":62,"y":361,"on":false},{"x":62,"y":408,"on":true},{"x":62,"y":476,"on":false},{"x":170,"y":549,"on":false},{"x":255,"y":549,"on":true},{"x":304,"y":549,"on":false},{"x":386,"y":530,"on":false},{"x":423,"y":511,"on":true},{"x":387,"y":433,"on":true},{"x":358,"y":448,"on":false},{"x":296,"y":466,"on":false},{"x":258,"y":466,"on":true},{"x":158,"y":466,"on":false},{"x":158,"y":399,"on":true},{"x":158,"y":357,"on":false},{"x":223,"y":321,"on":false},{"x":284,"y":321,"on":true},{"x":333,"y":321,"on":true},{"x":333,"y":242,"on":true},{"x":272,"y":242,"on":true},{"x":205,"y":242,"on":false},{"x":142,"y":198,"on":false},{"x":142,"y":155,"on":true},{"x":142,"y":113,"on":false},{"x":207,"y":74,"on":false},{"x":261,"y":74,"on":true},{"x":308,"y":74,"on":false},{"x":389,"y":98,"on":false},{"x":420,"y":114,"on":true},{"x":420,"y":-64,"on":true},{"x":420,"y":-98,"on":false},{"x":444,"y":-128,"on":false},{"x":469,"y":-128,"on":true},{"x":480,"y":-128,"on":false},{"x":503,"y":-123,"on":false},{"x":512,"y":-119,"on":true},{"x":512,"y":-196,"on":true},{"x":487,"y":-207,"on":false}] + ] + }, + "uni1D94": { + "advanceWidth": 457, + "contours": [ + [{"x":145,"y":-207,"on":true},{"x":92,"y":-207,"on":false},{"x":32,"y":-143,"on":false},{"x":32,"y":-69,"on":true},{"x":32,"y":116,"on":true},{"x":63,"y":99,"on":false},{"x":145,"y":74,"on":false},{"x":193,"y":74,"on":true},{"x":246,"y":74,"on":false},{"x":315,"y":113,"on":false},{"x":315,"y":158,"on":true},{"x":315,"y":242,"on":false},{"x":183,"y":242,"on":true},{"x":127,"y":242,"on":true},{"x":127,"y":321,"on":true},{"x":175,"y":321,"on":true},{"x":234,"y":321,"on":false},{"x":302,"y":357,"on":false},{"x":302,"y":398,"on":true},{"x":302,"y":467,"on":false},{"x":202,"y":467,"on":true},{"x":168,"y":467,"on":false},{"x":105,"y":451,"on":false},{"x":71,"y":435,"on":true},{"x":36,"y":512,"on":true},{"x":116,"y":549,"on":false},{"x":212,"y":549,"on":true},{"x":294,"y":549,"on":false},{"x":399,"y":476,"on":false},{"x":399,"y":408,"on":true},{"x":399,"y":362,"on":false},{"x":348,"y":301,"on":false},{"x":305,"y":288,"on":true},{"x":305,"y":284,"on":true},{"x":353,"y":271,"on":false},{"x":416,"y":209,"on":false},{"x":416,"y":152,"on":true},{"x":416,"y":83,"on":false},{"x":309,"y":-10,"on":false},{"x":202,"y":-10,"on":true},{"x":180,"y":-10,"on":false},{"x":140,"y":-7,"on":false},{"x":122,"y":-3,"on":true},{"x":122,"y":-64,"on":true},{"x":122,"y":-98,"on":false},{"x":146,"y":-128,"on":false},{"x":170,"y":-128,"on":true},{"x":181,"y":-128,"on":false},{"x":204,"y":-123,"on":false},{"x":213,"y":-119,"on":true},{"x":213,"y":-196,"on":true},{"x":202,"y":-201,"on":false},{"x":165,"y":-207,"on":false}] + ] + }, + "uni1D95": { + "advanceWidth": 610, + "contours": [ + [{"x":583,"y":-207,"on":true},{"x":530,"y":-207,"on":false},{"x":469,"y":-143,"on":false},{"x":469,"y":-69,"on":true},{"x":469,"y":217,"on":true},{"x":457,"y":108,"on":false},{"x":343,"y":-10,"on":false},{"x":252,"y":-10,"on":true},{"x":154,"y":-10,"on":false},{"x":45,"y":124,"on":false},{"x":45,"y":233,"on":true},{"x":45,"y":292,"on":true},{"x":369,"y":292,"on":true},{"x":364,"y":465,"on":false},{"x":225,"y":465,"on":true},{"x":182,"y":465,"on":false},{"x":108,"y":446,"on":false},{"x":69,"y":427,"on":true},{"x":69,"y":513,"on":true},{"x":106,"y":532,"on":false},{"x":182,"y":549,"on":false},{"x":232,"y":549,"on":true},{"x":341,"y":549,"on":false},{"x":467,"y":414,"on":false},{"x":472,"y":292,"on":true},{"x":559,"y":292,"on":true},{"x":559,"y":-64,"on":true},{"x":559,"y":-98,"on":false},{"x":583,"y":-128,"on":false},{"x":608,"y":-128,"on":true},{"x":618,"y":-128,"on":false},{"x":642,"y":-123,"on":false},{"x":651,"y":-119,"on":true},{"x":651,"y":-196,"on":true},{"x":626,"y":-207,"on":false}], + [{"x":252,"y":70,"on":true},{"x":302,"y":70,"on":false},{"x":362,"y":144,"on":false},{"x":367,"y":216,"on":true},{"x":145,"y":216,"on":true},{"x":146,"y":153,"on":false},{"x":197,"y":70,"on":false}] + ] + }, + "uni1D96": { + "advanceWidth": 258, + "contours": [ + [{"x":127,"y":745,"on":true},{"x":152,"y":745,"on":false},{"x":185,"y":715,"on":false},{"x":185,"y":683,"on":true},{"x":185,"y":652,"on":false},{"x":152,"y":621,"on":false},{"x":127,"y":621,"on":true},{"x":102,"y":621,"on":false},{"x":69,"y":652,"on":false},{"x":69,"y":683,"on":true},{"x":69,"y":715,"on":false},{"x":102,"y":745,"on":false}], + [{"x":178,"y":539,"on":true},{"x":178,"y":83,"on":true},{"x":223,"y":83,"on":true},{"x":223,"y":-64,"on":true},{"x":223,"y":-98,"on":false},{"x":247,"y":-128,"on":false},{"x":271,"y":-128,"on":true},{"x":282,"y":-128,"on":false},{"x":305,"y":-123,"on":false},{"x":314,"y":-119,"on":true},{"x":314,"y":-196,"on":true},{"x":290,"y":-207,"on":false},{"x":247,"y":-207,"on":true},{"x":194,"y":-207,"on":false},{"x":133,"y":-143,"on":false},{"x":133,"y":-69,"on":true},{"x":133,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni1D97": { + "advanceWidth": 443, + "contours": [ + [{"x":168,"y":549,"on":true},{"x":274,"y":549,"on":false},{"x":395,"y":408,"on":false},{"x":395,"y":270,"on":true},{"x":395,"y":127,"on":false},{"x":272,"y":-10,"on":false},{"x":169,"y":-10,"on":true},{"x":148,"y":-10,"on":false},{"x":127,"y":-7,"on":true},{"x":127,"y":-64,"on":true},{"x":127,"y":-98,"on":false},{"x":151,"y":-128,"on":false},{"x":176,"y":-128,"on":true},{"x":187,"y":-128,"on":false},{"x":210,"y":-123,"on":false},{"x":219,"y":-119,"on":true},{"x":219,"y":-196,"on":true},{"x":208,"y":-201,"on":false},{"x":171,"y":-207,"on":false},{"x":151,"y":-207,"on":true},{"x":98,"y":-207,"on":false},{"x":37,"y":-143,"on":false},{"x":37,"y":-69,"on":true},{"x":37,"y":110,"on":true},{"x":65,"y":95,"on":false},{"x":126,"y":77,"on":false},{"x":162,"y":77,"on":true},{"x":290,"y":77,"on":false},{"x":290,"y":270,"on":true},{"x":290,"y":462,"on":false},{"x":161,"y":462,"on":true},{"x":136,"y":462,"on":false},{"x":82,"y":448,"on":false},{"x":59,"y":436,"on":true},{"x":28,"y":519,"on":true},{"x":54,"y":532,"on":false},{"x":125,"y":549,"on":false}] + ] + }, + "uni1D98": { + "advanceWidth": 259, + "contours": [ + [{"x":220,"y":765,"on":true},{"x":240,"y":765,"on":false},{"x":278,"y":757,"on":false},{"x":288,"y":752,"on":true},{"x":288,"y":670,"on":true},{"x":279,"y":674,"on":false},{"x":252,"y":680,"on":false},{"x":239,"y":680,"on":true},{"x":211,"y":680,"on":false},{"x":184,"y":647,"on":false},{"x":184,"y":601,"on":true},{"x":184,"y":152,"on":true},{"x":184,"y":72,"on":false},{"x":123,"y":-3,"on":false},{"x":69,"y":-8,"on":true},{"x":69,"y":-64,"on":true},{"x":69,"y":-98,"on":false},{"x":93,"y":-128,"on":false},{"x":118,"y":-128,"on":true},{"x":129,"y":-128,"on":false},{"x":152,"y":-123,"on":false},{"x":161,"y":-119,"on":true},{"x":161,"y":-196,"on":true},{"x":150,"y":-201,"on":false},{"x":113,"y":-207,"on":false},{"x":93,"y":-207,"on":true},{"x":40,"y":-207,"on":false},{"x":-21,"y":-143,"on":false},{"x":-21,"y":-69,"on":true},{"x":-21,"y":85,"on":true},{"x":-12,"y":82,"on":false},{"x":16,"y":76,"on":false},{"x":30,"y":76,"on":true},{"x":56,"y":76,"on":false},{"x":82,"y":108,"on":false},{"x":82,"y":152,"on":true},{"x":81,"y":603,"on":true},{"x":81,"y":692,"on":false},{"x":158,"y":765,"on":false}] + ] + }, + "uni1D99": { + "advanceWidth": 575, + "contours": [ + [{"x":495,"y":539,"on":true},{"x":495,"y":83,"on":true},{"x":541,"y":83,"on":true},{"x":541,"y":-64,"on":true},{"x":541,"y":-98,"on":false},{"x":565,"y":-128,"on":false},{"x":589,"y":-128,"on":true},{"x":612,"y":-128,"on":false},{"x":632,"y":-119,"on":true},{"x":632,"y":-196,"on":true},{"x":621,"y":-201,"on":false},{"x":584,"y":-207,"on":false},{"x":564,"y":-207,"on":true},{"x":512,"y":-207,"on":false},{"x":450,"y":-143,"on":false},{"x":450,"y":-69,"on":true},{"x":450,"y":0,"on":true},{"x":414,"y":0,"on":true},{"x":401,"y":71,"on":true},{"x":395,"y":71,"on":true},{"x":372,"y":30,"on":false},{"x":292,"y":-10,"on":false},{"x":245,"y":-10,"on":true},{"x":72,"y":-10,"on":false},{"x":72,"y":187,"on":true},{"x":72,"y":539,"on":true},{"x":174,"y":539,"on":true},{"x":174,"y":205,"on":true},{"x":174,"y":76,"on":false},{"x":266,"y":76,"on":true},{"x":339,"y":76,"on":false},{"x":393,"y":172,"on":false},{"x":393,"y":263,"on":true},{"x":393,"y":539,"on":true}] + ] + }, + "uni1D9A": { + "advanceWidth": 463, + "contours": [ + [{"x":147,"y":-207,"on":true},{"x":94,"y":-207,"on":false},{"x":33,"y":-143,"on":false},{"x":33,"y":-69,"on":true},{"x":33,"y":117,"on":true},{"x":64,"y":100,"on":false},{"x":149,"y":75,"on":false},{"x":197,"y":75,"on":true},{"x":250,"y":75,"on":false},{"x":322,"y":116,"on":false},{"x":322,"y":161,"on":true},{"x":322,"y":206,"on":false},{"x":253,"y":246,"on":false},{"x":183,"y":246,"on":true},{"x":121,"y":246,"on":true},{"x":121,"y":314,"on":true},{"x":266,"y":455,"on":true},{"x":39,"y":455,"on":true},{"x":39,"y":539,"on":true},{"x":400,"y":539,"on":true},{"x":400,"y":465,"on":true},{"x":247,"y":320,"on":true},{"x":339,"y":314,"on":false},{"x":424,"y":232,"on":false},{"x":424,"y":160,"on":true},{"x":424,"y":86,"on":false},{"x":314,"y":-9,"on":false},{"x":206,"y":-9,"on":true},{"x":184,"y":-9,"on":false},{"x":142,"y":-5,"on":false},{"x":123,"y":-1,"on":true},{"x":123,"y":-64,"on":true},{"x":123,"y":-98,"on":false},{"x":147,"y":-128,"on":false},{"x":172,"y":-128,"on":true},{"x":182,"y":-128,"on":false},{"x":206,"y":-123,"on":false},{"x":215,"y":-119,"on":true},{"x":215,"y":-196,"on":true},{"x":190,"y":-207,"on":false}] + ] + }, + "uni1D9B": { + "advanceWidth": 368, + "references": [ + {"glyph":"uni0252","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D9C": { + "advanceWidth": 288, + "references": [ + {"glyph":"c","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D9D": { + "advanceWidth": 310, + "references": [ + {"glyph":"uni0255","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D9E": { + "advanceWidth": 360, + "references": [ + {"glyph":"eth","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1D9F": { + "advanceWidth": 298, + "references": [ + {"glyph":"uni025C","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA0": { + "advanceWidth": 210, + "references": [ + {"glyph":"f","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA1": { + "advanceWidth": 165, + "references": [ + {"glyph":"uni025F","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA2": { + "advanceWidth": 368, + "references": [ + {"glyph":"uni0261","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA3": { + "advanceWidth": 371, + "references": [ + {"glyph":"uni0265","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA4": { + "advanceWidth": 165, + "references": [ + {"glyph":"uni0268","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA5": { + "advanceWidth": 214, + "references": [ + {"glyph":"uni0269","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA6": { + "advanceWidth": 207, + "references": [ + {"glyph":"uni026A","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA7": { + "advanceWidth": 207, + "references": [ + {"glyph":"uni1D7B","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA8": { + "advanceWidth": 165, + "references": [ + {"glyph":"uni029D","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DA9": { + "advanceWidth": 164, + "references": [ + {"glyph":"uni026D","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DAA": { + "advanceWidth": 166, + "references": [ + {"glyph":"uni1D85","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DAB": { + "advanceWidth": 263, + "references": [ + {"glyph":"uni029F","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DAC": { + "advanceWidth": 558, + "references": [ + {"glyph":"uni0271","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DAD": { + "advanceWidth": 558, + "references": [ + {"glyph":"uni0270","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DAE": { + "advanceWidth": 371, + "references": [ + {"glyph":"uni0272","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DAF": { + "advanceWidth": 371, + "references": [ + {"glyph":"uni0273","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB0": { + "advanceWidth": 388, + "references": [ + {"glyph":"uni0274","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB1": { + "advanceWidth": 362, + "references": [ + {"glyph":"uni0275","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB2": { + "advanceWidth": 448, + "references": [ + {"glyph":"uni0278","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB3": { + "advanceWidth": 282, + "references": [ + {"glyph":"uni0282","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB4": { + "advanceWidth": 164, + "references": [ + {"glyph":"uni0283","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB5": { + "advanceWidth": 223, + "references": [ + {"glyph":"uni01AB","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB6": { + "advanceWidth": 371, + "references": [ + {"glyph":"uni0289","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB7": { + "advanceWidth": 367, + "references": [ + {"glyph":"uni028A","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB8": { + "advanceWidth": 368, + "references": [ + {"glyph":"uni1D1C","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DB9": { + "advanceWidth": 375, + "references": [ + {"glyph":"uni028B","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DBA": { + "advanceWidth": 310, + "references": [ + {"glyph":"uni028C","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DBB": { + "advanceWidth": 272, + "references": [ + {"glyph":"z","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DBC": { + "advanceWidth": 272, + "references": [ + {"glyph":"uni0290","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DBD": { + "advanceWidth": 330, + "references": [ + {"glyph":"uni0291","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DBE": { + "advanceWidth": 308, + "references": [ + {"glyph":"uni0292","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DBF": { + "advanceWidth": 360, + "references": [ + {"glyph":"theta","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni1DC0": { + "advanceWidth": 0, + "contours": [ + [{"x":120,"y":811,"on":true},{"x":140,"y":811,"on":false},{"x":167,"y":784,"on":false},{"x":167,"y":756,"on":true},{"x":167,"y":728,"on":false},{"x":140,"y":701,"on":false},{"x":120,"y":701,"on":true},{"x":98,"y":701,"on":false},{"x":72,"y":728,"on":false},{"x":72,"y":756,"on":true},{"x":72,"y":784,"on":false},{"x":98,"y":811,"on":false}], + [{"x":22,"y":796,"on":true},{"x":27,"y":762,"on":false},{"x":47,"y":681,"on":false},{"x":57,"y":650,"on":true},{"x":57,"y":639,"on":true},{"x":9,"y":639,"on":true},{"x":-16,"y":674,"on":false},{"x":-61,"y":755,"on":false},{"x":-74,"y":786,"on":true},{"x":-74,"y":796,"on":true}], + [{"x":-120,"y":737,"on":true},{"x":-100,"y":737,"on":false},{"x":-72,"y":711,"on":false},{"x":-72,"y":682,"on":true},{"x":-72,"y":655,"on":false},{"x":-100,"y":628,"on":false},{"x":-120,"y":628,"on":true},{"x":-141,"y":628,"on":false},{"x":-168,"y":655,"on":false},{"x":-168,"y":682,"on":true},{"x":-168,"y":711,"on":false},{"x":-141,"y":737,"on":false}] + ] + }, + "uni1DC1": { + "advanceWidth": 0, + "contours": [ + [{"x":127,"y":701,"on":true},{"x":105,"y":701,"on":false},{"x":79,"y":728,"on":false},{"x":79,"y":756,"on":true},{"x":79,"y":784,"on":false},{"x":105,"y":811,"on":false},{"x":127,"y":811,"on":true},{"x":147,"y":811,"on":false},{"x":175,"y":784,"on":false},{"x":175,"y":756,"on":true},{"x":175,"y":728,"on":false},{"x":147,"y":701,"on":false}], + [{"x":-74,"y":639,"on":true},{"x":-74,"y":650,"on":true},{"x":-64,"y":681,"on":false},{"x":-44,"y":762,"on":false},{"x":-39,"y":796,"on":true},{"x":58,"y":796,"on":true},{"x":58,"y":786,"on":true},{"x":44,"y":755,"on":false},{"x":-2,"y":674,"on":false},{"x":-26,"y":639,"on":true}], + [{"x":-146,"y":628,"on":true},{"x":-167,"y":628,"on":false},{"x":-194,"y":655,"on":false},{"x":-194,"y":682,"on":true},{"x":-194,"y":711,"on":false},{"x":-167,"y":737,"on":false},{"x":-146,"y":737,"on":true},{"x":-125,"y":737,"on":false},{"x":-98,"y":711,"on":false},{"x":-98,"y":682,"on":true},{"x":-98,"y":655,"on":false},{"x":-125,"y":628,"on":false}] + ] + }, + "uni1DC2": { + "advanceWidth": 0, + "contours": [ + [{"x":42,"y":-212,"on":true},{"x":-38,"y":-212,"on":false},{"x":-38,"y":-181,"on":true},{"x":-38,"y":-170,"on":false},{"x":-15,"y":-159,"on":false},{"x":7,"y":-152,"on":false},{"x":7,"y":-148,"on":true},{"x":7,"y":-142,"on":false},{"x":-15,"y":-138,"on":false},{"x":-38,"y":-130,"on":false},{"x":-38,"y":-119,"on":true},{"x":-38,"y":-108,"on":false},{"x":-14,"y":-95,"on":false},{"x":10,"y":-86,"on":false},{"x":10,"y":-80,"on":true},{"x":10,"y":-72,"on":false},{"x":-11,"y":-72,"on":true},{"x":-31,"y":-72,"on":false},{"x":-50,"y":-82,"on":true},{"x":-54,"y":-54,"on":true},{"x":-45,"y":-50,"on":false},{"x":-15,"y":-42,"on":false},{"x":-1,"y":-42,"on":true},{"x":47,"y":-42,"on":false},{"x":47,"y":-72,"on":true},{"x":47,"y":-88,"on":false},{"x":24,"y":-104,"on":false},{"x":2,"y":-112,"on":false},{"x":2,"y":-118,"on":true},{"x":2,"y":-122,"on":false},{"x":23,"y":-126,"on":false},{"x":44,"y":-136,"on":false},{"x":44,"y":-148,"on":true},{"x":44,"y":-160,"on":false},{"x":23,"y":-169,"on":false},{"x":2,"y":-174,"on":false},{"x":2,"y":-179,"on":true},{"x":2,"y":-187,"on":false},{"x":42,"y":-188,"on":true}] + ] + }, + "uni1DC3": { + "advanceWidth": 0, + "contours": [ + [{"x":161,"y":662,"on":true},{"x":115,"y":662,"on":false},{"x":42,"y":633,"on":false},{"x":-24,"y":604,"on":false},{"x":-58,"y":604,"on":true},{"x":-102,"y":604,"on":false},{"x":-169,"y":654,"on":false},{"x":-169,"y":717,"on":true},{"x":-169,"y":735,"on":true},{"x":-102,"y":735,"on":true},{"x":-98,"y":678,"on":false},{"x":-56,"y":678,"on":true},{"x":-31,"y":678,"on":false},{"x":25,"y":706,"on":false},{"x":104,"y":733,"on":false},{"x":160,"y":733,"on":true},{"x":167,"y":733,"on":true},{"x":167,"y":662,"on":true}] + ] + }, + "uni1DC4": { + "advanceWidth": 0, + "contours": [ + [{"x":-134,"y":675,"on":true},{"x":-7,"y":675,"on":true},{"x":101,"y":738,"on":true},{"x":137,"y":676,"on":true},{"x":12,"y":603,"on":true},{"x":-134,"y":603,"on":true}] + ] + }, + "uni1DC5": { + "advanceWidth": 0, + "contours": [ + [{"x":134,"y":603,"on":true},{"x":-12,"y":603,"on":true},{"x":-137,"y":676,"on":true},{"x":-101,"y":738,"on":true},{"x":7,"y":675,"on":true},{"x":134,"y":675,"on":true}] + ] + }, + "uni1DC6": { + "advanceWidth": 0, + "contours": [ + [{"x":-134,"y":732,"on":true},{"x":12,"y":732,"on":true},{"x":137,"y":659,"on":true},{"x":101,"y":597,"on":true},{"x":-7,"y":660,"on":true},{"x":-134,"y":660,"on":true}] + ] + }, + "uni1DC7": { + "advanceWidth": 0, + "contours": [ + [{"x":134,"y":660,"on":true},{"x":7,"y":660,"on":true},{"x":-101,"y":597,"on":true},{"x":-137,"y":659,"on":true},{"x":-12,"y":732,"on":true},{"x":134,"y":732,"on":true}] + ] + }, + "uni1DC8": { + "advanceWidth": 0, + "contours": [ + [{"x":-64,"y":594,"on":true},{"x":-196,"y":672,"on":true},{"x":-160,"y":732,"on":true},{"x":-59,"y":671,"on":true},{"x":64,"y":738,"on":true},{"x":195,"y":659,"on":true},{"x":160,"y":600,"on":true},{"x":58,"y":661,"on":true}] + ] + }, + "uni1DC9": { + "advanceWidth": 0, + "contours": [ + [{"x":-59,"y":661,"on":true},{"x":-160,"y":600,"on":true},{"x":-196,"y":659,"on":true},{"x":-64,"y":738,"on":true},{"x":58,"y":671,"on":true},{"x":160,"y":732,"on":true},{"x":195,"y":672,"on":true},{"x":64,"y":594,"on":true}] + ] + }, + "uni1DCA": { + "advanceWidth": 0, + "references": [ + {"glyph":"r","x":-87,"y":-278,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DCB": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02C9","x":-328,"y":71,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"breve","x":-571,"y":8,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1DCC": { + "advanceWidth": 0, + "contours": [ + [{"x":-516,"y":669,"on":true},{"x":-516,"y":743,"on":true},{"x":-232,"y":743,"on":true},{"x":-228,"y":700,"on":false},{"x":-183,"y":665,"on":false},{"x":-148,"y":665,"on":true},{"x":-114,"y":665,"on":false},{"x":-68,"y":699,"on":false},{"x":-64,"y":743,"on":true},{"x":-1,"y":743,"on":true},{"x":-4,"y":672,"on":false},{"x":-81,"y":590,"on":false},{"x":-148,"y":590,"on":true},{"x":-242,"y":590,"on":false},{"x":-278,"y":669,"on":true}] + ] + }, + "uni1DCD": { + "advanceWidth": 0, + "contours": [ + [{"x":59,"y":769,"on":true},{"x":94,"y":748,"on":false},{"x":202,"y":697,"on":false},{"x":333,"y":643,"on":false},{"x":400,"y":618,"on":true},{"x":400,"y":606,"on":true},{"x":328,"y":606,"on":true},{"x":241,"y":626,"on":false},{"x":74,"y":672,"on":false},{"x":0,"y":700,"on":true},{"x":-79,"y":672,"on":false},{"x":-248,"y":626,"on":false},{"x":-330,"y":606,"on":true},{"x":-401,"y":606,"on":true},{"x":-401,"y":617,"on":true},{"x":-361,"y":632,"on":false},{"x":-265,"y":670,"on":false},{"x":-169,"y":712,"on":false},{"x":-85,"y":752,"on":false},{"x":-56,"y":769,"on":true}] + ] + }, + "uni1DCE": { + "advanceWidth": 0, + "contours": [ + [{"x":-246,"y":661,"on":true},{"x":-246,"y":684,"on":false},{"x":-270,"y":706,"on":false},{"x":-290,"y":706,"on":true},{"x":-316,"y":706,"on":false},{"x":-334,"y":699,"on":true},{"x":-334,"y":766,"on":true},{"x":-321,"y":770,"on":false},{"x":-291,"y":775,"on":false},{"x":-272,"y":775,"on":true},{"x":-222,"y":775,"on":false},{"x":-168,"y":722,"on":false},{"x":-168,"y":675,"on":true},{"x":-168,"y":635,"on":false},{"x":-218,"y":564,"on":false},{"x":-259,"y":537,"on":true},{"x":-313,"y":546,"on":true},{"x":-279,"y":578,"on":false},{"x":-246,"y":632,"on":false}] + ] + }, + "uni1DCF": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni035B","x":-258,"y":-824,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1DD0": { + "advanceWidth": 0, + "contours": [ + [{"x":-129,"y":0,"on":true},{"x":-62,"y":0,"on":true},{"x":-105,"y":-105,"on":true},{"x":-77,"y":-90,"on":false},{"x":-48,"y":-90,"on":true},{"x":-19,"y":-90,"on":false},{"x":25,"y":-111,"on":false},{"x":61,"y":-138,"on":false},{"x":98,"y":-159,"on":false},{"x":120,"y":-159,"on":true},{"x":140,"y":-159,"on":false},{"x":164,"y":-132,"on":false},{"x":164,"y":-112,"on":true},{"x":164,"y":-90,"on":false},{"x":136,"y":-64,"on":false},{"x":117,"y":-58,"on":true},{"x":140,"y":-9,"on":true},{"x":177,"y":-20,"on":false},{"x":223,"y":-80,"on":false},{"x":223,"y":-123,"on":true},{"x":223,"y":-172,"on":false},{"x":169,"y":-230,"on":false},{"x":120,"y":-230,"on":true},{"x":86,"y":-230,"on":false},{"x":34,"y":-207,"on":false},{"x":-9,"y":-177,"on":false},{"x":-48,"y":-154,"on":false},{"x":-68,"y":-154,"on":true},{"x":-102,"y":-154,"on":false},{"x":-142,"y":-194,"on":false},{"x":-156,"y":-228,"on":true},{"x":-224,"y":-228,"on":true}] + ] + }, + "uni1DD1": { + "advanceWidth": 0, + "contours": [ + [{"x":26,"y":721,"on":true},{"x":26,"y":690,"on":false},{"x":55,"y":655,"on":false},{"x":83,"y":655,"on":true},{"x":108,"y":655,"on":false},{"x":136,"y":686,"on":false},{"x":136,"y":712,"on":true},{"x":136,"y":737,"on":false},{"x":108,"y":769,"on":false},{"x":84,"y":769,"on":true},{"x":84,"y":821,"on":true},{"x":131,"y":821,"on":false},{"x":191,"y":762,"on":false},{"x":191,"y":712,"on":true},{"x":191,"y":664,"on":false},{"x":132,"y":603,"on":false},{"x":83,"y":603,"on":true},{"x":34,"y":603,"on":false},{"x":-26,"y":659,"on":false},{"x":-26,"y":708,"on":true},{"x":-26,"y":738,"on":false},{"x":-55,"y":774,"on":false},{"x":-82,"y":774,"on":true},{"x":-107,"y":774,"on":false},{"x":-136,"y":742,"on":false},{"x":-136,"y":716,"on":true},{"x":-136,"y":692,"on":false},{"x":-108,"y":659,"on":false},{"x":-84,"y":659,"on":true},{"x":-84,"y":608,"on":true},{"x":-132,"y":608,"on":false},{"x":-191,"y":667,"on":false},{"x":-191,"y":717,"on":true},{"x":-191,"y":764,"on":false},{"x":-132,"y":826,"on":false},{"x":-83,"y":826,"on":true},{"x":-35,"y":826,"on":false},{"x":26,"y":769,"on":false}] + ] + }, + "uni1DD2": { + "advanceWidth": 0, + "contours": [ + [{"x":60,"y":694,"on":true},{"x":60,"y":736,"on":false},{"x":26,"y":773,"on":false},{"x":1,"y":773,"on":true},{"x":-24,"y":773,"on":false},{"x":-53,"y":741,"on":false},{"x":-53,"y":717,"on":true},{"x":-53,"y":692,"on":false},{"x":-25,"y":664,"on":false},{"x":-6,"y":664,"on":true},{"x":14,"y":664,"on":false},{"x":25,"y":671,"on":true},{"x":25,"y":616,"on":true},{"x":19,"y":612,"on":false},{"x":-1,"y":608,"on":false},{"x":-10,"y":608,"on":true},{"x":-59,"y":608,"on":false},{"x":-114,"y":668,"on":false},{"x":-114,"y":716,"on":true},{"x":-114,"y":767,"on":false},{"x":-48,"y":828,"on":false},{"x":2,"y":828,"on":true},{"x":54,"y":828,"on":false},{"x":121,"y":760,"on":false},{"x":121,"y":696,"on":true},{"x":121,"y":656,"on":false},{"x":97,"y":580,"on":false},{"x":45,"y":522,"on":false},{"x":3,"y":510,"on":true},{"x":3,"y":564,"on":true},{"x":32,"y":580,"on":false},{"x":60,"y":653,"on":false}] + ] + }, + "uni1DD3": { + "advanceWidth": 0, + "references": [ + {"glyph":"breve","x":-70,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"breve","x":-313,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1DD4": { + "advanceWidth": 0, + "references": [ + {"glyph":"ae","x":-170,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DD5": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniA735","x":-182,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DD6": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniA739","x":-158,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DD7": { + "advanceWidth": 0, + "references": [ + {"glyph":"ccedilla","x":-90,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DD8": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniA77A","x":-114,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DD9": { + "advanceWidth": 0, + "references": [ + {"glyph":"eth","x":-115,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DDA": { + "advanceWidth": 0, + "references": [ + {"glyph":"g","x":-117,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DDB": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0262","x":-108,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DDC": { + "advanceWidth": 0, + "references": [ + {"glyph":"k","x":-104,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DDD": { + "advanceWidth": 0, + "references": [ + {"glyph":"l","x":-47,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DDE": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni029F","x":-81,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DDF": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni1D0D","x":-144,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE0": { + "advanceWidth": 0, + "references": [ + {"glyph":"n","x":-119,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE1": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0274","x":-124,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE2": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0280","x":-105,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE3": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniA75B","x":-89,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE4": { + "advanceWidth": 0, + "references": [ + {"glyph":"s","x":-88,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE5": { + "advanceWidth": 0, + "references": [ + {"glyph":"longs","x":-59,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE6": { + "advanceWidth": 0, + "references": [ + {"glyph":"z","x":-84,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE7": { + "advanceWidth": 0, + "references": [ + {"glyph":"alpha","x":-119,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE8": { + "advanceWidth": 0, + "references": [ + {"glyph":"b","x":-117,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DE9": { + "advanceWidth": 0, + "references": [ + {"glyph":"beta","x":-121,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DEA": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0259","x":-107,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DEB": { + "advanceWidth": 0, + "references": [ + {"glyph":"f","x":-63,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DEC": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniAB38","x":-76,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DED": { + "advanceWidth": 0, + "references": [ + {"glyph":"o","x":-114,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true}, + {"glyph":"uni1AB9","x":-78,"y":648,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DEE": { + "advanceWidth": 0, + "references": [ + {"glyph":"p","x":-117,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DEF": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0283","x":-47,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DF0": { + "advanceWidth": 0, + "references": [ + {"glyph":"u","x":-119,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true}, + {"glyph":"uni1AB9","x":-87,"y":648,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DF1": { + "advanceWidth": 0, + "references": [ + {"glyph":"w","x":-157,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DF2": { + "advanceWidth": 0, + "references": [ + {"glyph":"adieresis","x":-107,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DF3": { + "advanceWidth": 0, + "references": [ + {"glyph":"odieresis","x":-114,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DF4": { + "advanceWidth": 0, + "references": [ + {"glyph":"udieresis","x":-119,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni1DF5": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni031D","x":0,"y":672,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni1DFB": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni2034","x":-335,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1DFC": { + "advanceWidth": 0, + "contours": [ + [{"x":312,"y":-217,"on":true},{"x":245,"y":-217,"on":true},{"x":238,"y":-180,"on":false},{"x":164,"y":-142,"on":false},{"x":56,"y":-128,"on":false},{"x":1,"y":-128,"on":true},{"x":-64,"y":-128,"on":false},{"x":-173,"y":-140,"on":false},{"x":-241,"y":-178,"on":false},{"x":-247,"y":-217,"on":true},{"x":-313,"y":-217,"on":true},{"x":-305,"y":-132,"on":false},{"x":-140,"y":-51,"on":false},{"x":0,"y":-51,"on":true},{"x":88,"y":-51,"on":false},{"x":225,"y":-84,"on":false},{"x":306,"y":-156,"on":false}] + ] + }, + "uni1DFD": { + "advanceWidth": 0, + "contours": [ + [{"x":-11,"y":-86,"on":true},{"x":-35,"y":-75,"on":false},{"x":-70,"y":-66,"on":false},{"x":-86,"y":-66,"on":true},{"x":-106,"y":-66,"on":false},{"x":-148,"y":-91,"on":false},{"x":-165,"y":-110,"on":true},{"x":-165,"y":-45,"on":true},{"x":-131,"y":-6,"on":false},{"x":-79,"y":-6,"on":true},{"x":-59,"y":-6,"on":false},{"x":-20,"y":-16,"on":false},{"x":11,"y":-29,"on":true},{"x":35,"y":-40,"on":false},{"x":71,"y":-48,"on":false},{"x":86,"y":-48,"on":true},{"x":106,"y":-48,"on":false},{"x":148,"y":-24,"on":false},{"x":165,"y":-6,"on":true},{"x":165,"y":-71,"on":true},{"x":148,"y":-89,"on":false},{"x":106,"y":-109,"on":false},{"x":80,"y":-109,"on":true},{"x":58,"y":-109,"on":false},{"x":20,"y":-100,"on":false}], + [{"x":-11,"y":-215,"on":true},{"x":-35,"y":-204,"on":false},{"x":-70,"y":-195,"on":false},{"x":-85,"y":-195,"on":true},{"x":-105,"y":-195,"on":false},{"x":-148,"y":-220,"on":false},{"x":-165,"y":-239,"on":true},{"x":-165,"y":-174,"on":true},{"x":-130,"y":-135,"on":false},{"x":-79,"y":-135,"on":true},{"x":-59,"y":-135,"on":false},{"x":-20,"y":-144,"on":false},{"x":11,"y":-158,"on":true},{"x":57,"y":-178,"on":false},{"x":86,"y":-178,"on":true},{"x":106,"y":-178,"on":false},{"x":148,"y":-153,"on":false},{"x":165,"y":-134,"on":true},{"x":165,"y":-199,"on":true},{"x":130,"y":-237,"on":false},{"x":80,"y":-237,"on":true},{"x":58,"y":-237,"on":false},{"x":20,"y":-228,"on":false}] + ] + }, + "uni1DFE": { + "advanceWidth": 0, + "contours": [ + [{"x":62,"y":590,"on":true},{"x":36,"y":606,"on":false},{"x":-44,"y":649,"on":false},{"x":-75,"y":660,"on":true},{"x":-75,"y":721,"on":true},{"x":-44,"y":731,"on":false},{"x":34,"y":771,"on":false},{"x":62,"y":790,"on":true},{"x":72,"y":790,"on":true},{"x":72,"y":743,"on":true},{"x":56,"y":730,"on":false},{"x":13,"y":704,"on":false},{"x":-12,"y":690,"on":true},{"x":14,"y":676,"on":false},{"x":53,"y":650,"on":false},{"x":72,"y":636,"on":true},{"x":72,"y":590,"on":true}] + ] + }, + "uni1DFF": { + "advanceWidth": 0, + "contours": [ + [{"x":-157,"y":-40,"on":true},{"x":-140,"y":-50,"on":false},{"x":-92,"y":-78,"on":false},{"x":-41,"y":-102,"on":false},{"x":-20,"y":-110,"on":true},{"x":-20,"y":-171,"on":true},{"x":-52,"y":-181,"on":false},{"x":-129,"y":-221,"on":false},{"x":-157,"y":-240,"on":true},{"x":-167,"y":-240,"on":true},{"x":-167,"y":-193,"on":true},{"x":-150,"y":-180,"on":false},{"x":-108,"y":-154,"on":false},{"x":-84,"y":-140,"on":true},{"x":-131,"y":-113,"on":false},{"x":-167,"y":-86,"on":true},{"x":-167,"y":-40,"on":true}], + [{"x":175,"y":-64,"on":true},{"x":164,"y":-86,"on":false},{"x":140,"y":-149,"on":false},{"x":118,"y":-212,"on":false},{"x":112,"y":-235,"on":true},{"x":50,"y":-235,"on":true},{"x":44,"y":-212,"on":false},{"x":23,"y":-147,"on":false},{"x":-1,"y":-84,"on":false},{"x":-11,"y":-64,"on":true},{"x":-11,"y":-53,"on":true},{"x":35,"y":-53,"on":true},{"x":47,"y":-72,"on":false},{"x":72,"y":-136,"on":false},{"x":82,"y":-165,"on":true},{"x":92,"y":-136,"on":false},{"x":116,"y":-75,"on":false},{"x":128,"y":-53,"on":true},{"x":175,"y":-53,"on":true}] + ] + }, + "uni1E00": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02F3","x":121,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E01": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02F3","x":76,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E02": { + "advanceWidth": 596, + "references": [ + {"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":206,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E03": { + "advanceWidth": 566, + "references": [ + {"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":231,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E04": { + "advanceWidth": 596, + "references": [ + {"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":593,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E05": { + "advanceWidth": 566, + "references": [ + {"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":595,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E06": { + "advanceWidth": 596, + "references": [ + {"glyph":"B","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":116,"y":-763,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E07": { + "advanceWidth": 566, + "references": [ + {"glyph":"b","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":108,"y":-763,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E08": { + "advanceWidth": 569, + "references": [ + {"glyph":"C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":234,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"acute","x":239,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E09": { + "advanceWidth": 443, + "references": [ + {"glyph":"c","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":162,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"acute","x":155,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E0A": { + "advanceWidth": 658, + "references": [ + {"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":231,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E0B": { + "advanceWidth": 566, + "references": [ + {"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":145,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E0C": { + "advanceWidth": 658, + "references": [ + {"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":603,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E0D": { + "advanceWidth": 566, + "references": [ + {"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":568,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E0E": { + "advanceWidth": 658, + "references": [ + {"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":139,"y":-766,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E0F": { + "advanceWidth": 566, + "references": [ + {"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":100,"y":-766,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E10": { + "advanceWidth": 658, + "contours": [ + [{"x":405,"y":-134,"on":true},{"x":405,"y":-185,"on":false},{"x":337,"y":-240,"on":false},{"x":267,"y":-240,"on":true},{"x":250,"y":-240,"on":false},{"x":220,"y":-237,"on":false},{"x":209,"y":-233,"on":true},{"x":209,"y":-171,"on":true},{"x":234,"y":-178,"on":false},{"x":262,"y":-178,"on":true},{"x":323,"y":-178,"on":false},{"x":323,"y":-136,"on":true},{"x":323,"y":-112,"on":false},{"x":279,"y":-87,"on":false},{"x":240,"y":-82,"on":true},{"x":277,"y":0,"on":true},{"x":273,"y":0,"on":false},{"x":268,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":284,"y":714,"on":true},{"x":432,"y":714,"on":false},{"x":603,"y":536,"on":false},{"x":603,"y":365,"on":true},{"x":603,"y":207,"on":false},{"x":468,"y":26,"on":false},{"x":344,"y":6,"on":true},{"x":321,"y":-47,"on":true},{"x":358,"y":-55,"on":false},{"x":405,"y":-98,"on":false}], + [{"x":493,"y":361,"on":true},{"x":493,"y":496,"on":false},{"x":382,"y":624,"on":false},{"x":279,"y":624,"on":true},{"x":191,"y":624,"on":true},{"x":191,"y":90,"on":true},{"x":264,"y":90,"on":true},{"x":493,"y":90,"on":false}] + ] + }, + "uni1E11": { + "advanceWidth": 566, + "contours": [ + [{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":488,"on":false},{"x":389,"y":536,"on":false},{"x":389,"y":555,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":376,"y":49,"on":false},{"x":341,"y":16,"on":false},{"x":319,"y":6,"on":true},{"x":296,"y":-47,"on":true},{"x":333,"y":-55,"on":false},{"x":381,"y":-98,"on":false},{"x":381,"y":-134,"on":true},{"x":381,"y":-185,"on":false},{"x":313,"y":-240,"on":false},{"x":243,"y":-240,"on":true},{"x":205,"y":-240,"on":false},{"x":185,"y":-233,"on":true},{"x":185,"y":-171,"on":true},{"x":210,"y":-178,"on":false},{"x":238,"y":-178,"on":true},{"x":299,"y":-178,"on":false},{"x":299,"y":-136,"on":true},{"x":299,"y":-112,"on":false},{"x":254,"y":-87,"on":false},{"x":216,"y":-82,"on":true},{"x":249,"y":-10,"on":true}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "uni1E12": { + "advanceWidth": 658, + "references": [ + {"glyph":"D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032D","x":303,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E13": { + "advanceWidth": 566, + "references": [ + {"glyph":"d","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032D","x":273,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E14": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2812","x":276,"y":186,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E15": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2812","x":261,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E16": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2813","x":275,"y":186,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E17": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2813","x":260,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E18": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032D","x":269,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E19": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032D","x":274,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E1A": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02F7","x":60,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E1B": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":47,"y":-798,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E1C": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":173,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"breve","x":82,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E1D": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"cedilla","x":176,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E1E": { + "advanceWidth": 477, + "references": [ + {"glyph":"F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":176,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E1F": { + "advanceWidth": 324, + "references": [ + {"glyph":"f","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":146,"y":192,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E20": { + "advanceWidth": 663, + "references": [ + {"glyph":"G","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":186,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E21": { + "advanceWidth": 566, + "references": [ + {"glyph":"g","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":97,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E22": { + "advanceWidth": 674, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":244,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E23": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":33,"y":212,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E24": { + "advanceWidth": 674, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":631,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E25": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":583,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E26": { + "advanceWidth": 674, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":58,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E27": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-154,"y":216,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E28": { + "advanceWidth": 674, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":35,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E29": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"cedilla","x":23,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E2A": { + "advanceWidth": 674, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032E","x":338,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E2B": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032E","x":286,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E2C": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0330","x":167,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E2D": { + "advanceWidth": 253, + "references": [ + {"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":-90,"y":-796,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E2E": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2805","x":167,"y":177,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E2F": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2805","x":126,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E30": { + "advanceWidth": 571, + "references": [ + {"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":208,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E31": { + "advanceWidth": 509, + "references": [ + {"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":27,"y":217,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E32": { + "advanceWidth": 571, + "references": [ + {"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":603,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E33": { + "advanceWidth": 509, + "references": [ + {"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":556,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E34": { + "advanceWidth": 571, + "references": [ + {"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0331","x":305,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E35": { + "advanceWidth": 509, + "references": [ + {"glyph":"k","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":96,"y":-765,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E36": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":568,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E37": { + "advanceWidth": 253, + "references": [ + {"glyph":"l","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":422,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E38": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":568,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni02C9","x":-46,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E39": { + "advanceWidth": 253, + "references": [ + {"glyph":"l","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":422,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni02C9","x":-57,"y":221,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E3A": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":87,"y":-760,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E3B": { + "advanceWidth": 253, + "references": [ + {"glyph":"l","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":-58,"y":-758,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E3C": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032D","x":270,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E3D": { + "advanceWidth": 253, + "references": [ + {"glyph":"l","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":-78,"y":-810,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E3E": { + "advanceWidth": 850, + "references": [ + {"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":328,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E3F": { + "advanceWidth": 858, + "references": [ + {"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":343,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E40": { + "advanceWidth": 850, + "references": [ + {"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":332,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E41": { + "advanceWidth": 858, + "references": [ + {"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":347,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E42": { + "advanceWidth": 850, + "references": [ + {"glyph":"M","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":717,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E43": { + "advanceWidth": 858, + "references": [ + {"glyph":"m","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":728,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E44": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":259,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E45": { + "advanceWidth": 571, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":194,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E46": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":649,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E47": { + "advanceWidth": 571, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":581,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E48": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":179,"y":-767,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E49": { + "advanceWidth": 571, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":105,"y":-772,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E4A": { + "advanceWidth": 706, + "references": [ + {"glyph":"N","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032D","x":353,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E4B": { + "advanceWidth": 571, + "references": [ + {"glyph":"n","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032D","x":285,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E4C": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2811","x":352,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E4D": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2811","x":277,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E4E": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2810","x":352,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E4F": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2810","x":277,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E50": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2812","x":343,"y":186,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E51": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2812","x":271,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E52": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2813","x":349,"y":186,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E53": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2813","x":273,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E54": { + "advanceWidth": 555, + "references": [ + {"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":186,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E55": { + "advanceWidth": 566, + "references": [ + {"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":202,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E56": { + "advanceWidth": 555, + "references": [ + {"glyph":"P","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":196,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E57": { + "advanceWidth": 566, + "references": [ + {"glyph":"p","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":212,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E58": { + "advanceWidth": 576, + "references": [ + {"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":196,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E59": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":127,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E5A": { + "advanceWidth": 576, + "references": [ + {"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":600,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E5B": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":424,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E5C": { + "advanceWidth": 576, + "references": [ + {"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":107,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"dotbelowcomb","x":600,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E5D": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":38,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"dotbelowcomb","x":424,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E5E": { + "advanceWidth": 576, + "references": [ + {"glyph":"R","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":129,"y":-763,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E5F": { + "advanceWidth": 385, + "references": [ + {"glyph":"r","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":-35,"y":-759,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E60": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":167,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E61": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":127,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E62": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":533,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E63": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":509,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E64": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2807","x":261,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E65": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2807","x":221,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E66": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2808","x":261,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E67": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2808","x":221,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E68": { + "advanceWidth": 502, + "references": [ + {"glyph":"S","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":167,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"dotbelowcomb","x":533,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E69": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":127,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"dotbelowcomb","x":509,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E6A": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":157,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E6B": { + "advanceWidth": 344, + "references": [ + {"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":58,"y":111,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E6C": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":547,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E6D": { + "advanceWidth": 344, + "references": [ + {"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":498,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E6E": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":66,"y":-759,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E6F": { + "advanceWidth": 344, + "references": [ + {"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0331","x":203,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E70": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032D","x":251,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E71": { + "advanceWidth": 344, + "references": [ + {"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":-3,"y":-812,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E72": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":52,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E73": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":5,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E74": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":116,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E75": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":70,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E76": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni032D","x":331,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E77": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":81,"y":-816,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E78": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2811","x":332,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E79": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2811","x":286,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E7A": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2809","x":332,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E7B": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2809","x":286,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E7C": { + "advanceWidth": 559, + "references": [ + {"glyph":"V","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":66,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E7D": { + "advanceWidth": 477, + "references": [ + {"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":21,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E7E": { + "advanceWidth": 559, + "references": [ + {"glyph":"V","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":574,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E7F": { + "advanceWidth": 477, + "references": [ + {"glyph":"v","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":533,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Wgrave": { + "advanceWidth": 866, + "references": [ + {"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":246,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "wgrave": { + "advanceWidth": 741, + "references": [ + {"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":184,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Wacute": { + "advanceWidth": 866, + "references": [ + {"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":336,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "wacute": { + "advanceWidth": 741, + "references": [ + {"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":276,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Wdieresis": { + "advanceWidth": 866, + "references": [ + {"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":153,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "wdieresis": { + "advanceWidth": 741, + "references": [ + {"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":91,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E86": { + "advanceWidth": 866, + "references": [ + {"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":339,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E87": { + "advanceWidth": 741, + "references": [ + {"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":276,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E88": { + "advanceWidth": 866, + "references": [ + {"glyph":"W","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":725,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E89": { + "advanceWidth": 741, + "references": [ + {"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":666,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E8A": { + "advanceWidth": 541, + "references": [ + {"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":177,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E8B": { + "advanceWidth": 488, + "references": [ + {"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":150,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E8C": { + "advanceWidth": 541, + "references": [ + {"glyph":"X","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-9,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E8D": { + "advanceWidth": 488, + "references": [ + {"glyph":"x","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-36,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E8E": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":167,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E8F": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":145,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E90": { + "advanceWidth": 503, + "references": [ + {"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":50,"y":175,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E91": { + "advanceWidth": 418, + "references": [ + {"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":7,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E92": { + "advanceWidth": 503, + "references": [ + {"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":558,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E93": { + "advanceWidth": 418, + "references": [ + {"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":511,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E94": { + "advanceWidth": 503, + "references": [ + {"glyph":"Z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0331","x":252,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E95": { + "advanceWidth": 418, + "references": [ + {"glyph":"z","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0331","x":209,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E96": { + "advanceWidth": 571, + "references": [ + {"glyph":"h","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni0331","x":286,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E97": { + "advanceWidth": 344, + "references": [ + {"glyph":"t","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-123,"y":116,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E98": { + "advanceWidth": 741, + "references": [ + {"glyph":"w","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ring","x":220,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E99": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ring","x":89,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E9A": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02BE","x":201,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E9B": { + "advanceWidth": 306, + "references": [ + {"glyph":"longs","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotaccent","x":126,"y":189,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1E9C": { + "advanceWidth": 306, + "contours": [ + [{"x":-8,"y":385,"on":true},{"x":78,"y":433,"on":true},{"x":78,"y":576,"on":true},{"x":78,"y":676,"on":false},{"x":161,"y":765,"on":false},{"x":240,"y":765,"on":true},{"x":271,"y":765,"on":false},{"x":320,"y":754,"on":false},{"x":342,"y":746,"on":true},{"x":317,"y":667,"on":true},{"x":302,"y":672,"on":false},{"x":266,"y":680,"on":false},{"x":249,"y":680,"on":true},{"x":214,"y":680,"on":false},{"x":180,"y":632,"on":false},{"x":180,"y":576,"on":true},{"x":180,"y":490,"on":true},{"x":269,"y":540,"on":true},{"x":303,"y":476,"on":true},{"x":180,"y":407,"on":true},{"x":180,"y":0,"on":true},{"x":78,"y":0,"on":true},{"x":78,"y":349,"on":true},{"x":26,"y":320,"on":true}] + ] + }, + "uni1E9D": { + "advanceWidth": 306, + "contours": [ + [{"x":7,"y":569,"on":true},{"x":78,"y":569,"on":true},{"x":78,"y":576,"on":true},{"x":78,"y":676,"on":false},{"x":161,"y":765,"on":false},{"x":240,"y":765,"on":true},{"x":271,"y":765,"on":false},{"x":320,"y":754,"on":false},{"x":342,"y":746,"on":true},{"x":317,"y":667,"on":true},{"x":302,"y":672,"on":false},{"x":266,"y":680,"on":false},{"x":249,"y":680,"on":true},{"x":214,"y":680,"on":false},{"x":180,"y":632,"on":false},{"x":180,"y":576,"on":true},{"x":180,"y":569,"on":true},{"x":297,"y":569,"on":true},{"x":297,"y":493,"on":true},{"x":180,"y":493,"on":true},{"x":180,"y":0,"on":true},{"x":78,"y":0,"on":true},{"x":78,"y":493,"on":true},{"x":7,"y":493,"on":true}] + ] + }, + "uni1E9E": { + "advanceWidth": 668, + "contours": [ + [{"x":329,"y":724,"on":true},{"x":428,"y":724,"on":false},{"x":546,"y":630,"on":false},{"x":562,"y":544,"on":true},{"x":442,"y":410,"on":true},{"x":527,"y":403,"on":false},{"x":630,"y":300,"on":false},{"x":630,"y":208,"on":true},{"x":630,"y":109,"on":false},{"x":517,"y":-10,"on":false},{"x":397,"y":-10,"on":true},{"x":352,"y":-10,"on":false},{"x":270,"y":6,"on":false},{"x":236,"y":25,"on":true},{"x":236,"y":121,"on":true},{"x":269,"y":100,"on":false},{"x":350,"y":78,"on":false},{"x":387,"y":78,"on":true},{"x":458,"y":78,"on":false},{"x":523,"y":146,"on":false},{"x":523,"y":210,"on":true},{"x":523,"y":333,"on":false},{"x":369,"y":333,"on":true},{"x":325,"y":333,"on":true},{"x":325,"y":408,"on":true},{"x":451,"y":551,"on":true},{"x":423,"y":632,"on":false},{"x":326,"y":632,"on":true},{"x":252,"y":632,"on":false},{"x":184,"y":547,"on":false},{"x":184,"y":466,"on":true},{"x":184,"y":0,"on":true},{"x":80,"y":0,"on":true},{"x":80,"y":469,"on":true},{"x":80,"y":588,"on":false},{"x":208,"y":724,"on":false}] + ] + }, + "uni1E9F": { + "advanceWidth": 553, + "references": [ + {"glyph":"delta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni1EA0": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":591,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EA1": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":550,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EA2": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":588,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EA3": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":553,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EA4": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2795","x":583,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EA5": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2795","x":548,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EA6": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2796","x":583,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EA7": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2796","x":550,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EA8": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2797","x":581,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EA9": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2797","x":552,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EAA": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2798","x":582,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EAB": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2798","x":548,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EAC": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":591,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"circumflex","x":88,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EAD": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":56,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"dotbelowcomb","x":546,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EAE": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2799","x":588,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EAF": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2799","x":553,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB0": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2800","x":587,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB1": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2800","x":552,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB2": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2801","x":586,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB3": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2801","x":555,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB4": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2802","x":585,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB5": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2802","x":553,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB6": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":103,"y":172,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"dotbelowcomb","x":591,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB7": { + "advanceWidth": 521, + "references": [ + {"glyph":"a","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":70,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"dotbelowcomb","x":540,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB8": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":567,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EB9": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":569,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EBA": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":565,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EBB": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":563,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EBC": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":56,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EBD": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":47,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EBE": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2795","x":559,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EBF": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2795","x":557,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC0": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2796","x":561,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC1": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2796","x":559,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC2": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2797","x":558,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC3": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2797","x":554,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC4": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2798","x":556,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC5": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2798","x":553,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC6": { + "advanceWidth": 503, + "references": [ + {"glyph":"E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":565,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"circumflex","x":67,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC7": { + "advanceWidth": 520, + "references": [ + {"glyph":"e","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"circumflex","x":59,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"dotbelowcomb","x":568,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC8": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":458,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EC9": { + "advanceWidth": 253, + "references": [ + {"glyph":"dotlessi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":422,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ECA": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":462,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ECB": { + "advanceWidth": 253, + "references": [ + {"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":423,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ECC": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":649,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ECD": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":572,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ECE": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":644,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ECF": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":569,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED0": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2795","x":638,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED1": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2795","x":564,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED2": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2796","x":643,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED3": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2796","x":567,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED4": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2797","x":639,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED5": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2797","x":566,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED6": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2798","x":640,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED7": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2798","x":565,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED8": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":649,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"circumflex","x":149,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1ED9": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":573,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"circumflex","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EDA": { + "advanceWidth": 713, + "references": [ + {"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":263,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EDB": { + "advanceWidth": 581, + "references": [ + {"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":184,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EDC": { + "advanceWidth": 713, + "references": [ + {"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":159,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EDD": { + "advanceWidth": 581, + "references": [ + {"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":83,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EDE": { + "advanceWidth": 713, + "references": [ + {"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":651,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EDF": { + "advanceWidth": 581, + "references": [ + {"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":574,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE0": { + "advanceWidth": 713, + "references": [ + {"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":139,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE1": { + "advanceWidth": 581, + "references": [ + {"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":62,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE2": { + "advanceWidth": 713, + "references": [ + {"glyph":"Ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":648,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE3": { + "advanceWidth": 581, + "references": [ + {"glyph":"ohorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":572,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE4": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":627,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE5": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":570,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE6": { + "advanceWidth": 663, + "references": [ + {"glyph":"U","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":624,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE7": { + "advanceWidth": 571, + "references": [ + {"glyph":"u","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":575,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE8": { + "advanceWidth": 735, + "references": [ + {"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":244,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EE9": { + "advanceWidth": 642, + "references": [ + {"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"acute","x":197,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EEA": { + "advanceWidth": 735, + "references": [ + {"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":140,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EEB": { + "advanceWidth": 642, + "references": [ + {"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":89,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EEC": { + "advanceWidth": 735, + "references": [ + {"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":628,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EED": { + "advanceWidth": 642, + "references": [ + {"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":576,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EEE": { + "advanceWidth": 735, + "references": [ + {"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":118,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EEF": { + "advanceWidth": 642, + "references": [ + {"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":71,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EF0": { + "advanceWidth": 735, + "references": [ + {"glyph":"Uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":630,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EF1": { + "advanceWidth": 642, + "references": [ + {"glyph":"uhorn","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":570,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Ygrave": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":76,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "ygrave": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"grave","x":51,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EF4": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":556,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EF5": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dotbelowcomb","x":669,"y":-8,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EF6": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":552,"y":165,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EF7": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"glyph2794","x":528,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EF8": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":45,"y":171,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EF9": { + "advanceWidth": 478, + "references": [ + {"glyph":"y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":23,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1EFA": { + "advanceWidth": 729, + "contours": [ + [{"x":336,"y":0,"on":true},{"x":336,"y":714,"on":true},{"x":441,"y":714,"on":true},{"x":441,"y":92,"on":true},{"x":706,"y":92,"on":true},{"x":706,"y":0,"on":true}], + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":0,"on":true}] + ] + }, + "uni1EFB": { + "advanceWidth": 501, + "contours": [ + [{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":588,"on":true},{"x":4,"y":588,"on":true},{"x":4,"y":665,"on":true},{"x":75,"y":665,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":665,"on":true},{"x":325,"y":665,"on":true},{"x":325,"y":760,"on":true},{"x":428,"y":760,"on":true},{"x":428,"y":665,"on":true},{"x":498,"y":665,"on":true},{"x":498,"y":588,"on":true},{"x":428,"y":588,"on":true},{"x":428,"y":0,"on":true},{"x":325,"y":0,"on":true},{"x":325,"y":588,"on":true},{"x":178,"y":588,"on":true}] + ] + }, + "uni1EFC": { + "advanceWidth": 674, + "contours": [ + [{"x":302,"y":724,"on":true},{"x":373,"y":670,"on":true},{"x":303,"y":634,"on":false},{"x":211,"y":541,"on":false},{"x":166,"y":410,"on":false},{"x":166,"y":319,"on":true},{"x":166,"y":253,"on":false},{"x":206,"y":145,"on":false},{"x":286,"y":82,"on":false},{"x":344,"y":82,"on":true},{"x":426,"y":82,"on":false},{"x":509,"y":188,"on":false},{"x":509,"y":271,"on":true},{"x":509,"y":356,"on":false},{"x":433,"y":448,"on":false},{"x":372,"y":448,"on":true},{"x":353,"y":448,"on":false},{"x":316,"y":443,"on":false},{"x":305,"y":437,"on":true},{"x":304,"y":519,"on":true},{"x":321,"y":526,"on":false},{"x":363,"y":534,"on":false},{"x":394,"y":534,"on":true},{"x":462,"y":534,"on":false},{"x":563,"y":471,"on":false},{"x":618,"y":354,"on":false},{"x":618,"y":274,"on":true},{"x":618,"y":194,"on":false},{"x":557,"y":66,"on":false},{"x":434,"y":-10,"on":false},{"x":341,"y":-10,"on":true},{"x":254,"y":-10,"on":false},{"x":126,"y":73,"on":false},{"x":56,"y":219,"on":false},{"x":56,"y":313,"on":true},{"x":56,"y":424,"on":false},{"x":120,"y":589,"on":false},{"x":232,"y":697,"on":false}] + ] + }, + "uni1EFD": { + "advanceWidth": 553, + "contours": [ + [{"x":352,"y":769,"on":true},{"x":392,"y":705,"on":true},{"x":322,"y":664,"on":false},{"x":228,"y":562,"on":false},{"x":175,"y":447,"on":false},{"x":152,"y":330,"on":false},{"x":152,"y":276,"on":true},{"x":152,"y":184,"on":false},{"x":217,"y":72,"on":false},{"x":283,"y":72,"on":true},{"x":344,"y":72,"on":false},{"x":408,"y":161,"on":false},{"x":408,"y":237,"on":true},{"x":408,"y":311,"on":false},{"x":350,"y":401,"on":false},{"x":295,"y":401,"on":true},{"x":278,"y":401,"on":false},{"x":251,"y":394,"on":false},{"x":241,"y":390,"on":true},{"x":241,"y":472,"on":true},{"x":254,"y":477,"on":false},{"x":289,"y":484,"on":false},{"x":313,"y":484,"on":true},{"x":404,"y":484,"on":false},{"x":513,"y":354,"on":false},{"x":513,"y":241,"on":true},{"x":513,"y":164,"on":false},{"x":457,"y":51,"on":false},{"x":354,"y":-10,"on":false},{"x":283,"y":-10,"on":true},{"x":174,"y":-10,"on":false},{"x":47,"y":143,"on":false},{"x":47,"y":276,"on":true},{"x":47,"y":380,"on":false},{"x":115,"y":569,"on":false},{"x":250,"y":720,"on":false}] + ] + }, + "uni1EFE": { + "advanceWidth": 557, + "contours": [ + [{"x":144,"y":-10,"on":true},{"x":83,"y":-10,"on":false},{"x":23,"y":52,"on":false},{"x":23,"y":104,"on":true},{"x":23,"y":170,"on":false},{"x":132,"y":267,"on":false},{"x":220,"y":285,"on":true},{"x":16,"y":714,"on":true},{"x":128,"y":714,"on":true},{"x":262,"y":427,"on":true},{"x":286,"y":375,"on":false},{"x":302,"y":324,"on":true},{"x":306,"y":324,"on":true},{"x":313,"y":350,"on":false},{"x":336,"y":410,"on":false},{"x":344,"y":432,"on":true},{"x":448,"y":714,"on":true},{"x":557,"y":714,"on":true},{"x":358,"y":212,"on":true},{"x":324,"y":130,"on":false},{"x":262,"y":33,"on":false},{"x":191,"y":-10,"on":false}], + [{"x":100,"y":103,"on":true},{"x":100,"y":64,"on":false},{"x":137,"y":64,"on":true},{"x":154,"y":64,"on":false},{"x":188,"y":90,"on":false},{"x":226,"y":155,"on":false},{"x":249,"y":215,"on":true},{"x":184,"y":203,"on":false},{"x":100,"y":147,"on":false}] + ] + }, + "uni1EFF": { + "advanceWidth": 488, + "contours": [ + [{"x":104,"y":-240,"on":true},{"x":52,"y":-240,"on":false},{"x":-9,"y":-182,"on":false},{"x":-9,"y":-130,"on":true},{"x":-9,"y":-62,"on":false},{"x":96,"y":30,"on":false},{"x":189,"y":48,"on":true},{"x":15,"y":540,"on":true},{"x":124,"y":540,"on":true},{"x":224,"y":223,"on":true},{"x":243,"y":167,"on":false},{"x":250,"y":114,"on":true},{"x":253,"y":114,"on":true},{"x":258,"y":142,"on":false},{"x":272,"y":196,"on":false},{"x":280,"y":224,"on":true},{"x":379,"y":540,"on":true},{"x":487,"y":540,"on":true},{"x":294,"y":-31,"on":true},{"x":257,"y":-143,"on":false},{"x":168,"y":-240,"on":false}], + [{"x":70,"y":-126,"on":true},{"x":70,"y":-145,"on":false},{"x":91,"y":-167,"on":false},{"x":105,"y":-167,"on":true},{"x":121,"y":-167,"on":false},{"x":151,"y":-142,"on":false},{"x":183,"y":-78,"on":false},{"x":202,"y":-18,"on":true},{"x":143,"y":-30,"on":false},{"x":70,"y":-83,"on":false}] + ] + }, + "uni1F00": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":169,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F01": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":164,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F02": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":13,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F03": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":20,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F04": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":17,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F05": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":18,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F06": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCF","x":18,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F07": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDF","x":10,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F08": { + "advanceWidth": 591, + "references": [ + {"glyph":"A","x":4,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBD","x":-61,"y":-48,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F09": { + "advanceWidth": 592, + "references": [ + {"glyph":"A","x":5,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFE","x":-60,"y":-53,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F0A": { + "advanceWidth": 703, + "references": [ + {"glyph":"A","x":115,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCD","x":-156,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F0B": { + "advanceWidth": 708, + "references": [ + {"glyph":"A","x":120,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDD","x":-150,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F0C": { + "advanceWidth": 684, + "references": [ + {"glyph":"A","x":96,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCE","x":-172,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F0D": { + "advanceWidth": 687, + "references": [ + {"glyph":"uni1FDE","x":-168,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":100,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F0E": { + "advanceWidth": 680, + "references": [ + {"glyph":"uni1FCF","x":-137,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":92,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F0F": { + "advanceWidth": 681, + "references": [ + {"glyph":"A","x":94,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDF","x":-137,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F10": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":132,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F11": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":127,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F12": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":-24,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F13": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":-17,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F14": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":-20,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F15": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":-19,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F18": { + "advanceWidth": 588, + "references": [ + {"glyph":"E","x":85,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBD","x":-74,"y":-49,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F19": { + "advanceWidth": 587, + "references": [ + {"glyph":"E","x":84,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFE","x":-79,"y":-54,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F1A": { + "advanceWidth": 724, + "references": [ + {"glyph":"E","x":221,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCD","x":-158,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F1B": { + "advanceWidth": 722, + "references": [ + {"glyph":"E","x":219,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDD","x":-152,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F1C": { + "advanceWidth": 709, + "references": [ + {"glyph":"E","x":206,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCE","x":-173,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F1D": { + "advanceWidth": 711, + "references": [ + {"glyph":"E","x":208,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDE","x":-170,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F20": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":177,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F21": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":172,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F22": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":21,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F23": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":28,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F24": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":25,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F25": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":26,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F26": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCF","x":26,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F27": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDF","x":18,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F28": { + "advanceWidth": 750, + "references": [ + {"glyph":"H","x":76,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBD","x":-74,"y":-49,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F29": { + "advanceWidth": 755, + "references": [ + {"glyph":"H","x":80,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFE","x":-79,"y":-53,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F2A": { + "advanceWidth": 888, + "references": [ + {"glyph":"H","x":213,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCD","x":-162,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F2B": { + "advanceWidth": 886, + "references": [ + {"glyph":"H","x":212,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDD","x":-156,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F2C": { + "advanceWidth": 889, + "references": [ + {"glyph":"H","x":215,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCE","x":-173,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F2D": { + "advanceWidth": 884, + "references": [ + {"glyph":"H","x":210,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDE","x":-174,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F2E": { + "advanceWidth": 904, + "references": [ + {"glyph":"H","x":230,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCF","x":-135,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F2F": { + "advanceWidth": 903, + "references": [ + {"glyph":"H","x":229,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDF","x":-135,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F30": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":6,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F31": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":1,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F32": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":-150,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F33": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":-142,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F34": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":-146,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F35": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":-145,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F36": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCF","x":-145,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F37": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDF","x":-153,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F38": { + "advanceWidth": 456, + "references": [ + {"glyph":"I","x":123,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBD","x":-71,"y":-49,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F39": { + "advanceWidth": 448, + "references": [ + {"glyph":"I","x":116,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFE","x":-76,"y":-54,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F3A": { + "advanceWidth": 590, + "references": [ + {"glyph":"I","x":257,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCD","x":-159,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F3B": { + "advanceWidth": 585, + "references": [ + {"glyph":"I","x":252,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDD","x":-149,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F3C": { + "advanceWidth": 607, + "references": [ + {"glyph":"I","x":274,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCE","x":-167,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F3D": { + "advanceWidth": 605, + "references": [ + {"glyph":"I","x":273,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDE","x":-167,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F3E": { + "advanceWidth": 605, + "references": [ + {"glyph":"I","x":272,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCF","x":-134,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F3F": { + "advanceWidth": 605, + "references": [ + {"glyph":"I","x":272,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDF","x":-134,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F40": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":151,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F41": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":146,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F42": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":-5,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F43": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":3,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F44": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":-1,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F45": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F48": { + "advanceWidth": 758, + "references": [ + {"glyph":"O","x":54,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBD","x":-69,"y":-49,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F49": { + "advanceWidth": 772, + "references": [ + {"glyph":"O","x":68,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFE","x":-77,"y":-54,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F4A": { + "advanceWidth": 912, + "references": [ + {"glyph":"O","x":208,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCD","x":-158,"y":-51,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F4B": { + "advanceWidth": 913, + "references": [ + {"glyph":"O","x":210,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDD","x":-152,"y":-51,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F4C": { + "advanceWidth": 867, + "references": [ + {"glyph":"O","x":164,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCE","x":-172,"y":-51,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F4D": { + "advanceWidth": 873, + "references": [ + {"glyph":"O","x":169,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDE","x":-166,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F50": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":155,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F51": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":150,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F52": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":-1,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F53": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":6,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F54": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":3,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F55": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":4,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F56": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCF","x":4,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F57": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDF","x":-4,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F59": { + "advanceWidth": 658, + "references": [ + {"glyph":"uni1FFE","x":-77,"y":-54,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"Y","x":136,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F5B": { + "advanceWidth": 803, + "references": [ + {"glyph":"uni1FDD","x":-149,"y":-51,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"Y","x":281,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F5D": { + "advanceWidth": 813, + "references": [ + {"glyph":"uni1FDE","x":-167,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"Y","x":291,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F5F": { + "advanceWidth": 840, + "references": [ + {"glyph":"uni1FDF","x":-123,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"Y","x":318,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F60": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":238,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F61": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":233,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F62": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":82,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F63": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":90,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F64": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":86,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F65": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":87,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F66": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCF","x":87,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F67": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDF","x":79,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F68": { + "advanceWidth": 754, + "references": [ + {"glyph":"uni03A9","x":49,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBD","x":-73,"y":-49,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F69": { + "advanceWidth": 767, + "references": [ + {"glyph":"uni03A9","x":63,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFE","x":-78,"y":-54,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F6A": { + "advanceWidth": 913, + "references": [ + {"glyph":"uni03A9","x":209,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCD","x":-161,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F6B": { + "advanceWidth": 914, + "references": [ + {"glyph":"uni03A9","x":209,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDD","x":-155,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F6C": { + "advanceWidth": 873, + "references": [ + {"glyph":"uni03A9","x":169,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCE","x":-178,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F6D": { + "advanceWidth": 877, + "references": [ + {"glyph":"uni03A9","x":172,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDE","x":-173,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F6E": { + "advanceWidth": 872, + "references": [ + {"glyph":"uni03A9","x":167,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCF","x":-143,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F6F": { + "advanceWidth": 902, + "references": [ + {"glyph":"uni03A9","x":197,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDF","x":-123,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F70": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":5,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F71": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":24,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F72": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":-32,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F73": { + "advanceWidth": 454, + "references": [ + {"glyph":"epsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":-13,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F74": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":13,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F75": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":32,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F76": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":-158,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F77": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":-138,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F78": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":-13,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F79": { + "advanceWidth": 554, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":7,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F7A": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":-9,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F7B": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":10,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F7C": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":74,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F7D": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":94,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F80": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":169,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F81": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":164,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F82": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":13,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F83": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":20,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F84": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":17,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F85": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":18,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F86": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCF","x":18,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F87": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDF","x":10,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F88": { + "advanceWidth": 906, + "references": [ + {"glyph":"A","x":5,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":578,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBD","x":-67,"y":-53,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F89": { + "advanceWidth": 902, + "references": [ + {"glyph":"uni1FFE","x":-72,"y":-57,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":1,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":573,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F8A": { + "advanceWidth": 1009, + "references": [ + {"glyph":"uni1FCD","x":-162,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":109,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":681,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F8B": { + "advanceWidth": 1018, + "references": [ + {"glyph":"uni1FDD","x":-160,"y":-51,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":117,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":689,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F8C": { + "advanceWidth": 996, + "references": [ + {"glyph":"uni1FCE","x":-177,"y":-51,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":95,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":667,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F8D": { + "advanceWidth": 1001, + "references": [ + {"glyph":"uni1FDE","x":-174,"y":-51,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":101,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":672,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F8E": { + "advanceWidth": 1010, + "references": [ + {"glyph":"uni1FCF","x":-137,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":106,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":682,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F8F": { + "advanceWidth": 1012, + "references": [ + {"glyph":"uni1FDF","x":-137,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":105,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":683,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F90": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":177,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F91": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":172,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F92": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":21,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F93": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":28,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F94": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":25,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F95": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":26,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F96": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCF","x":26,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F97": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDF","x":18,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F98": { + "advanceWidth": 1086, + "references": [ + {"glyph":"H","x":86,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBD","x":-77,"y":-49,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":758,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F99": { + "advanceWidth": 1082, + "references": [ + {"glyph":"H","x":80,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFE","x":-82,"y":-57,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":753,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F9A": { + "advanceWidth": 1220, + "references": [ + {"glyph":"H","x":220,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCD","x":-164,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":891,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F9B": { + "advanceWidth": 1223, + "references": [ + {"glyph":"H","x":224,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDD","x":-158,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":895,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F9C": { + "advanceWidth": 1216, + "references": [ + {"glyph":"H","x":216,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCE","x":-173,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":887,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F9D": { + "advanceWidth": 1211, + "references": [ + {"glyph":"H","x":212,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDE","x":-176,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":883,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F9E": { + "advanceWidth": 1236, + "references": [ + {"glyph":"H","x":237,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCF","x":-132,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":908,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1F9F": { + "advanceWidth": 1229, + "references": [ + {"glyph":"H","x":229,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDF","x":-132,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":900,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA0": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":238,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA1": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":233,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA2": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCD","x":82,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA3": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDD","x":90,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA4": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCE","x":86,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA5": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDE","x":82,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA6": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FCF","x":85,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA7": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FDF","x":79,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA8": { + "advanceWidth": 1089, + "references": [ + {"glyph":"uni03A9","x":56,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBD","x":-79,"y":-49,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":761,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FA9": { + "advanceWidth": 1103, + "references": [ + {"glyph":"uni03A9","x":68,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":775,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFE","x":-80,"y":-54,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FAA": { + "advanceWidth": 1241, + "references": [ + {"glyph":"uni03A9","x":206,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":912,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCD","x":-161,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FAB": { + "advanceWidth": 1242, + "references": [ + {"glyph":"uni03A9","x":207,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":913,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDD","x":-153,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FAC": { + "advanceWidth": 1211, + "references": [ + {"glyph":"uni03A9","x":176,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":882,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCE","x":-179,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FAD": { + "advanceWidth": 1215, + "references": [ + {"glyph":"uni03A9","x":180,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":887,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDE","x":-172,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FAE": { + "advanceWidth": 1209, + "references": [ + {"glyph":"uni03A9","x":174,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":881,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FCF","x":-135,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FAF": { + "advanceWidth": 1218, + "references": [ + {"glyph":"uni03A9","x":182,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":890,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FDF","x":-135,"y":-50,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FB0": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":104,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FB1": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":111,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FB2": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":5,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FB3": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FB4": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":24,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FB6": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":79,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FB7": { + "advanceWidth": 576, + "references": [ + {"glyph":"alpha","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":79,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FB8": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":102,"y":177,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FB9": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":109,"y":177,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FBA": { + "advanceWidth": 589, + "references": [ + {"glyph":"A","x":1,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FEF","x":-197,"y":-37,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FBB": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":-231,"y":-37,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FBC": { + "advanceWidth": 912, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":583,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FBD": { + "advanceWidth": 255, + "contours": [ + [{"x":71,"y":593,"on":true},{"x":71,"y":631,"on":true},{"x":100,"y":632,"on":false},{"x":128,"y":660,"on":false},{"x":128,"y":677,"on":true},{"x":106,"y":677,"on":false},{"x":78,"y":702,"on":false},{"x":78,"y":726,"on":true},{"x":78,"y":751,"on":false},{"x":106,"y":775,"on":false},{"x":128,"y":775,"on":true},{"x":153,"y":775,"on":false},{"x":182,"y":739,"on":false},{"x":182,"y":708,"on":true},{"x":182,"y":658,"on":false},{"x":129,"y":597,"on":false}] + ] + }, + "uni1FBE": { + "advanceWidth": 585, + "contours": [ + [{"x":322,"y":-59,"on":true},{"x":322,"y":-115,"on":true},{"x":322,"y":-157,"on":false},{"x":355,"y":-157,"on":true},{"x":364,"y":-157,"on":false},{"x":383,"y":-154,"on":false},{"x":389,"y":-152,"on":true},{"x":389,"y":-217,"on":true},{"x":379,"y":-220,"on":false},{"x":346,"y":-227,"on":false},{"x":326,"y":-227,"on":true},{"x":286,"y":-227,"on":false},{"x":241,"y":-181,"on":false},{"x":241,"y":-132,"on":true},{"x":241,"y":-59,"on":true}] + ] + }, + "uni1FBF": { + "advanceWidth": 255, + "references": [ + {"glyph":"uni1FBD","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni1FC0": { + "advanceWidth": 532, + "references": [ + {"glyph":"tilde","x":50,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FC1": { + "advanceWidth": 548, + "contours": [ + [{"x":115,"y":749,"on":true},{"x":120,"y":802,"on":false},{"x":169,"y":861,"on":false},{"x":211,"y":861,"on":true},{"x":237,"y":861,"on":false},{"x":285,"y":838,"on":false},{"x":328,"y":814,"on":false},{"x":347,"y":814,"on":true},{"x":380,"y":814,"on":false},{"x":390,"y":861,"on":true},{"x":440,"y":861,"on":true},{"x":434,"y":808,"on":false},{"x":385,"y":750,"on":false},{"x":344,"y":750,"on":true},{"x":318,"y":750,"on":false},{"x":271,"y":774,"on":false},{"x":228,"y":797,"on":false},{"x":209,"y":797,"on":true},{"x":174,"y":797,"on":false},{"x":164,"y":749,"on":true}], + [{"x":186,"y":610,"on":true},{"x":165,"y":610,"on":false},{"x":138,"y":637,"on":false},{"x":138,"y":663,"on":true},{"x":138,"y":690,"on":false},{"x":165,"y":715,"on":false},{"x":186,"y":715,"on":true},{"x":207,"y":715,"on":false},{"x":235,"y":689,"on":false},{"x":235,"y":663,"on":true},{"x":235,"y":637,"on":false},{"x":207,"y":610,"on":false}], + [{"x":359,"y":610,"on":true},{"x":338,"y":610,"on":false},{"x":311,"y":637,"on":false},{"x":311,"y":663,"on":true},{"x":311,"y":690,"on":false},{"x":338,"y":715,"on":false},{"x":359,"y":715,"on":true},{"x":379,"y":715,"on":false},{"x":407,"y":689,"on":false},{"x":407,"y":663,"on":true},{"x":407,"y":637,"on":false},{"x":379,"y":610,"on":false}] + ] + }, + "uni1FC2": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":13,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FC3": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FC4": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":32,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FC6": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":87,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FC7": { + "advanceWidth": 571, + "references": [ + {"glyph":"eta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":87,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":-157,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FC8": { + "advanceWidth": 589, + "references": [ + {"glyph":"E","x":86,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FEF","x":-209,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FC9": { + "advanceWidth": 589, + "references": [ + {"glyph":"E","x":86,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFD","x":-242,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FCA": { + "advanceWidth": 766, + "references": [ + {"glyph":"H","x":92,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FEF","x":-205,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FCB": { + "advanceWidth": 770, + "references": [ + {"glyph":"H","x":96,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFD","x":-244,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FCC": { + "advanceWidth": 1003, + "references": [ + {"glyph":"H","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":675,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FCD": { + "advanceWidth": 560, + "contours": [ + [{"x":156,"y":602,"on":true},{"x":156,"y":637,"on":true},{"x":183,"y":639,"on":false},{"x":206,"y":664,"on":false},{"x":206,"y":680,"on":true},{"x":190,"y":683,"on":false},{"x":160,"y":703,"on":false},{"x":160,"y":728,"on":true},{"x":160,"y":750,"on":false},{"x":188,"y":774,"on":false},{"x":210,"y":774,"on":true},{"x":235,"y":774,"on":false},{"x":263,"y":739,"on":false},{"x":263,"y":710,"on":true},{"x":263,"y":664,"on":false},{"x":209,"y":605,"on":false}], + [{"x":365,"y":610,"on":true},{"x":340,"y":644,"on":false},{"x":290,"y":722,"on":false},{"x":277,"y":754,"on":true},{"x":277,"y":765,"on":true},{"x":374,"y":765,"on":true},{"x":381,"y":730,"on":false},{"x":402,"y":650,"on":false},{"x":413,"y":622,"on":true},{"x":413,"y":610,"on":true}] + ] + }, + "uni1FCE": { + "advanceWidth": 560, + "contours": [ + [{"x":172,"y":602,"on":true},{"x":172,"y":637,"on":true},{"x":198,"y":639,"on":false},{"x":221,"y":664,"on":false},{"x":221,"y":680,"on":true},{"x":204,"y":683,"on":false},{"x":175,"y":703,"on":false},{"x":175,"y":728,"on":true},{"x":175,"y":750,"on":false},{"x":202,"y":774,"on":false},{"x":225,"y":774,"on":true},{"x":250,"y":774,"on":false},{"x":278,"y":739,"on":false},{"x":278,"y":710,"on":true},{"x":278,"y":664,"on":false},{"x":224,"y":605,"on":false}], + [{"x":294,"y":610,"on":true},{"x":294,"y":622,"on":true},{"x":304,"y":650,"on":false},{"x":326,"y":730,"on":false},{"x":332,"y":765,"on":true},{"x":429,"y":765,"on":true},{"x":429,"y":754,"on":true},{"x":416,"y":722,"on":false},{"x":367,"y":644,"on":false},{"x":341,"y":610,"on":true}] + ] + }, + "uni1FCF": { + "advanceWidth": 559, + "contours": [ + [{"x":114,"y":746,"on":true},{"x":120,"y":799,"on":false},{"x":169,"y":860,"on":false},{"x":213,"y":860,"on":true},{"x":240,"y":860,"on":false},{"x":288,"y":836,"on":false},{"x":332,"y":811,"on":false},{"x":351,"y":811,"on":true},{"x":370,"y":811,"on":false},{"x":391,"y":837,"on":false},{"x":397,"y":860,"on":true},{"x":446,"y":860,"on":true},{"x":441,"y":808,"on":false},{"x":392,"y":747,"on":false},{"x":349,"y":747,"on":true},{"x":323,"y":747,"on":false},{"x":274,"y":772,"on":false},{"x":230,"y":796,"on":false},{"x":211,"y":796,"on":true},{"x":192,"y":796,"on":false},{"x":170,"y":770,"on":false},{"x":164,"y":746,"on":true}], + [{"x":224,"y":586,"on":true},{"x":224,"y":619,"on":true},{"x":250,"y":620,"on":false},{"x":272,"y":639,"on":false},{"x":272,"y":651,"on":true},{"x":256,"y":654,"on":false},{"x":227,"y":670,"on":false},{"x":227,"y":693,"on":true},{"x":227,"y":712,"on":false},{"x":252,"y":735,"on":false},{"x":275,"y":735,"on":true},{"x":300,"y":735,"on":false},{"x":328,"y":706,"on":false},{"x":328,"y":678,"on":true},{"x":328,"y":639,"on":false},{"x":278,"y":589,"on":false}] + ] + }, + "uni1FD0": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":-58,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FD1": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":-51,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FD2": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FED","x":-147,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FD3": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEE","x":-148,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FD6": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":-84,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FD7": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FC1","x":-140,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FD8": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":-24,"y":177,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FD9": { + "advanceWidth": 332, + "references": [ + {"glyph":"I","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":-17,"y":177,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FDA": { + "advanceWidth": 447, + "references": [ + {"glyph":"I","x":114,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FEF","x":-209,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FDB": { + "advanceWidth": 455, + "references": [ + {"glyph":"I","x":122,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFD","x":-250,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FDD": { + "advanceWidth": 564, + "contours": [ + [{"x":254,"y":602,"on":true},{"x":201,"y":605,"on":false},{"x":148,"y":664,"on":false},{"x":148,"y":710,"on":true},{"x":148,"y":739,"on":false},{"x":176,"y":774,"on":false},{"x":201,"y":774,"on":true},{"x":223,"y":774,"on":false},{"x":251,"y":750,"on":false},{"x":251,"y":728,"on":true},{"x":251,"y":703,"on":false},{"x":222,"y":683,"on":false},{"x":205,"y":680,"on":true},{"x":205,"y":664,"on":false},{"x":228,"y":639,"on":false},{"x":254,"y":637,"on":true}], + [{"x":357,"y":610,"on":true},{"x":332,"y":644,"on":false},{"x":283,"y":722,"on":false},{"x":269,"y":754,"on":true},{"x":269,"y":765,"on":true},{"x":366,"y":765,"on":true},{"x":373,"y":730,"on":false},{"x":395,"y":650,"on":false},{"x":405,"y":622,"on":true},{"x":405,"y":610,"on":true}] + ] + }, + "uni1FDE": { + "advanceWidth": 564, + "contours": [ + [{"x":271,"y":602,"on":true},{"x":217,"y":605,"on":false},{"x":164,"y":664,"on":false},{"x":164,"y":710,"on":true},{"x":164,"y":739,"on":false},{"x":192,"y":774,"on":false},{"x":218,"y":774,"on":true},{"x":240,"y":774,"on":false},{"x":267,"y":750,"on":false},{"x":267,"y":728,"on":true},{"x":267,"y":703,"on":false},{"x":238,"y":683,"on":false},{"x":221,"y":680,"on":true},{"x":221,"y":664,"on":false},{"x":244,"y":639,"on":false},{"x":271,"y":637,"on":true}], + [{"x":292,"y":610,"on":true},{"x":292,"y":622,"on":true},{"x":302,"y":650,"on":false},{"x":324,"y":730,"on":false},{"x":331,"y":765,"on":true},{"x":428,"y":765,"on":true},{"x":428,"y":754,"on":true},{"x":414,"y":722,"on":false},{"x":366,"y":644,"on":false},{"x":340,"y":610,"on":true}] + ] + }, + "uni1FDF": { + "advanceWidth": 559, + "contours": [ + [{"x":114,"y":746,"on":true},{"x":120,"y":799,"on":false},{"x":169,"y":860,"on":false},{"x":213,"y":860,"on":true},{"x":240,"y":860,"on":false},{"x":288,"y":836,"on":false},{"x":332,"y":811,"on":false},{"x":352,"y":811,"on":true},{"x":370,"y":811,"on":false},{"x":391,"y":837,"on":false},{"x":397,"y":860,"on":true},{"x":446,"y":860,"on":true},{"x":441,"y":808,"on":false},{"x":392,"y":747,"on":false},{"x":349,"y":747,"on":true},{"x":323,"y":747,"on":false},{"x":274,"y":772,"on":false},{"x":230,"y":796,"on":false},{"x":210,"y":796,"on":true},{"x":191,"y":796,"on":false},{"x":170,"y":770,"on":false},{"x":164,"y":746,"on":true}], + [{"x":329,"y":586,"on":true},{"x":275,"y":589,"on":false},{"x":225,"y":639,"on":false},{"x":225,"y":678,"on":true},{"x":225,"y":706,"on":false},{"x":254,"y":735,"on":false},{"x":278,"y":735,"on":true},{"x":301,"y":735,"on":false},{"x":326,"y":712,"on":false},{"x":326,"y":693,"on":true},{"x":326,"y":670,"on":false},{"x":296,"y":654,"on":false},{"x":280,"y":651,"on":true},{"x":280,"y":639,"on":false},{"x":303,"y":620,"on":false},{"x":329,"y":619,"on":true}] + ] + }, + "uni1FE0": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":90,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FE1": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni02C9","x":97,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FE2": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FED","x":2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FE3": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEE","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FE4": { + "advanceWidth": 558, + "references": [ + {"glyph":"rho","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBD","x":166,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FE5": { + "advanceWidth": 558, + "references": [ + {"glyph":"rho","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFE","x":160,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FE6": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":64,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FE7": { + "advanceWidth": 563, + "references": [ + {"glyph":"upsilon","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FC1","x":9,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FE8": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"breve","x":72,"y":177,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FE9": { + "advanceWidth": 563, + "references": [ + {"glyph":"Y","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni02C9","x":79,"y":177,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FEA": { + "advanceWidth": 673, + "references": [ + {"glyph":"Y","x":151,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FEF","x":-209,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FEB": { + "advanceWidth": 686, + "references": [ + {"glyph":"Y","x":164,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFD","x":-239,"y":-53,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FEC": { + "advanceWidth": 641, + "references": [ + {"glyph":"P","x":86,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFE","x":-76,"y":-57,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FED": { + "advanceWidth": 556, + "contours": [ + [{"x":329,"y":618,"on":true},{"x":282,"y":618,"on":true},{"x":259,"y":650,"on":false},{"x":212,"y":732,"on":false},{"x":199,"y":763,"on":true},{"x":199,"y":773,"on":true},{"x":295,"y":773,"on":true},{"x":300,"y":741,"on":false},{"x":320,"y":658,"on":false},{"x":329,"y":630,"on":true}], + [{"x":111,"y":666,"on":true},{"x":111,"y":694,"on":false},{"x":138,"y":720,"on":false},{"x":160,"y":720,"on":true},{"x":180,"y":720,"on":false},{"x":208,"y":694,"on":false},{"x":208,"y":666,"on":true},{"x":208,"y":638,"on":false},{"x":180,"y":611,"on":false},{"x":160,"y":611,"on":true},{"x":138,"y":611,"on":false},{"x":111,"y":638,"on":false}], + [{"x":351,"y":666,"on":true},{"x":351,"y":694,"on":false},{"x":378,"y":720,"on":false},{"x":400,"y":720,"on":true},{"x":420,"y":720,"on":false},{"x":449,"y":694,"on":false},{"x":449,"y":666,"on":true},{"x":449,"y":638,"on":false},{"x":420,"y":611,"on":false},{"x":400,"y":611,"on":true},{"x":378,"y":611,"on":false},{"x":351,"y":638,"on":false}] + ] + }, + "uni1FEE": { + "advanceWidth": 556, + "contours": [ + [{"x":230,"y":618,"on":true},{"x":230,"y":630,"on":true},{"x":239,"y":658,"on":false},{"x":260,"y":741,"on":false},{"x":265,"y":773,"on":true},{"x":361,"y":773,"on":true},{"x":361,"y":763,"on":true},{"x":348,"y":732,"on":false},{"x":300,"y":650,"on":false},{"x":277,"y":618,"on":true}], + [{"x":160,"y":611,"on":true},{"x":138,"y":611,"on":false},{"x":111,"y":638,"on":false},{"x":111,"y":666,"on":true},{"x":111,"y":694,"on":false},{"x":138,"y":720,"on":false},{"x":160,"y":720,"on":true},{"x":180,"y":720,"on":false},{"x":208,"y":694,"on":false},{"x":208,"y":666,"on":true},{"x":208,"y":638,"on":false},{"x":180,"y":611,"on":false}], + [{"x":400,"y":611,"on":true},{"x":378,"y":611,"on":false},{"x":351,"y":638,"on":false},{"x":351,"y":666,"on":true},{"x":351,"y":694,"on":false},{"x":378,"y":720,"on":false},{"x":400,"y":720,"on":true},{"x":420,"y":720,"on":false},{"x":449,"y":694,"on":false},{"x":449,"y":666,"on":true},{"x":449,"y":638,"on":false},{"x":420,"y":611,"on":false}] + ] + }, + "uni1FEF": { + "advanceWidth": 575, + "contours": [ + [{"x":331,"y":606,"on":true},{"x":280,"y":606,"on":true},{"x":255,"y":640,"on":false},{"x":207,"y":722,"on":false},{"x":193,"y":755,"on":true},{"x":193,"y":766,"on":true},{"x":294,"y":766,"on":true},{"x":300,"y":731,"on":false},{"x":321,"y":648,"on":false},{"x":331,"y":619,"on":true}] + ] + }, + "uni1FF2": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FEF","x":74,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FF3": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FF4": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"uni1FFD","x":94,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FF6": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":148,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FF7": { + "advanceWidth": 728, + "references": [ + {"glyph":"omega","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"tilde","x":148,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FBE","x":73,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FF8": { + "advanceWidth": 790, + "references": [ + {"glyph":"O","x":86,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FEF","x":-203,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FF9": { + "advanceWidth": 750, + "references": [ + {"glyph":"O","x":46,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFD","x":-249,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FFA": { + "advanceWidth": 793, + "references": [ + {"glyph":"uni03A9","x":88,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FEF","x":-208,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FFB": { + "advanceWidth": 762, + "references": [ + {"glyph":"uni03A9","x":57,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni1FFD","x":-244,"y":-52,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FFC": { + "advanceWidth": 1032, + "references": [ + {"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"iota","x":704,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni1FFD": { + "advanceWidth": 574, + "contours": [ + [{"x":234,"y":606,"on":true},{"x":234,"y":619,"on":true},{"x":244,"y":647,"on":false},{"x":269,"y":731,"on":false},{"x":276,"y":766,"on":true},{"x":377,"y":766,"on":true},{"x":377,"y":755,"on":true},{"x":362,"y":722,"on":false},{"x":310,"y":638,"on":false},{"x":285,"y":606,"on":true}] + ] + }, + "uni1FFE": { + "advanceWidth": 257, + "contours": [ + [{"x":186,"y":598,"on":true},{"x":128,"y":602,"on":false},{"x":75,"y":663,"on":false},{"x":75,"y":713,"on":true},{"x":75,"y":744,"on":false},{"x":104,"y":780,"on":false},{"x":129,"y":780,"on":true},{"x":151,"y":780,"on":false},{"x":179,"y":755,"on":false},{"x":179,"y":731,"on":true},{"x":179,"y":706,"on":false},{"x":151,"y":682,"on":false},{"x":129,"y":682,"on":true},{"x":129,"y":665,"on":false},{"x":157,"y":638,"on":false},{"x":186,"y":636,"on":true}] + ] + }, + "uni2000": { + "advanceWidth": 500 + }, + "uni2001": { + "advanceWidth": 1000 + }, + "uni2002": { + "advanceWidth": 500 + }, + "uni2003": { + "advanceWidth": 1000 + }, + "uni2004": { + "advanceWidth": 333 + }, + "uni2005": { + "advanceWidth": 250 + }, + "uni2006": { + "advanceWidth": 167 + }, + "uni2007": { + "advanceWidth": 524 + }, + "uni2008": { + "advanceWidth": 259 + }, + "uni2009": { + "advanceWidth": 200 + }, + "uni200A": { + "advanceWidth": 100 + }, + "uni200B": { + "advanceWidth": 0 + }, + "uni200C": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":628,"on":true},{"x":21,"y":628,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni200D": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":535,"on":true},{"x":-83,"y":473,"on":true},{"x":-109,"y":500,"on":true},{"x":-27,"y":582,"on":true},{"x":-109,"y":663,"on":true},{"x":-83,"y":690,"on":true},{"x":0,"y":607,"on":true},{"x":83,"y":690,"on":true},{"x":109,"y":663,"on":true},{"x":27,"y":582,"on":true},{"x":109,"y":500,"on":true},{"x":83,"y":473,"on":true},{"x":21,"y":535,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni200E": { + "advanceWidth": 0, + "contours": [ + [{"x":-20,"y":-133,"on":true},{"x":-20,"y":602,"on":true},{"x":141,"y":602,"on":true},{"x":77,"y":663,"on":true},{"x":104,"y":690,"on":true},{"x":212,"y":583,"on":true},{"x":104,"y":476,"on":true},{"x":77,"y":502,"on":true},{"x":141,"y":563,"on":true},{"x":20,"y":563,"on":true},{"x":20,"y":-133,"on":true}] + ] + }, + "uni200F": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":563,"on":true},{"x":-142,"y":563,"on":true},{"x":-77,"y":502,"on":true},{"x":-104,"y":476,"on":true},{"x":-213,"y":583,"on":true},{"x":-104,"y":690,"on":true},{"x":-77,"y":663,"on":true},{"x":-142,"y":602,"on":true},{"x":20,"y":602,"on":true},{"x":20,"y":-133,"on":true}] + ] + }, + "uni2010": { + "advanceWidth": 308, + "references": [ + {"glyph":"hyphen","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2011": { + "advanceWidth": 308, + "references": [ + {"glyph":"hyphen","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "figuredash": { + "advanceWidth": 524, + "contours": [ + [{"x":38,"y":315,"on":true},{"x":38,"y":398,"on":true},{"x":485,"y":398,"on":true},{"x":485,"y":315,"on":true}] + ] + }, + "endash": { + "advanceWidth": 500, + "contours": [ + [{"x":38,"y":226,"on":true},{"x":38,"y":311,"on":true},{"x":462,"y":311,"on":true},{"x":462,"y":226,"on":true}] + ] + }, + "uni2015": { + "advanceWidth": 1000, + "references": [ + {"glyph":"glyph2787","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2016": { + "advanceWidth": 539, + "references": [ + {"glyph":"bar","x":-96,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"bar","x":135,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "underscoredbl": { + "advanceWidth": 425, + "contours": [ + [{"x":427,"y":-100,"on":true},{"x":-2,"y":-100,"on":true},{"x":-2,"y":-38,"on":true},{"x":427,"y":-38,"on":true}], + [{"x":427,"y":-227,"on":true},{"x":-2,"y":-227,"on":true},{"x":-2,"y":-165,"on":true},{"x":427,"y":-165,"on":true}] + ] + }, + "quotesinglbase": { + "advanceWidth": 251, + "references": [ + {"glyph":"glyph2789","x":16,"y":-598,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "quotereversed": { + "advanceWidth": 194, + "contours": [ + [{"x":129,"y":714,"on":true},{"x":136,"y":661,"on":false},{"x":162,"y":524,"on":false},{"x":177,"y":466,"on":true},{"x":100,"y":466,"on":true},{"x":76,"y":521,"on":false},{"x":32,"y":645,"on":false},{"x":18,"y":703,"on":true},{"x":25,"y":714,"on":true}] + ] + }, + "quotedblbase": { + "advanceWidth": 421, + "references": [ + {"glyph":"glyph2790","x":10,"y":-597,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni201F": { + "advanceWidth": 383, + "contours": [ + [{"x":318,"y":714,"on":true},{"x":325,"y":660,"on":false},{"x":351,"y":527,"on":false},{"x":366,"y":466,"on":true},{"x":289,"y":466,"on":true},{"x":265,"y":521,"on":false},{"x":220,"y":645,"on":false},{"x":207,"y":703,"on":true},{"x":214,"y":714,"on":true}], + [{"x":128,"y":714,"on":true},{"x":135,"y":662,"on":false},{"x":161,"y":526,"on":false},{"x":176,"y":466,"on":true},{"x":100,"y":466,"on":true},{"x":75,"y":521,"on":false},{"x":32,"y":645,"on":false},{"x":18,"y":703,"on":true},{"x":24,"y":714,"on":true}] + ] + }, + "dagger": { + "advanceWidth": 494, + "contours": [ + [{"x":434,"y":477,"on":true},{"x":274,"y":490,"on":true},{"x":298,"y":0,"on":true},{"x":190,"y":0,"on":true},{"x":213,"y":490,"on":true},{"x":60,"y":477,"on":true},{"x":60,"y":569,"on":true},{"x":213,"y":554,"on":true},{"x":190,"y":760,"on":true},{"x":298,"y":760,"on":true},{"x":274,"y":554,"on":true},{"x":434,"y":569,"on":true}] + ] + }, + "daggerdbl": { + "advanceWidth": 494, + "contours": [ + [{"x":277,"y":249,"on":true},{"x":437,"y":263,"on":true},{"x":437,"y":172,"on":true},{"x":277,"y":185,"on":true},{"x":300,"y":0,"on":true},{"x":192,"y":0,"on":true},{"x":215,"y":185,"on":true},{"x":56,"y":172,"on":true},{"x":56,"y":263,"on":true},{"x":215,"y":249,"on":true},{"x":196,"y":384,"on":true},{"x":215,"y":511,"on":true},{"x":56,"y":497,"on":true},{"x":56,"y":588,"on":true},{"x":215,"y":574,"on":true},{"x":192,"y":760,"on":true},{"x":300,"y":760,"on":true},{"x":277,"y":574,"on":true},{"x":437,"y":588,"on":true},{"x":437,"y":497,"on":true},{"x":277,"y":511,"on":true},{"x":296,"y":384,"on":true}] + ] + }, + "bullet": { + "advanceWidth": 379, + "contours": [ + [{"x":66,"y":365,"on":true},{"x":66,"y":436,"on":false},{"x":134,"y":502,"on":false},{"x":189,"y":502,"on":true},{"x":243,"y":502,"on":false},{"x":312,"y":436,"on":false},{"x":312,"y":365,"on":true},{"x":312,"y":295,"on":false},{"x":243,"y":228,"on":false},{"x":189,"y":228,"on":true},{"x":134,"y":228,"on":false},{"x":66,"y":294,"on":false}] + ] + }, + "uni2023": { + "advanceWidth": 386, + "contours": [ + [{"x":66,"y":209,"on":true},{"x":66,"y":536,"on":true},{"x":348,"y":373,"on":true}] + ] + }, + "onedotenleader": { + "advanceWidth": 500, + "references": [ + {"glyph":"period","x":121,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "twodotenleader": { + "advanceWidth": 521, + "references": [ + {"glyph":"period","x":262,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"period","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2027": { + "advanceWidth": 259, + "references": [ + {"glyph":"period","x":0,"y":208,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2028": { + "advanceWidth": 447 + }, + "uni2029": { + "advanceWidth": 447 + }, + "uni202A": { + "advanceWidth": 0, + "contours": [ + [{"x":-20,"y":-133,"on":true},{"x":-20,"y":602,"on":true},{"x":212,"y":602,"on":true},{"x":212,"y":563,"on":true},{"x":21,"y":563,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni202B": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":563,"on":true},{"x":-212,"y":563,"on":true},{"x":-212,"y":602,"on":true},{"x":20,"y":602,"on":true},{"x":20,"y":-133,"on":true}] + ] + }, + "uni202C": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":477,"on":true},{"x":-116,"y":477,"on":true},{"x":-116,"y":689,"on":true},{"x":116,"y":689,"on":true},{"x":116,"y":477,"on":true},{"x":21,"y":477,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni202D": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":477,"on":true},{"x":-116,"y":477,"on":true},{"x":-116,"y":689,"on":true},{"x":116,"y":689,"on":true},{"x":116,"y":650,"on":true},{"x":-77,"y":650,"on":true},{"x":-77,"y":515,"on":true},{"x":116,"y":515,"on":true},{"x":116,"y":477,"on":true},{"x":21,"y":477,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni202E": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":477,"on":true},{"x":-116,"y":477,"on":true},{"x":-116,"y":515,"on":true},{"x":77,"y":515,"on":true},{"x":77,"y":650,"on":true},{"x":-116,"y":650,"on":true},{"x":-116,"y":689,"on":true},{"x":116,"y":689,"on":true},{"x":116,"y":477,"on":true},{"x":21,"y":477,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni202F": { + "advanceWidth": 188 + }, + "perthousand": { + "advanceWidth": 1126, + "contours": [ + [{"x":183,"y":724,"on":true},{"x":253,"y":724,"on":false},{"x":328,"y":607,"on":false},{"x":328,"y":501,"on":true},{"x":328,"y":394,"on":false},{"x":256,"y":276,"on":false},{"x":183,"y":276,"on":true},{"x":114,"y":276,"on":false},{"x":41,"y":395,"on":false},{"x":41,"y":501,"on":true},{"x":41,"y":608,"on":false},{"x":111,"y":724,"on":false}], + [{"x":611,"y":714,"on":true},{"x":266,"y":0,"on":true},{"x":182,"y":0,"on":true},{"x":527,"y":714,"on":true}], + [{"x":183,"y":652,"on":true},{"x":152,"y":652,"on":false},{"x":125,"y":577,"on":false},{"x":125,"y":501,"on":true},{"x":125,"y":424,"on":false},{"x":152,"y":349,"on":false},{"x":183,"y":349,"on":true},{"x":244,"y":349,"on":false},{"x":244,"y":501,"on":true},{"x":244,"y":652,"on":false}], + [{"x":609,"y":439,"on":true},{"x":679,"y":439,"on":false},{"x":753,"y":322,"on":false},{"x":753,"y":216,"on":true},{"x":753,"y":109,"on":false},{"x":682,"y":-9,"on":false},{"x":609,"y":-9,"on":true},{"x":540,"y":-9,"on":false},{"x":467,"y":110,"on":false},{"x":467,"y":216,"on":true},{"x":467,"y":323,"on":false},{"x":537,"y":439,"on":false}], + [{"x":940,"y":439,"on":true},{"x":1010,"y":439,"on":false},{"x":1085,"y":322,"on":false},{"x":1085,"y":216,"on":true},{"x":1085,"y":110,"on":false},{"x":1014,"y":-9,"on":false},{"x":940,"y":-9,"on":true},{"x":871,"y":-9,"on":false},{"x":799,"y":110,"on":false},{"x":799,"y":216,"on":true},{"x":799,"y":322,"on":false},{"x":868,"y":439,"on":false}], + [{"x":609,"y":366,"on":true},{"x":578,"y":366,"on":false},{"x":551,"y":291,"on":false},{"x":551,"y":215,"on":true},{"x":551,"y":139,"on":false},{"x":578,"y":63,"on":false},{"x":609,"y":63,"on":true},{"x":669,"y":63,"on":false},{"x":669,"y":215,"on":true},{"x":669,"y":366,"on":false}], + [{"x":941,"y":366,"on":true},{"x":910,"y":366,"on":false},{"x":883,"y":291,"on":false},{"x":883,"y":215,"on":true},{"x":883,"y":139,"on":false},{"x":910,"y":63,"on":false},{"x":941,"y":63,"on":true},{"x":1001,"y":63,"on":false},{"x":1001,"y":215,"on":true},{"x":1001,"y":366,"on":false}] + ] + }, + "uni2031": { + "advanceWidth": 1467, + "contours": [ + [{"x":183,"y":724,"on":true},{"x":256,"y":724,"on":false},{"x":329,"y":603,"on":false},{"x":329,"y":501,"on":true},{"x":329,"y":393,"on":false},{"x":256,"y":276,"on":false},{"x":183,"y":276,"on":true},{"x":114,"y":276,"on":false},{"x":39,"y":395,"on":false},{"x":39,"y":501,"on":true},{"x":39,"y":608,"on":false},{"x":111,"y":724,"on":false}], + [{"x":614,"y":714,"on":true},{"x":268,"y":0,"on":true},{"x":185,"y":0,"on":true},{"x":530,"y":714,"on":true}], + [{"x":184,"y":650,"on":true},{"x":153,"y":650,"on":false},{"x":126,"y":576,"on":false},{"x":126,"y":501,"on":true},{"x":126,"y":425,"on":false},{"x":153,"y":350,"on":false},{"x":184,"y":350,"on":true},{"x":244,"y":350,"on":false},{"x":244,"y":501,"on":true},{"x":244,"y":650,"on":false}], + [{"x":1282,"y":439,"on":true},{"x":1355,"y":439,"on":false},{"x":1428,"y":317,"on":false},{"x":1428,"y":216,"on":true},{"x":1428,"y":108,"on":false},{"x":1355,"y":-9,"on":false},{"x":1282,"y":-9,"on":true},{"x":1209,"y":-9,"on":false},{"x":1138,"y":114,"on":false},{"x":1138,"y":216,"on":true},{"x":1138,"y":323,"on":false},{"x":1209,"y":439,"on":false}], + [{"x":615,"y":439,"on":true},{"x":688,"y":439,"on":false},{"x":761,"y":317,"on":false},{"x":761,"y":216,"on":true},{"x":761,"y":108,"on":false},{"x":688,"y":-9,"on":false},{"x":615,"y":-9,"on":true},{"x":542,"y":-9,"on":false},{"x":471,"y":114,"on":false},{"x":471,"y":216,"on":true},{"x":471,"y":324,"on":false},{"x":543,"y":439,"on":false}], + [{"x":948,"y":439,"on":true},{"x":1021,"y":439,"on":false},{"x":1094,"y":317,"on":false},{"x":1094,"y":216,"on":true},{"x":1094,"y":108,"on":false},{"x":1021,"y":-9,"on":false},{"x":948,"y":-9,"on":true},{"x":876,"y":-9,"on":false},{"x":804,"y":114,"on":false},{"x":804,"y":216,"on":true},{"x":804,"y":323,"on":false},{"x":876,"y":439,"on":false}], + [{"x":1282,"y":364,"on":true},{"x":1251,"y":364,"on":false},{"x":1224,"y":290,"on":false},{"x":1224,"y":215,"on":true},{"x":1224,"y":139,"on":false},{"x":1251,"y":65,"on":false},{"x":1282,"y":65,"on":true},{"x":1342,"y":65,"on":false},{"x":1342,"y":215,"on":true},{"x":1342,"y":364,"on":false}], + [{"x":615,"y":364,"on":true},{"x":584,"y":364,"on":false},{"x":557,"y":290,"on":false},{"x":557,"y":215,"on":true},{"x":557,"y":139,"on":false},{"x":584,"y":65,"on":false},{"x":615,"y":65,"on":true},{"x":674,"y":65,"on":false},{"x":674,"y":215,"on":true},{"x":674,"y":364,"on":false}], + [{"x":948,"y":364,"on":true},{"x":890,"y":364,"on":false},{"x":890,"y":215,"on":true},{"x":890,"y":65,"on":false},{"x":948,"y":65,"on":true},{"x":1008,"y":65,"on":false},{"x":1008,"y":215,"on":true},{"x":1008,"y":364,"on":false}] + ] + }, + "minute": { + "advanceWidth": 235, + "contours": [ + [{"x":148,"y":714,"on":true},{"x":251,"y":714,"on":true},{"x":110,"y":470,"on":true},{"x":41,"y":470,"on":true}] + ] + }, + "second": { + "advanceWidth": 424, + "contours": [ + [{"x":230,"y":470,"on":true},{"x":338,"y":714,"on":true},{"x":441,"y":714,"on":true},{"x":299,"y":470,"on":true}], + [{"x":41,"y":470,"on":true},{"x":148,"y":714,"on":true},{"x":251,"y":714,"on":true},{"x":110,"y":470,"on":true}] + ] + }, + "uni2034": { + "advanceWidth": 614, + "contours": [ + [{"x":420,"y":470,"on":true},{"x":527,"y":714,"on":true},{"x":630,"y":714,"on":true},{"x":488,"y":470,"on":true}], + [{"x":41,"y":470,"on":true},{"x":148,"y":714,"on":true},{"x":251,"y":714,"on":true},{"x":110,"y":470,"on":true}], + [{"x":230,"y":470,"on":true},{"x":338,"y":714,"on":true},{"x":441,"y":714,"on":true},{"x":299,"y":470,"on":true}] + ] + }, + "uni2035": { + "advanceWidth": 286, + "contours": [ + [{"x":116,"y":714,"on":true},{"x":223,"y":470,"on":true},{"x":154,"y":470,"on":true},{"x":13,"y":714,"on":true}] + ] + }, + "uni2036": { + "advanceWidth": 488, + "references": [ + {"glyph":"uni2035","x":178,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni2035","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2037": { + "advanceWidth": 665, + "references": [ + {"glyph":"uni2035","x":356,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni2035","x":178,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni2035","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2038": { + "advanceWidth": 388, + "contours": [ + [{"x":20,"y":-240,"on":true},{"x":171,"y":82,"on":true},{"x":214,"y":82,"on":true},{"x":368,"y":-240,"on":true},{"x":301,"y":-240,"on":true},{"x":193,"y":-7,"on":true},{"x":86,"y":-240,"on":true}] + ] + }, + "guilsinglleft": { + "advanceWidth": 310, + "contours": [ + [{"x":37,"y":273,"on":true},{"x":200,"y":478,"on":true},{"x":273,"y":438,"on":true},{"x":146,"y":267,"on":true},{"x":273,"y":96,"on":true},{"x":200,"y":55,"on":true},{"x":37,"y":260,"on":true}] + ] + }, + "guilsinglright": { + "advanceWidth": 310, + "contours": [ + [{"x":110,"y":478,"on":true},{"x":273,"y":273,"on":true},{"x":273,"y":260,"on":true},{"x":110,"y":55,"on":true},{"x":38,"y":96,"on":true},{"x":164,"y":267,"on":true},{"x":38,"y":438,"on":true}] + ] + }, + "uni203B": { + "advanceWidth": 840, + "contours": [ + [{"x":417,"y":599,"on":true},{"x":386,"y":599,"on":false},{"x":356,"y":633,"on":false},{"x":356,"y":663,"on":true},{"x":356,"y":693,"on":false},{"x":386,"y":727,"on":false},{"x":417,"y":727,"on":true},{"x":447,"y":727,"on":false},{"x":478,"y":693,"on":false},{"x":478,"y":663,"on":true},{"x":478,"y":633,"on":false},{"x":447,"y":599,"on":false}], + [{"x":120,"y":-1,"on":true},{"x":66,"y":53,"on":true},{"x":364,"y":356,"on":true},{"x":64,"y":657,"on":true},{"x":119,"y":712,"on":true},{"x":420,"y":411,"on":true},{"x":721,"y":712,"on":true},{"x":776,"y":657,"on":true},{"x":475,"y":356,"on":true},{"x":774,"y":53,"on":true},{"x":719,"y":-2,"on":true},{"x":420,"y":300,"on":true}], + [{"x":107,"y":290,"on":true},{"x":80,"y":290,"on":false},{"x":46,"y":320,"on":false},{"x":46,"y":353,"on":true},{"x":46,"y":387,"on":false},{"x":80,"y":417,"on":false},{"x":107,"y":417,"on":true},{"x":134,"y":417,"on":false},{"x":168,"y":387,"on":false},{"x":168,"y":353,"on":true},{"x":168,"y":320,"on":false},{"x":134,"y":290,"on":false}], + [{"x":733,"y":290,"on":true},{"x":706,"y":290,"on":false},{"x":672,"y":320,"on":false},{"x":672,"y":353,"on":true},{"x":672,"y":387,"on":false},{"x":706,"y":417,"on":false},{"x":733,"y":417,"on":true},{"x":760,"y":417,"on":false},{"x":794,"y":387,"on":false},{"x":794,"y":353,"on":true},{"x":794,"y":320,"on":false},{"x":760,"y":290,"on":false}], + [{"x":417,"y":-18,"on":true},{"x":356,"y":-18,"on":false},{"x":356,"y":46,"on":true},{"x":356,"y":76,"on":false},{"x":386,"y":110,"on":false},{"x":417,"y":110,"on":true},{"x":447,"y":110,"on":false},{"x":478,"y":76,"on":false},{"x":478,"y":46,"on":true},{"x":478,"y":-18,"on":false}] + ] + }, + "exclamdbl": { + "advanceWidth": 498, + "references": [ + {"glyph":"exclam","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"exclam","x":236,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni203D": { + "advanceWidth": 409, + "contours": [ + [{"x":128,"y":212,"on":true},{"x":110,"y":629,"on":true},{"x":95,"y":624,"on":false},{"x":65,"y":611,"on":false},{"x":49,"y":602,"on":true},{"x":13,"y":673,"on":true},{"x":56,"y":698,"on":false},{"x":144,"y":724,"on":false},{"x":194,"y":724,"on":true},{"x":284,"y":724,"on":false},{"x":384,"y":633,"on":false},{"x":384,"y":552,"on":true},{"x":384,"y":508,"on":false},{"x":361,"y":445,"on":false},{"x":314,"y":390,"on":false},{"x":278,"y":359,"on":true},{"x":244,"y":328,"on":false},{"x":213,"y":276,"on":false},{"x":213,"y":230,"on":true},{"x":213,"y":212,"on":true}], + [{"x":197,"y":381,"on":true},{"x":207,"y":397,"on":false},{"x":225,"y":414,"on":true},{"x":268,"y":453,"on":false},{"x":294,"y":511,"on":false},{"x":294,"y":548,"on":true},{"x":294,"y":592,"on":false},{"x":246,"y":640,"on":false},{"x":206,"y":644,"on":true}], + [{"x":171,"y":-11,"on":true},{"x":142,"y":-11,"on":false},{"x":107,"y":22,"on":false},{"x":107,"y":57,"on":true},{"x":107,"y":92,"on":false},{"x":142,"y":125,"on":false},{"x":171,"y":125,"on":true},{"x":200,"y":125,"on":false},{"x":235,"y":93,"on":false},{"x":235,"y":57,"on":true},{"x":235,"y":22,"on":false},{"x":200,"y":-11,"on":false}] + ] + }, + "uni203E": { + "advanceWidth": 480, + "references": [ + {"glyph":"macron","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni203F": { + "advanceWidth": 606, + "contours": [ + [{"x":74,"y":-34,"on":true},{"x":107,"y":-106,"on":false},{"x":222,"y":-188,"on":false},{"x":304,"y":-188,"on":true},{"x":380,"y":-188,"on":false},{"x":498,"y":-106,"on":false},{"x":532,"y":-34,"on":true},{"x":580,"y":-56,"on":true},{"x":539,"y":-148,"on":false},{"x":402,"y":-249,"on":false},{"x":304,"y":-249,"on":true},{"x":204,"y":-249,"on":false},{"x":68,"y":-148,"on":false},{"x":26,"y":-56,"on":true}] + ] + }, + "uni2040": { + "advanceWidth": 606, + "contours": [ + [{"x":74,"y":583,"on":true},{"x":26,"y":605,"on":true},{"x":67,"y":696,"on":false},{"x":205,"y":798,"on":false},{"x":302,"y":798,"on":true},{"x":402,"y":798,"on":false},{"x":538,"y":696,"on":false},{"x":580,"y":605,"on":true},{"x":532,"y":583,"on":true},{"x":498,"y":654,"on":false},{"x":383,"y":736,"on":false},{"x":302,"y":736,"on":true},{"x":226,"y":736,"on":false},{"x":108,"y":654,"on":false}] + ] + }, + "uni2041": { + "advanceWidth": 386, + "contours": [ + [{"x":17,"y":-240,"on":true},{"x":303,"y":402,"on":true},{"x":371,"y":402,"on":true},{"x":218,"y":58,"on":true},{"x":350,"y":-240,"on":true},{"x":283,"y":-240,"on":true},{"x":187,"y":-10,"on":true},{"x":85,"y":-240,"on":true}] + ] + }, + "uni2042": { + "advanceWidth": 1021, + "references": [ + {"glyph":"asterisk","x":269,"y":6,"a":0.96905517578125,"b":0,"c":0,"d":0.96905517578125,"roundToGrid":true}, + {"glyph":"asterisk","x":-13,"y":-427,"a":0.96905517578125,"b":0,"c":0,"d":0.96905517578125,"roundToGrid":true}, + {"glyph":"asterisk","x":548,"y":-427,"a":0.96905517578125,"b":0,"c":0,"d":0.96905517578125,"roundToGrid":true} + ] + }, + "uni2043": { + "advanceWidth": 308, + "references": [ + {"glyph":"hyphen","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "fraction": { + "advanceWidth": 123, + "contours": [ + [{"x":304,"y":714,"on":true},{"x":-97,"y":0,"on":true},{"x":-182,"y":0,"on":true},{"x":219,"y":714,"on":true}] + ] + }, + "uni2045": { + "advanceWidth": 320, + "contours": [ + [{"x":294,"y":-160,"on":true},{"x":73,"y":-160,"on":true},{"x":73,"y":717,"on":true},{"x":294,"y":717,"on":true},{"x":294,"y":638,"on":true},{"x":166,"y":638,"on":true},{"x":166,"y":321,"on":true},{"x":294,"y":321,"on":true},{"x":294,"y":243,"on":true},{"x":166,"y":243,"on":true},{"x":166,"y":-81,"on":true},{"x":294,"y":-81,"on":true}] + ] + }, + "uni2046": { + "advanceWidth": 320, + "contours": [ + [{"x":27,"y":-160,"on":true},{"x":27,"y":-79,"on":true},{"x":153,"y":-79,"on":true},{"x":153,"y":242,"on":true},{"x":26,"y":242,"on":true},{"x":26,"y":322,"on":true},{"x":153,"y":322,"on":true},{"x":153,"y":637,"on":true},{"x":27,"y":637,"on":true},{"x":27,"y":717,"on":true},{"x":250,"y":717,"on":true},{"x":250,"y":-160,"on":true}] + ] + }, + "uni2047": { + "advanceWidth": 804, + "references": [ + {"glyph":"question","x":399,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"question","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2048": { + "advanceWidth": 656, + "references": [ + {"glyph":"question","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"exclam","x":394,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2049": { + "advanceWidth": 658, + "references": [ + {"glyph":"exclam","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"question","x":253,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni204A": { + "advanceWidth": 592, + "contours": [ + [{"x":517,"y":0,"on":true},{"x":439,"y":0,"on":true},{"x":439,"y":462,"on":true},{"x":37,"y":462,"on":true},{"x":37,"y":540,"on":true},{"x":517,"y":540,"on":true}] + ] + }, + "uni204B": { + "advanceWidth": 608, + "references": [ + {"glyph":"paragraph","x":594,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni204C": { + "advanceWidth": 604, + "contours": [ + [{"x":266,"y":39,"on":true},{"x":164,"y":39,"on":false},{"x":53,"y":153,"on":false},{"x":53,"y":288,"on":true},{"x":53,"y":422,"on":false},{"x":168,"y":539,"on":false},{"x":273,"y":539,"on":true},{"x":520,"y":539,"on":true},{"x":520,"y":39,"on":true}], + [{"x":358,"y":114,"on":true},{"x":453,"y":114,"on":true},{"x":453,"y":464,"on":true},{"x":358,"y":464,"on":true}] + ] + }, + "uni204D": { + "advanceWidth": 604, + "contours": [ + [{"x":84,"y":39,"on":true},{"x":84,"y":539,"on":true},{"x":331,"y":539,"on":true},{"x":436,"y":539,"on":false},{"x":551,"y":422,"on":false},{"x":551,"y":288,"on":true},{"x":551,"y":153,"on":false},{"x":439,"y":39,"on":false},{"x":338,"y":39,"on":true}], + [{"x":151,"y":114,"on":true},{"x":246,"y":114,"on":true},{"x":246,"y":464,"on":true},{"x":151,"y":464,"on":true}] + ] + }, + "uni204E": { + "advanceWidth": 499, + "references": [ + {"glyph":"asterisk","x":0,"y":-510,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni204F": { + "advanceWidth": 246, + "references": [ + {"glyph":"semicolon","x":247,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2050": { + "advanceWidth": 602, + "references": [ + {"glyph":"uni203F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni2040","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2051": { + "advanceWidth": 499, + "references": [ + {"glyph":"asterisk","x":0,"y":-494,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"asterisk","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2052": { + "advanceWidth": 383, + "contours": [ + [{"x":7,"y":659,"on":true},{"x":7,"y":694,"on":false},{"x":41,"y":726,"on":false},{"x":70,"y":726,"on":true},{"x":99,"y":726,"on":false},{"x":134,"y":694,"on":false},{"x":134,"y":659,"on":true},{"x":134,"y":624,"on":false},{"x":99,"y":593,"on":false},{"x":70,"y":593,"on":true},{"x":41,"y":593,"on":false},{"x":7,"y":625,"on":false}], + [{"x":377,"y":715,"on":true},{"x":95,"y":-2,"on":true},{"x":6,"y":-2,"on":true},{"x":288,"y":715,"on":true}], + [{"x":250,"y":54,"on":true},{"x":250,"y":88,"on":false},{"x":284,"y":120,"on":false},{"x":313,"y":120,"on":true},{"x":342,"y":120,"on":false},{"x":377,"y":88,"on":false},{"x":377,"y":54,"on":true},{"x":377,"y":20,"on":false},{"x":342,"y":-12,"on":false},{"x":313,"y":-12,"on":true},{"x":284,"y":-12,"on":false},{"x":250,"y":20,"on":false}] + ] + }, + "uni2053": { + "advanceWidth": 1000, + "contours": [ + [{"x":744,"y":289,"on":true},{"x":799,"y":289,"on":false},{"x":861,"y":336,"on":false},{"x":872,"y":371,"on":true},{"x":933,"y":371,"on":true},{"x":923,"y":292,"on":false},{"x":808,"y":209,"on":false},{"x":728,"y":209,"on":true},{"x":672,"y":209,"on":false},{"x":549,"y":235,"on":false},{"x":425,"y":270,"on":false},{"x":308,"y":296,"on":false},{"x":259,"y":296,"on":true},{"x":204,"y":296,"on":false},{"x":142,"y":248,"on":false},{"x":131,"y":213,"on":true},{"x":70,"y":213,"on":true},{"x":80,"y":292,"on":false},{"x":195,"y":376,"on":false},{"x":275,"y":376,"on":true},{"x":333,"y":376,"on":false},{"x":455,"y":350,"on":false},{"x":577,"y":315,"on":false},{"x":693,"y":289,"on":false}] + ] + }, + "uni2054": { + "advanceWidth": 602, + "references": [ + {"glyph":"uni203F","x":0,"y":-260,"a":1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2055": { + "advanceWidth": 568, + "contours": [ + [{"x":538,"y":215,"on":true},{"x":369,"y":215,"on":true},{"x":488,"y":96,"on":true},{"x":438,"y":46,"on":true},{"x":318,"y":165,"on":true},{"x":318,"y":-4,"on":true},{"x":247,"y":-3,"on":true},{"x":247,"y":165,"on":true},{"x":128,"y":45,"on":true},{"x":79,"y":96,"on":true},{"x":198,"y":215,"on":true},{"x":28,"y":215,"on":true},{"x":28,"y":286,"on":true},{"x":198,"y":286,"on":true},{"x":78,"y":406,"on":true},{"x":128,"y":456,"on":true},{"x":247,"y":336,"on":true},{"x":247,"y":505,"on":true},{"x":318,"y":505,"on":true},{"x":318,"y":336,"on":true},{"x":438,"y":456,"on":true},{"x":488,"y":406,"on":true},{"x":369,"y":286,"on":true},{"x":538,"y":286,"on":true}] + ] + }, + "uni2056": { + "advanceWidth": 531, + "contours": [ + [{"x":346,"y":664,"on":true},{"x":346,"y":698,"on":false},{"x":382,"y":730,"on":false},{"x":412,"y":730,"on":true},{"x":443,"y":730,"on":false},{"x":478,"y":698,"on":false},{"x":478,"y":664,"on":true},{"x":478,"y":631,"on":false},{"x":443,"y":598,"on":false},{"x":412,"y":598,"on":true},{"x":382,"y":598,"on":false},{"x":346,"y":631,"on":false}], + [{"x":53,"y":355,"on":true},{"x":53,"y":389,"on":false},{"x":88,"y":421,"on":false},{"x":119,"y":421,"on":true},{"x":149,"y":421,"on":false},{"x":185,"y":389,"on":false},{"x":185,"y":355,"on":true},{"x":185,"y":321,"on":false},{"x":149,"y":289,"on":false},{"x":119,"y":289,"on":true},{"x":88,"y":289,"on":false},{"x":53,"y":321,"on":false}], + [{"x":346,"y":49,"on":true},{"x":346,"y":83,"on":false},{"x":382,"y":115,"on":false},{"x":412,"y":115,"on":true},{"x":443,"y":115,"on":false},{"x":478,"y":83,"on":false},{"x":478,"y":49,"on":true},{"x":478,"y":15,"on":false},{"x":443,"y":-17,"on":false},{"x":412,"y":-17,"on":true},{"x":382,"y":-17,"on":false},{"x":346,"y":15,"on":false}] + ] + }, + "uni2057": { + "advanceWidth": 821, + "references": [ + {"glyph":"minute","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"minute","x":183,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"minute","x":367,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"minute","x":551,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2058": { + "advanceWidth": 832, + "contours": [ + [{"x":345,"y":664,"on":true},{"x":345,"y":698,"on":false},{"x":381,"y":730,"on":false},{"x":411,"y":730,"on":true},{"x":441,"y":730,"on":false},{"x":477,"y":698,"on":false},{"x":477,"y":664,"on":true},{"x":477,"y":631,"on":false},{"x":441,"y":598,"on":false},{"x":411,"y":598,"on":true},{"x":381,"y":598,"on":false},{"x":345,"y":631,"on":false}], + [{"x":52,"y":355,"on":true},{"x":52,"y":389,"on":false},{"x":87,"y":421,"on":false},{"x":118,"y":421,"on":true},{"x":148,"y":421,"on":false},{"x":184,"y":389,"on":false},{"x":184,"y":355,"on":true},{"x":184,"y":321,"on":false},{"x":148,"y":289,"on":false},{"x":118,"y":289,"on":true},{"x":87,"y":289,"on":false},{"x":52,"y":321,"on":false}], + [{"x":647,"y":355,"on":true},{"x":647,"y":389,"on":false},{"x":683,"y":421,"on":false},{"x":713,"y":421,"on":true},{"x":743,"y":421,"on":false},{"x":779,"y":389,"on":false},{"x":779,"y":355,"on":true},{"x":779,"y":321,"on":false},{"x":743,"y":289,"on":false},{"x":713,"y":289,"on":true},{"x":683,"y":289,"on":false},{"x":647,"y":321,"on":false}], + [{"x":345,"y":49,"on":true},{"x":345,"y":83,"on":false},{"x":381,"y":115,"on":false},{"x":411,"y":115,"on":true},{"x":441,"y":115,"on":false},{"x":477,"y":83,"on":false},{"x":477,"y":49,"on":true},{"x":477,"y":15,"on":false},{"x":441,"y":-17,"on":false},{"x":411,"y":-17,"on":true},{"x":381,"y":-17,"on":false},{"x":345,"y":15,"on":false}] + ] + }, + "uni2059": { + "advanceWidth": 837, + "contours": [ + [{"x":53,"y":664,"on":true},{"x":53,"y":698,"on":false},{"x":88,"y":730,"on":false},{"x":119,"y":730,"on":true},{"x":149,"y":730,"on":false},{"x":185,"y":698,"on":false},{"x":185,"y":664,"on":true},{"x":185,"y":630,"on":false},{"x":149,"y":598,"on":false},{"x":119,"y":598,"on":true},{"x":88,"y":598,"on":false},{"x":53,"y":630,"on":false}], + [{"x":652,"y":664,"on":true},{"x":652,"y":698,"on":false},{"x":688,"y":730,"on":false},{"x":718,"y":730,"on":true},{"x":749,"y":730,"on":false},{"x":784,"y":698,"on":false},{"x":784,"y":664,"on":true},{"x":784,"y":630,"on":false},{"x":749,"y":598,"on":false},{"x":718,"y":598,"on":true},{"x":688,"y":598,"on":false},{"x":652,"y":630,"on":false}], + [{"x":347,"y":362,"on":true},{"x":347,"y":396,"on":false},{"x":383,"y":428,"on":false},{"x":413,"y":428,"on":true},{"x":444,"y":428,"on":false},{"x":479,"y":396,"on":false},{"x":479,"y":362,"on":true},{"x":479,"y":328,"on":false},{"x":444,"y":296,"on":false},{"x":413,"y":296,"on":true},{"x":383,"y":296,"on":false},{"x":347,"y":328,"on":false}], + [{"x":53,"y":49,"on":true},{"x":53,"y":83,"on":false},{"x":88,"y":115,"on":false},{"x":119,"y":115,"on":true},{"x":149,"y":115,"on":false},{"x":185,"y":83,"on":false},{"x":185,"y":49,"on":true},{"x":185,"y":15,"on":false},{"x":149,"y":-17,"on":false},{"x":119,"y":-17,"on":true},{"x":88,"y":-17,"on":false},{"x":53,"y":15,"on":false}], + [{"x":645,"y":49,"on":true},{"x":645,"y":83,"on":false},{"x":681,"y":115,"on":false},{"x":711,"y":115,"on":true},{"x":741,"y":115,"on":false},{"x":777,"y":83,"on":false},{"x":777,"y":49,"on":true},{"x":777,"y":15,"on":false},{"x":741,"y":-17,"on":false},{"x":711,"y":-17,"on":true},{"x":681,"y":-17,"on":false},{"x":645,"y":15,"on":false}] + ] + }, + "uni205A": { + "advanceWidth": 238, + "contours": [ + [{"x":53,"y":659,"on":true},{"x":53,"y":695,"on":false},{"x":90,"y":727,"on":false},{"x":119,"y":727,"on":true},{"x":148,"y":727,"on":false},{"x":185,"y":695,"on":false},{"x":185,"y":659,"on":true},{"x":185,"y":624,"on":false},{"x":148,"y":591,"on":false},{"x":119,"y":591,"on":true},{"x":90,"y":591,"on":false},{"x":53,"y":624,"on":false}], + [{"x":53,"y":55,"on":true},{"x":53,"y":91,"on":false},{"x":90,"y":123,"on":false},{"x":119,"y":123,"on":true},{"x":148,"y":123,"on":false},{"x":185,"y":91,"on":false},{"x":185,"y":55,"on":true},{"x":185,"y":20,"on":false},{"x":148,"y":-13,"on":false},{"x":119,"y":-13,"on":true},{"x":90,"y":-13,"on":false},{"x":53,"y":20,"on":false}] + ] + }, + "uni205B": { + "advanceWidth": 671, + "contours": [ + [{"x":333,"y":622,"on":true},{"x":304,"y":622,"on":false},{"x":266,"y":655,"on":false},{"x":266,"y":690,"on":true},{"x":266,"y":726,"on":false},{"x":304,"y":758,"on":false},{"x":333,"y":758,"on":true},{"x":362,"y":758,"on":false},{"x":398,"y":726,"on":false},{"x":398,"y":690,"on":true},{"x":398,"y":655,"on":false},{"x":362,"y":622,"on":false}], + [{"x":119,"y":303,"on":true},{"x":90,"y":303,"on":false},{"x":53,"y":336,"on":false},{"x":53,"y":371,"on":true},{"x":53,"y":407,"on":false},{"x":90,"y":439,"on":false},{"x":119,"y":439,"on":true},{"x":148,"y":439,"on":false},{"x":185,"y":407,"on":false},{"x":185,"y":371,"on":true},{"x":185,"y":336,"on":false},{"x":148,"y":303,"on":false}], + [{"x":553,"y":303,"on":true},{"x":524,"y":303,"on":false},{"x":487,"y":336,"on":false},{"x":487,"y":371,"on":true},{"x":487,"y":407,"on":false},{"x":524,"y":439,"on":false},{"x":553,"y":439,"on":true},{"x":582,"y":439,"on":false},{"x":618,"y":407,"on":false},{"x":618,"y":371,"on":true},{"x":618,"y":336,"on":false},{"x":582,"y":303,"on":false}], + [{"x":333,"y":-13,"on":true},{"x":304,"y":-13,"on":false},{"x":266,"y":20,"on":false},{"x":266,"y":55,"on":true},{"x":266,"y":91,"on":false},{"x":304,"y":123,"on":false},{"x":333,"y":123,"on":true},{"x":362,"y":123,"on":false},{"x":398,"y":91,"on":false},{"x":398,"y":55,"on":true},{"x":398,"y":20,"on":false},{"x":362,"y":-13,"on":false}] + ] + }, + "uni205C": { + "advanceWidth": 807, + "contours": [ + [{"x":360,"y":-24,"on":true},{"x":360,"y":313,"on":true},{"x":36,"y":313,"on":true},{"x":36,"y":400,"on":true},{"x":360,"y":400,"on":true},{"x":360,"y":736,"on":true},{"x":447,"y":736,"on":true},{"x":447,"y":400,"on":true},{"x":772,"y":400,"on":true},{"x":771,"y":313,"on":true},{"x":447,"y":313,"on":true},{"x":447,"y":-24,"on":true}], + [{"x":175,"y":522,"on":true},{"x":146,"y":522,"on":false},{"x":109,"y":554,"on":false},{"x":109,"y":589,"on":true},{"x":109,"y":626,"on":false},{"x":146,"y":657,"on":false},{"x":175,"y":657,"on":true},{"x":204,"y":657,"on":false},{"x":240,"y":626,"on":false},{"x":240,"y":589,"on":true},{"x":240,"y":554,"on":false},{"x":204,"y":522,"on":false}], + [{"x":633,"y":522,"on":true},{"x":604,"y":522,"on":false},{"x":566,"y":554,"on":false},{"x":566,"y":589,"on":true},{"x":566,"y":626,"on":false},{"x":604,"y":657,"on":false},{"x":633,"y":657,"on":true},{"x":662,"y":657,"on":false},{"x":698,"y":626,"on":false},{"x":698,"y":589,"on":true},{"x":698,"y":554,"on":false},{"x":662,"y":522,"on":false}], + [{"x":175,"y":57,"on":true},{"x":146,"y":57,"on":false},{"x":109,"y":90,"on":false},{"x":109,"y":124,"on":true},{"x":109,"y":161,"on":false},{"x":146,"y":192,"on":false},{"x":175,"y":192,"on":true},{"x":204,"y":192,"on":false},{"x":240,"y":161,"on":false},{"x":240,"y":124,"on":true},{"x":240,"y":90,"on":false},{"x":204,"y":57,"on":false}], + [{"x":626,"y":57,"on":true},{"x":597,"y":57,"on":false},{"x":560,"y":90,"on":false},{"x":560,"y":124,"on":true},{"x":560,"y":161,"on":false},{"x":597,"y":192,"on":false},{"x":626,"y":192,"on":true},{"x":654,"y":192,"on":false},{"x":691,"y":161,"on":false},{"x":691,"y":124,"on":true},{"x":691,"y":90,"on":false},{"x":654,"y":57,"on":false}] + ] + }, + "uni205D": { + "advanceWidth": 256, + "contours": [ + [{"x":61,"y":660,"on":true},{"x":61,"y":698,"on":false},{"x":100,"y":730,"on":false},{"x":129,"y":730,"on":true},{"x":158,"y":730,"on":false},{"x":197,"y":698,"on":false},{"x":197,"y":660,"on":true},{"x":197,"y":622,"on":false},{"x":158,"y":590,"on":false},{"x":129,"y":590,"on":true},{"x":100,"y":590,"on":false},{"x":61,"y":622,"on":false}], + [{"x":61,"y":360,"on":true},{"x":61,"y":397,"on":false},{"x":100,"y":429,"on":false},{"x":129,"y":429,"on":true},{"x":158,"y":429,"on":false},{"x":197,"y":397,"on":false},{"x":197,"y":360,"on":true},{"x":197,"y":324,"on":false},{"x":158,"y":290,"on":false},{"x":129,"y":290,"on":true},{"x":100,"y":290,"on":false},{"x":61,"y":324,"on":false}], + [{"x":61,"y":54,"on":true},{"x":61,"y":92,"on":false},{"x":100,"y":124,"on":false},{"x":128,"y":124,"on":true},{"x":157,"y":124,"on":false},{"x":196,"y":92,"on":false},{"x":196,"y":54,"on":true},{"x":196,"y":17,"on":false},{"x":157,"y":-16,"on":false},{"x":128,"y":-16,"on":true},{"x":100,"y":-16,"on":false},{"x":61,"y":17,"on":false}] + ] + }, + "uni205E": { + "advanceWidth": 260, + "contours": [ + [{"x":130,"y":595,"on":true},{"x":100,"y":595,"on":false},{"x":64,"y":629,"on":false},{"x":64,"y":664,"on":true},{"x":64,"y":700,"on":false},{"x":100,"y":733,"on":false},{"x":130,"y":733,"on":true},{"x":159,"y":733,"on":false},{"x":196,"y":700,"on":false},{"x":196,"y":664,"on":true},{"x":196,"y":628,"on":false},{"x":158,"y":595,"on":false}], + [{"x":130,"y":392,"on":true},{"x":100,"y":392,"on":false},{"x":64,"y":426,"on":false},{"x":64,"y":461,"on":true},{"x":64,"y":497,"on":false},{"x":100,"y":530,"on":false},{"x":130,"y":530,"on":true},{"x":159,"y":530,"on":false},{"x":196,"y":497,"on":false},{"x":196,"y":461,"on":true},{"x":196,"y":425,"on":false},{"x":158,"y":392,"on":false}], + [{"x":130,"y":189,"on":true},{"x":100,"y":189,"on":false},{"x":64,"y":223,"on":false},{"x":64,"y":258,"on":true},{"x":64,"y":294,"on":false},{"x":100,"y":327,"on":false},{"x":130,"y":327,"on":true},{"x":159,"y":327,"on":false},{"x":196,"y":295,"on":false},{"x":196,"y":258,"on":true},{"x":196,"y":223,"on":false},{"x":158,"y":189,"on":false}], + [{"x":130,"y":-14,"on":true},{"x":100,"y":-14,"on":false},{"x":64,"y":20,"on":false},{"x":64,"y":55,"on":true},{"x":64,"y":91,"on":false},{"x":100,"y":124,"on":false},{"x":130,"y":124,"on":true},{"x":159,"y":124,"on":false},{"x":196,"y":92,"on":false},{"x":196,"y":55,"on":true},{"x":196,"y":20,"on":false},{"x":158,"y":-14,"on":false}] + ] + }, + "uni205F": { + "advanceWidth": 360 + }, + "uni2060": { + "advanceWidth": 380 + }, + "uni2061": { + "advanceWidth": 447 + }, + "uni2062": { + "advanceWidth": 542 + }, + "uni2063": { + "advanceWidth": 466 + }, + "uni2064": { + "advanceWidth": 542 + }, + "uni2066": { + "advanceWidth": 0 + }, + "uni2067": { + "advanceWidth": 0 + }, + "uni2068": { + "advanceWidth": 0 + }, + "uni2069": { + "advanceWidth": 0 + }, + "uni206A": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":477,"on":true},{"x":-116,"y":477,"on":true},{"x":-116,"y":515,"on":true},{"x":-21,"y":515,"on":true},{"x":-21,"y":650,"on":true},{"x":-116,"y":650,"on":true},{"x":-116,"y":689,"on":true},{"x":116,"y":689,"on":true},{"x":116,"y":650,"on":true},{"x":21,"y":650,"on":true},{"x":21,"y":515,"on":true},{"x":116,"y":515,"on":true},{"x":116,"y":477,"on":true},{"x":21,"y":477,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni206B": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":477,"on":true},{"x":-116,"y":477,"on":true},{"x":-116,"y":689,"on":true},{"x":116,"y":689,"on":true},{"x":116,"y":477,"on":true},{"x":21,"y":477,"on":true},{"x":21,"y":-133,"on":true}], + [{"x":-77,"y":515,"on":true},{"x":77,"y":515,"on":true},{"x":77,"y":650,"on":true},{"x":-77,"y":650,"on":true}] + ] + }, + "uni206C": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":510,"on":true},{"x":-117,"y":689,"on":true},{"x":117,"y":689,"on":true},{"x":21,"y":510,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni206D": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":477,"on":true},{"x":-117,"y":477,"on":true},{"x":0,"y":692,"on":true},{"x":117,"y":477,"on":true},{"x":21,"y":477,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni206E": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":494,"on":true},{"x":-117,"y":583,"on":true},{"x":0,"y":690,"on":true},{"x":117,"y":583,"on":true},{"x":21,"y":494,"on":true},{"x":21,"y":-133,"on":true}], + [{"x":0,"y":528,"on":true},{"x":62,"y":583,"on":true},{"x":0,"y":638,"on":true},{"x":-62,"y":583,"on":true}] + ] + }, + "uni206F": { + "advanceWidth": 0, + "contours": [ + [{"x":-21,"y":-133,"on":true},{"x":-21,"y":477,"on":true},{"x":-116,"y":477,"on":true},{"x":-116,"y":515,"on":true},{"x":-21,"y":515,"on":true},{"x":-21,"y":650,"on":true},{"x":-116,"y":650,"on":true},{"x":-116,"y":689,"on":true},{"x":21,"y":689,"on":true},{"x":21,"y":515,"on":true},{"x":116,"y":515,"on":true},{"x":116,"y":477,"on":true},{"x":21,"y":477,"on":true},{"x":21,"y":-133,"on":true}] + ] + }, + "uni2070": { + "advanceWidth": 344, + "contours": [ + [{"x":171,"y":407,"on":true},{"x":98,"y":407,"on":false},{"x":21,"y":524,"on":false},{"x":21,"y":631,"on":true},{"x":21,"y":739,"on":false},{"x":94,"y":853,"on":false},{"x":171,"y":853,"on":true},{"x":245,"y":853,"on":false},{"x":323,"y":738,"on":false},{"x":323,"y":631,"on":true},{"x":323,"y":523,"on":false},{"x":249,"y":407,"on":false}], + [{"x":171,"y":478,"on":true},{"x":240,"y":478,"on":false},{"x":240,"y":630,"on":true},{"x":240,"y":782,"on":false},{"x":171,"y":782,"on":true},{"x":105,"y":782,"on":false},{"x":105,"y":630,"on":true},{"x":105,"y":478,"on":false}] + ] + }, + "uni2071": { + "advanceWidth": 165, + "references": [ + {"glyph":"i","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2074": { + "advanceWidth": 344, + "contours": [ + [{"x":333,"y":504,"on":true},{"x":275,"y":504,"on":true},{"x":275,"y":416,"on":true},{"x":194,"y":416,"on":true},{"x":194,"y":504,"on":true},{"x":13,"y":504,"on":true},{"x":13,"y":562,"on":true},{"x":193,"y":846,"on":true},{"x":275,"y":846,"on":true},{"x":275,"y":569,"on":true},{"x":333,"y":569,"on":true}], + [{"x":194,"y":569,"on":true},{"x":194,"y":668,"on":true},{"x":194,"y":690,"on":false},{"x":194,"y":738,"on":false},{"x":196,"y":758,"on":true},{"x":192,"y":746,"on":false},{"x":169,"y":705,"on":false},{"x":160,"y":690,"on":true},{"x":85,"y":569,"on":true}] + ] + }, + "uni2075": { + "advanceWidth": 344, + "contours": [ + [{"x":287,"y":844,"on":true},{"x":287,"y":778,"on":true},{"x":122,"y":778,"on":true},{"x":113,"y":682,"on":true},{"x":125,"y":684,"on":false},{"x":151,"y":687,"on":false},{"x":165,"y":687,"on":true},{"x":229,"y":687,"on":false},{"x":311,"y":617,"on":false},{"x":311,"y":554,"on":true},{"x":311,"y":484,"on":false},{"x":229,"y":407,"on":false},{"x":151,"y":407,"on":true},{"x":120,"y":407,"on":false},{"x":58,"y":419,"on":false},{"x":36,"y":430,"on":true},{"x":36,"y":504,"on":true},{"x":59,"y":489,"on":false},{"x":120,"y":472,"on":false},{"x":145,"y":472,"on":true},{"x":186,"y":472,"on":false},{"x":232,"y":510,"on":false},{"x":232,"y":551,"on":true},{"x":232,"y":587,"on":false},{"x":187,"y":625,"on":false},{"x":146,"y":625,"on":true},{"x":128,"y":625,"on":false},{"x":96,"y":618,"on":false},{"x":83,"y":614,"on":true},{"x":44,"y":637,"on":true},{"x":61,"y":844,"on":true}] + ] + }, + "uni2076": { + "advanceWidth": 344, + "contours": [ + [{"x":229,"y":853,"on":true},{"x":262,"y":853,"on":false},{"x":288,"y":846,"on":true},{"x":288,"y":778,"on":true},{"x":264,"y":786,"on":false},{"x":228,"y":786,"on":true},{"x":158,"y":786,"on":false},{"x":102,"y":706,"on":false},{"x":99,"y":642,"on":true},{"x":103,"y":642,"on":true},{"x":116,"y":663,"on":false},{"x":164,"y":691,"on":false},{"x":200,"y":691,"on":true},{"x":257,"y":691,"on":false},{"x":321,"y":618,"on":false},{"x":321,"y":557,"on":true},{"x":321,"y":490,"on":false},{"x":244,"y":407,"on":false},{"x":176,"y":407,"on":true},{"x":106,"y":407,"on":false},{"x":22,"y":507,"on":false},{"x":22,"y":598,"on":true},{"x":22,"y":668,"on":false},{"x":58,"y":783,"on":false},{"x":148,"y":853,"on":false}], + [{"x":176,"y":632,"on":true},{"x":141,"y":632,"on":false},{"x":100,"y":590,"on":false},{"x":100,"y":565,"on":true},{"x":100,"y":530,"on":false},{"x":137,"y":472,"on":false},{"x":173,"y":472,"on":true},{"x":205,"y":472,"on":false},{"x":244,"y":515,"on":false},{"x":244,"y":556,"on":true},{"x":244,"y":592,"on":false},{"x":209,"y":632,"on":false}] + ] + }, + "uni2077": { + "advanceWidth": 344, + "contours": [ + [{"x":73,"y":416,"on":true},{"x":232,"y":775,"on":true},{"x":28,"y":775,"on":true},{"x":28,"y":844,"on":true},{"x":314,"y":844,"on":true},{"x":314,"y":788,"on":true},{"x":159,"y":416,"on":true}] + ] + }, + "uni2078": { + "advanceWidth": 344, + "contours": [ + [{"x":173,"y":852,"on":true},{"x":230,"y":852,"on":false},{"x":306,"y":796,"on":false},{"x":306,"y":743,"on":true},{"x":306,"y":708,"on":false},{"x":268,"y":660,"on":false},{"x":236,"y":643,"on":true},{"x":275,"y":625,"on":false},{"x":320,"y":572,"on":false},{"x":320,"y":532,"on":true},{"x":320,"y":476,"on":false},{"x":239,"y":407,"on":false},{"x":173,"y":407,"on":true},{"x":102,"y":407,"on":false},{"x":24,"y":472,"on":false},{"x":24,"y":529,"on":true},{"x":24,"y":568,"on":false},{"x":66,"y":620,"on":false},{"x":101,"y":639,"on":true},{"x":70,"y":659,"on":false},{"x":38,"y":707,"on":false},{"x":38,"y":742,"on":true},{"x":38,"y":794,"on":false},{"x":117,"y":852,"on":false}], + [{"x":172,"y":791,"on":true},{"x":146,"y":791,"on":false},{"x":115,"y":762,"on":false},{"x":115,"y":740,"on":true},{"x":115,"y":716,"on":false},{"x":148,"y":684,"on":false},{"x":174,"y":672,"on":true},{"x":200,"y":683,"on":false},{"x":231,"y":715,"on":false},{"x":231,"y":740,"on":true},{"x":231,"y":763,"on":false},{"x":200,"y":791,"on":false}], + [{"x":163,"y":607,"on":true},{"x":102,"y":580,"on":false},{"x":102,"y":530,"on":true},{"x":102,"y":503,"on":false},{"x":137,"y":468,"on":false},{"x":171,"y":468,"on":true},{"x":206,"y":468,"on":false},{"x":242,"y":502,"on":false},{"x":242,"y":529,"on":true},{"x":242,"y":555,"on":false},{"x":207,"y":590,"on":false},{"x":173,"y":603,"on":true}] + ] + }, + "uni2079": { + "advanceWidth": 344, + "contours": [ + [{"x":166,"y":853,"on":true},{"x":236,"y":853,"on":false},{"x":319,"y":753,"on":false},{"x":319,"y":663,"on":true},{"x":319,"y":611,"on":false},{"x":301,"y":519,"on":false},{"x":256,"y":448,"on":false},{"x":176,"y":407,"on":false},{"x":114,"y":407,"on":true},{"x":80,"y":407,"on":false},{"x":54,"y":414,"on":true},{"x":54,"y":482,"on":true},{"x":64,"y":478,"on":false},{"x":95,"y":473,"on":false},{"x":115,"y":473,"on":true},{"x":185,"y":473,"on":false},{"x":240,"y":555,"on":false},{"x":244,"y":619,"on":true},{"x":239,"y":619,"on":true},{"x":226,"y":599,"on":false},{"x":179,"y":569,"on":false},{"x":144,"y":569,"on":true},{"x":86,"y":569,"on":false},{"x":20,"y":642,"on":false},{"x":20,"y":705,"on":true},{"x":20,"y":771,"on":false},{"x":99,"y":853,"on":false}], + [{"x":167,"y":788,"on":true},{"x":137,"y":788,"on":false},{"x":98,"y":746,"on":false},{"x":98,"y":706,"on":true},{"x":98,"y":670,"on":false},{"x":131,"y":628,"on":false},{"x":165,"y":628,"on":true},{"x":200,"y":628,"on":false},{"x":242,"y":670,"on":false},{"x":242,"y":695,"on":true},{"x":242,"y":732,"on":false},{"x":204,"y":788,"on":false}] + ] + }, + "uni207A": { + "advanceWidth": 346, + "contours": [ + [{"x":143,"y":313,"on":true},{"x":143,"y":424,"on":true},{"x":35,"y":424,"on":true},{"x":35,"y":482,"on":true},{"x":143,"y":482,"on":true},{"x":143,"y":593,"on":true},{"x":202,"y":593,"on":true},{"x":202,"y":482,"on":true},{"x":310,"y":482,"on":true},{"x":310,"y":424,"on":true},{"x":202,"y":424,"on":true},{"x":202,"y":313,"on":true}] + ] + }, + "uni207B": { + "advanceWidth": 346, + "contours": [ + [{"x":35,"y":424,"on":true},{"x":35,"y":482,"on":true},{"x":310,"y":482,"on":true},{"x":310,"y":424,"on":true}] + ] + }, + "uni207C": { + "advanceWidth": 346, + "contours": [ + [{"x":35,"y":482,"on":true},{"x":35,"y":539,"on":true},{"x":311,"y":539,"on":true},{"x":311,"y":482,"on":true}], + [{"x":35,"y":367,"on":true},{"x":35,"y":424,"on":true},{"x":311,"y":424,"on":true},{"x":311,"y":367,"on":true}] + ] + }, + "uni207D": { + "advanceWidth": 231, + "contours": [ + [{"x":38,"y":499,"on":true},{"x":38,"y":664,"on":false},{"x":130,"y":770,"on":true},{"x":202,"y":770,"on":true},{"x":156,"y":715,"on":false},{"x":109,"y":574,"on":false},{"x":109,"y":499,"on":true},{"x":109,"y":426,"on":false},{"x":155,"y":284,"on":false},{"x":202,"y":228,"on":true},{"x":130,"y":228,"on":true},{"x":85,"y":278,"on":false},{"x":38,"y":416,"on":false}] + ] + }, + "uni207E": { + "advanceWidth": 231, + "contours": [ + [{"x":193,"y":501,"on":true},{"x":193,"y":418,"on":false},{"x":146,"y":281,"on":false},{"x":101,"y":228,"on":true},{"x":29,"y":228,"on":true},{"x":76,"y":284,"on":false},{"x":122,"y":426,"on":false},{"x":122,"y":500,"on":true},{"x":122,"y":575,"on":false},{"x":76,"y":715,"on":false},{"x":29,"y":770,"on":true},{"x":101,"y":770,"on":true},{"x":147,"y":718,"on":false},{"x":193,"y":578,"on":false}] + ] + }, + "uni207F": { + "advanceWidth": 371, + "references": [ + {"glyph":"n","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2080": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2070","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2081": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni00B9","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2082": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni00B2","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2083": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni00B3","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2084": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2074","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2085": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2075","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2086": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2076","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2087": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2077","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2088": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2078","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2089": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2079","x":0,"y":-546,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni208A": { + "advanceWidth": 346, + "references": [ + {"glyph":"uni207A","x":0,"y":-428,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni208B": { + "advanceWidth": 346, + "references": [ + {"glyph":"uni207B","x":0,"y":-428,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni208C": { + "advanceWidth": 346, + "references": [ + {"glyph":"uni207C","x":0,"y":-428,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni208D": { + "advanceWidth": 231, + "references": [ + {"glyph":"uni207D","x":0,"y":-429,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni208E": { + "advanceWidth": 231, + "references": [ + {"glyph":"uni207E","x":0,"y":-429,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2090": { + "advanceWidth": 339, + "references": [ + {"glyph":"a","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2091": { + "advanceWidth": 338, + "references": [ + {"glyph":"e","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2092": { + "advanceWidth": 360, + "references": [ + {"glyph":"o","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2093": { + "advanceWidth": 317, + "references": [ + {"glyph":"x","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2094": { + "advanceWidth": 338, + "references": [ + {"glyph":"uni0259","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2095": { + "advanceWidth": 371, + "references": [ + {"glyph":"h","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2096": { + "advanceWidth": 330, + "references": [ + {"glyph":"k","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2097": { + "advanceWidth": 164, + "references": [ + {"glyph":"l","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2098": { + "advanceWidth": 558, + "references": [ + {"glyph":"m","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2099": { + "advanceWidth": 371, + "references": [ + {"glyph":"n","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni209A": { + "advanceWidth": 368, + "references": [ + {"glyph":"p","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni209B": { + "advanceWidth": 282, + "references": [ + {"glyph":"s","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni209C": { + "advanceWidth": 223, + "references": [ + {"glyph":"t","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni20A0": { + "advanceWidth": 520, + "contours": [ + [{"x":229,"y":724,"on":true},{"x":269,"y":724,"on":false},{"x":334,"y":708,"on":false},{"x":361,"y":693,"on":true},{"x":328,"y":615,"on":true},{"x":306,"y":627,"on":false},{"x":261,"y":642,"on":false},{"x":236,"y":642,"on":true},{"x":184,"y":642,"on":false},{"x":128,"y":551,"on":false},{"x":128,"y":471,"on":true},{"x":128,"y":385,"on":false},{"x":184,"y":302,"on":false},{"x":242,"y":300,"on":true},{"x":242,"y":489,"on":true},{"x":489,"y":489,"on":true},{"x":489,"y":409,"on":true},{"x":335,"y":409,"on":true},{"x":335,"y":293,"on":true},{"x":477,"y":293,"on":true},{"x":477,"y":214,"on":true},{"x":335,"y":214,"on":true},{"x":335,"y":80,"on":true},{"x":489,"y":80,"on":true},{"x":489,"y":0,"on":true},{"x":242,"y":0,"on":true},{"x":242,"y":221,"on":true},{"x":30,"y":221,"on":false},{"x":30,"y":471,"on":true},{"x":30,"y":588,"on":false},{"x":134,"y":724,"on":false}] + ] + }, + "colonmonetary": { + "advanceWidth": 530, + "contours": [ + [{"x":269,"y":-58,"on":true},{"x":285,"y":32,"on":true},{"x":247,"y":37,"on":false},{"x":219,"y":48,"on":true},{"x":200,"y":-58,"on":true},{"x":143,"y":-58,"on":true},{"x":166,"y":72,"on":true},{"x":104,"y":110,"on":false},{"x":43,"y":254,"on":false},{"x":43,"y":355,"on":true},{"x":43,"y":439,"on":false},{"x":94,"y":574,"on":false},{"x":196,"y":662,"on":false},{"x":270,"y":675,"on":true},{"x":285,"y":759,"on":true},{"x":342,"y":759,"on":true},{"x":328,"y":680,"on":true},{"x":346,"y":680,"on":false},{"x":381,"y":677,"on":false},{"x":397,"y":675,"on":true},{"x":412,"y":759,"on":true},{"x":469,"y":759,"on":true},{"x":452,"y":663,"on":true},{"x":480,"y":653,"on":false},{"x":507,"y":640,"on":true},{"x":471,"y":555,"on":true},{"x":463,"y":560,"on":false},{"x":445,"y":568,"on":false},{"x":436,"y":571,"on":true},{"x":357,"y":119,"on":true},{"x":391,"y":121,"on":false},{"x":453,"y":137,"on":false},{"x":483,"y":148,"on":true},{"x":483,"y":60,"on":true},{"x":452,"y":46,"on":false},{"x":385,"y":32,"on":false},{"x":342,"y":31,"on":true},{"x":326,"y":-58,"on":true}], + [{"x":300,"y":121,"on":true},{"x":382,"y":588,"on":true},{"x":371,"y":590,"on":false},{"x":348,"y":593,"on":false},{"x":338,"y":593,"on":true},{"x":331,"y":593,"on":false},{"x":319,"y":592,"on":false},{"x":313,"y":591,"on":true},{"x":235,"y":144,"on":true},{"x":262,"y":127,"on":false}], + [{"x":186,"y":190,"on":true},{"x":253,"y":575,"on":true},{"x":199,"y":550,"on":false},{"x":145,"y":434,"on":false},{"x":145,"y":354,"on":true},{"x":145,"y":249,"on":false}] + ] + }, + "uni20A2": { + "advanceWidth": 520, + "contours": [ + [{"x":326,"y":724,"on":true},{"x":373,"y":724,"on":false},{"x":460,"y":702,"on":false},{"x":497,"y":682,"on":true},{"x":460,"y":597,"on":true},{"x":432,"y":613,"on":false},{"x":367,"y":636,"on":false},{"x":329,"y":636,"on":true},{"x":272,"y":636,"on":false},{"x":193,"y":566,"on":false},{"x":152,"y":440,"on":false},{"x":152,"y":356,"on":true},{"x":152,"y":252,"on":false},{"x":209,"y":115,"on":false},{"x":261,"y":91,"on":true},{"x":261,"y":437,"on":true},{"x":333,"y":437,"on":true},{"x":343,"y":365,"on":true},{"x":347,"y":365,"on":true},{"x":362,"y":403,"on":false},{"x":413,"y":446,"on":false},{"x":447,"y":446,"on":true},{"x":468,"y":446,"on":false},{"x":491,"y":440,"on":true},{"x":479,"y":347,"on":true},{"x":469,"y":350,"on":false},{"x":449,"y":353,"on":false},{"x":442,"y":353,"on":true},{"x":404,"y":353,"on":false},{"x":354,"y":279,"on":false},{"x":354,"y":215,"on":true},{"x":354,"y":81,"on":true},{"x":390,"y":84,"on":false},{"x":447,"y":98,"on":false},{"x":474,"y":109,"on":true},{"x":474,"y":21,"on":true},{"x":440,"y":5,"on":false},{"x":366,"y":-10,"on":false},{"x":318,"y":-10,"on":true},{"x":184,"y":-10,"on":false},{"x":49,"y":187,"on":false},{"x":49,"y":357,"on":true},{"x":49,"y":463,"on":false},{"x":112,"y":629,"on":false},{"x":235,"y":724,"on":false}] + ] + }, + "franc": { + "advanceWidth": 524, + "contours": [ + [{"x":114,"y":0,"on":true},{"x":114,"y":129,"on":true},{"x":37,"y":129,"on":true},{"x":37,"y":202,"on":true},{"x":114,"y":202,"on":true},{"x":114,"y":714,"on":true},{"x":473,"y":714,"on":true},{"x":473,"y":624,"on":true},{"x":217,"y":624,"on":true},{"x":217,"y":398,"on":true},{"x":457,"y":398,"on":true},{"x":457,"y":308,"on":true},{"x":217,"y":308,"on":true},{"x":217,"y":202,"on":true},{"x":357,"y":202,"on":true},{"x":357,"y":129,"on":true},{"x":217,"y":129,"on":true},{"x":217,"y":0,"on":true}] + ] + }, + "lira": { + "advanceWidth": 524, + "contours": [ + [{"x":313,"y":724,"on":true},{"x":361,"y":724,"on":false},{"x":441,"y":702,"on":false},{"x":475,"y":683,"on":true},{"x":440,"y":603,"on":true},{"x":411,"y":618,"on":false},{"x":349,"y":636,"on":false},{"x":317,"y":636,"on":true},{"x":274,"y":636,"on":false},{"x":227,"y":584,"on":false},{"x":227,"y":526,"on":true},{"x":227,"y":445,"on":true},{"x":394,"y":445,"on":true},{"x":394,"y":375,"on":true},{"x":227,"y":375,"on":true},{"x":227,"y":301,"on":true},{"x":394,"y":301,"on":true},{"x":394,"y":231,"on":true},{"x":226,"y":231,"on":true},{"x":225,"y":175,"on":false},{"x":192,"y":110,"on":false},{"x":159,"y":92,"on":true},{"x":490,"y":92,"on":true},{"x":490,"y":0,"on":true},{"x":38,"y":0,"on":true},{"x":38,"y":86,"on":true},{"x":82,"y":101,"on":false},{"x":124,"y":170,"on":false},{"x":124,"y":231,"on":true},{"x":38,"y":231,"on":true},{"x":38,"y":301,"on":true},{"x":124,"y":301,"on":true},{"x":124,"y":375,"on":true},{"x":38,"y":375,"on":true},{"x":38,"y":445,"on":true},{"x":124,"y":445,"on":true},{"x":124,"y":516,"on":true},{"x":124,"y":618,"on":false},{"x":218,"y":724,"on":false}] + ] + }, + "uni20A5": { + "advanceWidth": 858, + "contours": [ + [{"x":622,"y":549,"on":true},{"x":704,"y":549,"on":false},{"x":786,"y":455,"on":false},{"x":786,"y":354,"on":true},{"x":786,"y":0,"on":true},{"x":684,"y":0,"on":true},{"x":684,"y":338,"on":true},{"x":684,"y":463,"on":false},{"x":597,"y":463,"on":true},{"x":540,"y":463,"on":false},{"x":512,"y":425,"on":true},{"x":488,"y":366,"on":true},{"x":481,"y":334,"on":false},{"x":481,"y":290,"on":true},{"x":481,"y":0,"on":true},{"x":380,"y":0,"on":true},{"x":380,"y":104,"on":true},{"x":292,"y":-110,"on":true},{"x":217,"y":-110,"on":true},{"x":380,"y":285,"on":true},{"x":380,"y":339,"on":true},{"x":380,"y":463,"on":false},{"x":292,"y":463,"on":true},{"x":226,"y":463,"on":false},{"x":178,"y":363,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":197,"y":509,"on":false},{"x":273,"y":549,"on":false},{"x":319,"y":549,"on":true},{"x":421,"y":549,"on":false},{"x":459,"y":476,"on":true},{"x":537,"y":666,"on":true},{"x":611,"y":666,"on":true},{"x":559,"y":539,"on":true},{"x":588,"y":549,"on":false}] + ] + }, + "uni20A6": { + "advanceWidth": 524, + "contours": [ + [{"x":73,"y":0,"on":true},{"x":73,"y":260,"on":true},{"x":7,"y":260,"on":true},{"x":7,"y":323,"on":true},{"x":73,"y":323,"on":true},{"x":73,"y":402,"on":true},{"x":7,"y":402,"on":true},{"x":7,"y":465,"on":true},{"x":73,"y":465,"on":true},{"x":73,"y":714,"on":true},{"x":188,"y":714,"on":true},{"x":268,"y":465,"on":true},{"x":367,"y":465,"on":true},{"x":367,"y":714,"on":true},{"x":451,"y":714,"on":true},{"x":451,"y":465,"on":true},{"x":516,"y":465,"on":true},{"x":516,"y":402,"on":true},{"x":451,"y":402,"on":true},{"x":451,"y":323,"on":true},{"x":516,"y":323,"on":true},{"x":516,"y":260,"on":true},{"x":451,"y":260,"on":true},{"x":451,"y":0,"on":true},{"x":335,"y":0,"on":true},{"x":253,"y":260,"on":true},{"x":156,"y":260,"on":true},{"x":156,"y":0,"on":true}], + [{"x":154,"y":465,"on":true},{"x":189,"y":465,"on":true},{"x":155,"y":579,"on":true},{"x":151,"y":579,"on":true}], + [{"x":156,"y":323,"on":true},{"x":233,"y":323,"on":true},{"x":209,"y":402,"on":true},{"x":155,"y":402,"on":true}], + [{"x":313,"y":323,"on":true},{"x":369,"y":323,"on":true},{"x":367,"y":402,"on":true},{"x":288,"y":402,"on":true}], + [{"x":367,"y":144,"on":true},{"x":371,"y":144,"on":true},{"x":369,"y":260,"on":true},{"x":332,"y":260,"on":true}] + ] + }, + "peseta": { + "advanceWidth": 757, + "contours": [ + [{"x":217,"y":714,"on":true},{"x":340,"y":714,"on":false},{"x":454,"y":604,"on":false},{"x":454,"y":500,"on":true},{"x":454,"y":434,"on":false},{"x":405,"y":330,"on":false},{"x":296,"y":271,"on":false},{"x":206,"y":271,"on":true},{"x":177,"y":271,"on":true},{"x":177,"y":0,"on":true},{"x":77,"y":0,"on":true},{"x":77,"y":714,"on":true}], + [{"x":214,"y":625,"on":true},{"x":177,"y":625,"on":true},{"x":177,"y":360,"on":true},{"x":203,"y":360,"on":true},{"x":279,"y":360,"on":false},{"x":352,"y":424,"on":false},{"x":352,"y":497,"on":true},{"x":352,"y":625,"on":false}], + [{"x":613,"y":525,"on":true},{"x":613,"y":413,"on":true},{"x":721,"y":413,"on":true},{"x":721,"y":336,"on":true},{"x":613,"y":336,"on":true},{"x":613,"y":146,"on":true},{"x":613,"y":111,"on":false},{"x":638,"y":72,"on":false},{"x":666,"y":72,"on":true},{"x":682,"y":72,"on":false},{"x":718,"y":80,"on":false},{"x":729,"y":84,"on":true},{"x":729,"y":9,"on":true},{"x":715,"y":2,"on":false},{"x":671,"y":-10,"on":false},{"x":642,"y":-10,"on":true},{"x":583,"y":-10,"on":false},{"x":518,"y":60,"on":false},{"x":518,"y":137,"on":true},{"x":518,"y":336,"on":true},{"x":452,"y":336,"on":true},{"x":452,"y":379,"on":true},{"x":523,"y":417,"on":true},{"x":555,"y":525,"on":true}] + ] + }, + "uni20A8": { + "advanceWidth": 795, + "contours": [ + [{"x":224,"y":714,"on":true},{"x":330,"y":714,"on":false},{"x":429,"y":613,"on":false},{"x":429,"y":510,"on":true},{"x":429,"y":429,"on":false},{"x":371,"y":340,"on":false},{"x":330,"y":319,"on":true},{"x":459,"y":0,"on":true},{"x":349,"y":0,"on":true},{"x":239,"y":292,"on":true},{"x":176,"y":292,"on":true},{"x":176,"y":0,"on":true},{"x":77,"y":0,"on":true},{"x":77,"y":714,"on":true}], + [{"x":222,"y":628,"on":true},{"x":176,"y":628,"on":true},{"x":176,"y":378,"on":true},{"x":225,"y":378,"on":true},{"x":280,"y":378,"on":false},{"x":327,"y":442,"on":false},{"x":327,"y":506,"on":true},{"x":327,"y":570,"on":false},{"x":275,"y":628,"on":false}], + [{"x":626,"y":549,"on":true},{"x":666,"y":549,"on":false},{"x":728,"y":527,"on":false},{"x":757,"y":509,"on":true},{"x":726,"y":432,"on":true},{"x":700,"y":448,"on":false},{"x":652,"y":467,"on":false},{"x":627,"y":467,"on":true},{"x":598,"y":467,"on":false},{"x":569,"y":435,"on":false},{"x":569,"y":409,"on":true},{"x":569,"y":391,"on":false},{"x":582,"y":364,"on":false},{"x":616,"y":335,"on":false},{"x":650,"y":315,"on":true},{"x":682,"y":296,"on":false},{"x":732,"y":253,"on":false},{"x":760,"y":194,"on":false},{"x":760,"y":151,"on":true},{"x":760,"y":78,"on":false},{"x":679,"y":-10,"on":false},{"x":595,"y":-10,"on":true},{"x":519,"y":-10,"on":false},{"x":470,"y":22,"on":true},{"x":470,"y":116,"on":true},{"x":493,"y":100,"on":false},{"x":562,"y":73,"on":false},{"x":592,"y":73,"on":true},{"x":630,"y":73,"on":false},{"x":664,"y":112,"on":false},{"x":664,"y":143,"on":true},{"x":664,"y":162,"on":false},{"x":651,"y":190,"on":false},{"x":616,"y":219,"on":false},{"x":582,"y":239,"on":true},{"x":532,"y":269,"on":false},{"x":473,"y":338,"on":false},{"x":473,"y":403,"on":true},{"x":473,"y":471,"on":false},{"x":557,"y":549,"on":false}] + ] + }, + "uni20A9": { + "advanceWidth": 649, + "contours": [ + [{"x":127,"y":0,"on":true},{"x":86,"y":259,"on":true},{"x":7,"y":259,"on":true},{"x":7,"y":322,"on":true},{"x":76,"y":322,"on":true},{"x":63,"y":402,"on":true},{"x":7,"y":402,"on":true},{"x":7,"y":465,"on":true},{"x":53,"y":465,"on":true},{"x":13,"y":714,"on":true},{"x":104,"y":714,"on":true},{"x":138,"y":465,"on":true},{"x":233,"y":465,"on":true},{"x":276,"y":714,"on":true},{"x":372,"y":714,"on":true},{"x":414,"y":465,"on":true},{"x":512,"y":465,"on":true},{"x":546,"y":714,"on":true},{"x":635,"y":714,"on":true},{"x":596,"y":465,"on":true},{"x":642,"y":465,"on":true},{"x":642,"y":402,"on":true},{"x":586,"y":402,"on":true},{"x":574,"y":322,"on":true},{"x":642,"y":322,"on":true},{"x":642,"y":259,"on":true},{"x":564,"y":259,"on":true},{"x":523,"y":0,"on":true},{"x":419,"y":0,"on":true},{"x":375,"y":259,"on":true},{"x":273,"y":259,"on":true},{"x":231,"y":0,"on":true}], + [{"x":306,"y":465,"on":true},{"x":342,"y":465,"on":true},{"x":323,"y":596,"on":true}], + [{"x":157,"y":322,"on":true},{"x":211,"y":322,"on":true},{"x":223,"y":402,"on":true},{"x":147,"y":402,"on":true}], + [{"x":284,"y":322,"on":true},{"x":364,"y":322,"on":true},{"x":352,"y":402,"on":true},{"x":296,"y":402,"on":true}], + [{"x":438,"y":322,"on":true},{"x":494,"y":322,"on":true},{"x":504,"y":402,"on":true},{"x":426,"y":402,"on":true}], + [{"x":181,"y":118,"on":true},{"x":201,"y":259,"on":true},{"x":164,"y":259,"on":true}], + [{"x":468,"y":116,"on":true},{"x":486,"y":259,"on":true},{"x":449,"y":259,"on":true}] + ] + }, + "uni20AA": { + "advanceWidth": 799, + "contours": [ + [{"x":80,"y":0,"on":true},{"x":80,"y":714,"on":true},{"x":313,"y":714,"on":true},{"x":428,"y":714,"on":false},{"x":535,"y":588,"on":false},{"x":535,"y":486,"on":true},{"x":535,"y":185,"on":true},{"x":444,"y":185,"on":true},{"x":444,"y":481,"on":true},{"x":444,"y":559,"on":false},{"x":370,"y":634,"on":false},{"x":303,"y":634,"on":true},{"x":171,"y":634,"on":true},{"x":171,"y":0,"on":true}], + [{"x":261,"y":529,"on":true},{"x":353,"y":529,"on":true},{"x":353,"y":80,"on":true},{"x":482,"y":80,"on":true},{"x":630,"y":80,"on":false},{"x":630,"y":233,"on":true},{"x":630,"y":714,"on":true},{"x":722,"y":714,"on":true},{"x":722,"y":230,"on":true},{"x":722,"y":164,"on":false},{"x":674,"y":60,"on":false},{"x":572,"y":0,"on":false},{"x":489,"y":0,"on":true},{"x":261,"y":0,"on":true}] + ] + }, + "dong": { + "advanceWidth": 570, + "references": [ + {"glyph":"dcroat","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"underscore","x":106,"y":0,"a":0.8873291015625,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "Euro": { + "advanceWidth": 524, + "contours": [ + [{"x":346,"y":723,"on":true},{"x":434,"y":723,"on":false},{"x":508,"y":680,"on":true},{"x":470,"y":595,"on":true},{"x":442,"y":612,"on":false},{"x":380,"y":633,"on":false},{"x":348,"y":633,"on":true},{"x":285,"y":633,"on":false},{"x":210,"y":542,"on":false},{"x":196,"y":456,"on":true},{"x":396,"y":456,"on":true},{"x":396,"y":387,"on":true},{"x":191,"y":387,"on":true},{"x":190,"y":379,"on":false},{"x":190,"y":361,"on":false},{"x":190,"y":352,"on":true},{"x":190,"y":342,"on":false},{"x":190,"y":323,"on":false},{"x":191,"y":313,"on":true},{"x":370,"y":313,"on":true},{"x":370,"y":244,"on":true},{"x":197,"y":244,"on":true},{"x":223,"y":82,"on":false},{"x":357,"y":82,"on":true},{"x":392,"y":82,"on":false},{"x":458,"y":99,"on":false},{"x":489,"y":113,"on":true},{"x":489,"y":20,"on":true},{"x":460,"y":6,"on":false},{"x":391,"y":-10,"on":false},{"x":349,"y":-10,"on":true},{"x":240,"y":-10,"on":false},{"x":113,"y":126,"on":false},{"x":95,"y":244,"on":true},{"x":22,"y":244,"on":true},{"x":22,"y":313,"on":true},{"x":88,"y":313,"on":true},{"x":87,"y":323,"on":false},{"x":86,"y":341,"on":false},{"x":86,"y":352,"on":true},{"x":86,"y":361,"on":false},{"x":87,"y":380,"on":false},{"x":87,"y":387,"on":true},{"x":22,"y":387,"on":true},{"x":22,"y":456,"on":true},{"x":94,"y":456,"on":true},{"x":104,"y":534,"on":false},{"x":168,"y":655,"on":false},{"x":274,"y":723,"on":false}] + ] + }, + "uni20AD": { + "advanceWidth": 524, + "contours": [ + [{"x":83,"y":0,"on":true},{"x":83,"y":327,"on":true},{"x":9,"y":327,"on":true},{"x":9,"y":401,"on":true},{"x":83,"y":401,"on":true},{"x":83,"y":714,"on":true},{"x":184,"y":714,"on":true},{"x":184,"y":401,"on":true},{"x":204,"y":401,"on":true},{"x":405,"y":714,"on":true},{"x":516,"y":714,"on":true},{"x":306,"y":401,"on":true},{"x":475,"y":401,"on":true},{"x":475,"y":327,"on":true},{"x":331,"y":327,"on":true},{"x":523,"y":0,"on":true},{"x":409,"y":0,"on":true},{"x":229,"y":326,"on":true},{"x":184,"y":273,"on":true},{"x":184,"y":0,"on":true}] + ] + }, + "uni20AE": { + "advanceWidth": 524, + "contours": [ + [{"x":210,"y":0,"on":true},{"x":210,"y":156,"on":true},{"x":108,"y":85,"on":true},{"x":73,"y":138,"on":true},{"x":210,"y":232,"on":true},{"x":210,"y":331,"on":true},{"x":107,"y":261,"on":true},{"x":72,"y":313,"on":true},{"x":210,"y":407,"on":true},{"x":210,"y":623,"on":true},{"x":25,"y":623,"on":true},{"x":25,"y":714,"on":true},{"x":499,"y":714,"on":true},{"x":499,"y":623,"on":true},{"x":314,"y":623,"on":true},{"x":314,"y":472,"on":true},{"x":419,"y":544,"on":true},{"x":454,"y":492,"on":true},{"x":314,"y":396,"on":true},{"x":314,"y":297,"on":true},{"x":419,"y":369,"on":true},{"x":454,"y":317,"on":true},{"x":314,"y":221,"on":true},{"x":314,"y":0,"on":true}] + ] + }, + "uni20AF": { + "advanceWidth": 889, + "contours": [ + [{"x":36,"y":0,"on":true},{"x":144,"y":570,"on":true},{"x":244,"y":570,"on":true},{"x":153,"y":87,"on":true},{"x":161,"y":87,"on":true},{"x":244,"y":87,"on":false},{"x":357,"y":174,"on":false},{"x":415,"y":322,"on":false},{"x":415,"y":415,"on":true},{"x":415,"y":517,"on":false},{"x":306,"y":637,"on":false},{"x":212,"y":637,"on":true},{"x":172,"y":637,"on":false},{"x":88,"y":618,"on":false},{"x":56,"y":602,"on":true},{"x":23,"y":683,"on":true},{"x":56,"y":701,"on":false},{"x":162,"y":724,"on":false},{"x":215,"y":724,"on":true},{"x":310,"y":724,"on":false},{"x":447,"y":648,"on":false},{"x":519,"y":509,"on":false},{"x":519,"y":413,"on":true},{"x":519,"y":287,"on":false},{"x":427,"y":102,"on":false},{"x":266,"y":0,"on":false},{"x":161,"y":0,"on":true}], + [{"x":458,"y":-240,"on":true},{"x":531,"y":150,"on":true},{"x":547,"y":237,"on":false},{"x":632,"y":334,"on":false},{"x":712,"y":334,"on":true},{"x":789,"y":334,"on":false},{"x":862,"y":249,"on":false},{"x":862,"y":185,"on":true},{"x":862,"y":139,"on":false},{"x":826,"y":50,"on":false},{"x":748,"y":-9,"on":false},{"x":686,"y":-9,"on":true},{"x":658,"y":-9,"on":false},{"x":612,"y":10,"on":false},{"x":601,"y":23,"on":true},{"x":597,"y":23,"on":true},{"x":595,"y":4,"on":false},{"x":586,"y":-53,"on":false},{"x":578,"y":-98,"on":true},{"x":550,"y":-240,"on":true}], + [{"x":682,"y":65,"on":true},{"x":719,"y":65,"on":false},{"x":772,"y":130,"on":false},{"x":772,"y":184,"on":true},{"x":772,"y":219,"on":false},{"x":740,"y":261,"on":false},{"x":712,"y":261,"on":true},{"x":678,"y":261,"on":false},{"x":635,"y":210,"on":false},{"x":625,"y":154,"on":true},{"x":616,"y":103,"on":true},{"x":626,"y":81,"on":false},{"x":661,"y":65,"on":false}] + ] + }, + "uni20B0": { + "advanceWidth": 535, + "contours": [ + [{"x":333,"y":-240,"on":true},{"x":301,"y":-240,"on":false},{"x":266,"y":-229,"on":true},{"x":266,"y":-144,"on":true},{"x":295,"y":-158,"on":false},{"x":325,"y":-158,"on":true},{"x":350,"y":-158,"on":false},{"x":385,"y":-115,"on":false},{"x":385,"y":-74,"on":true},{"x":385,"y":-37,"on":false},{"x":356,"y":78,"on":false},{"x":318,"y":178,"on":true},{"x":219,"y":-15,"on":true},{"x":142,"y":121,"on":true},{"x":91,"y":0,"on":true},{"x":7,"y":0,"on":true},{"x":142,"y":275,"on":true},{"x":215,"y":125,"on":true},{"x":281,"y":260,"on":true},{"x":201,"y":435,"on":false},{"x":201,"y":550,"on":true},{"x":201,"y":636,"on":false},{"x":278,"y":725,"on":false},{"x":341,"y":725,"on":true},{"x":406,"y":725,"on":false},{"x":478,"y":641,"on":false},{"x":478,"y":566,"on":true},{"x":478,"y":496,"on":false},{"x":424,"y":348,"on":false},{"x":381,"y":268,"on":true},{"x":416,"y":184,"on":false},{"x":460,"y":61,"on":false},{"x":482,"y":-34,"on":false},{"x":482,"y":-75,"on":true},{"x":482,"y":-154,"on":false},{"x":403,"y":-240,"on":false}], + [{"x":338,"y":356,"on":true},{"x":366,"y":419,"on":false},{"x":388,"y":526,"on":false},{"x":388,"y":561,"on":true},{"x":388,"y":602,"on":false},{"x":363,"y":642,"on":false},{"x":342,"y":642,"on":true},{"x":321,"y":642,"on":false},{"x":294,"y":602,"on":false},{"x":294,"y":553,"on":true},{"x":294,"y":515,"on":false},{"x":319,"y":404,"on":false}] + ] + }, + "uni20B1": { + "advanceWidth": 524, + "contours": [ + [{"x":235,"y":714,"on":true},{"x":329,"y":714,"on":false},{"x":436,"y":638,"on":false},{"x":454,"y":565,"on":true},{"x":516,"y":565,"on":true},{"x":516,"y":507,"on":true},{"x":463,"y":507,"on":true},{"x":464,"y":500,"on":false},{"x":464,"y":483,"on":false},{"x":464,"y":475,"on":true},{"x":464,"y":450,"on":false},{"x":461,"y":428,"on":true},{"x":516,"y":428,"on":true},{"x":516,"y":370,"on":true},{"x":449,"y":370,"on":true},{"x":428,"y":302,"on":false},{"x":317,"y":221,"on":false},{"x":219,"y":221,"on":true},{"x":180,"y":221,"on":true},{"x":180,"y":0,"on":true},{"x":80,"y":0,"on":true},{"x":80,"y":370,"on":true},{"x":7,"y":370,"on":true},{"x":7,"y":428,"on":true},{"x":80,"y":428,"on":true},{"x":80,"y":507,"on":true},{"x":7,"y":507,"on":true},{"x":7,"y":565,"on":true},{"x":80,"y":565,"on":true},{"x":80,"y":714,"on":true}], + [{"x":232,"y":629,"on":true},{"x":180,"y":629,"on":true},{"x":180,"y":565,"on":true},{"x":346,"y":565,"on":true},{"x":318,"y":629,"on":false}], + [{"x":360,"y":507,"on":true},{"x":180,"y":507,"on":true},{"x":180,"y":428,"on":true},{"x":359,"y":428,"on":true},{"x":362,"y":449,"on":false},{"x":362,"y":472,"on":true},{"x":362,"y":481,"on":false},{"x":361,"y":499,"on":false}], + [{"x":342,"y":370,"on":true},{"x":180,"y":370,"on":true},{"x":180,"y":306,"on":true},{"x":214,"y":306,"on":true},{"x":263,"y":306,"on":false},{"x":326,"y":336,"on":false}] + ] + }, + "uni20B2": { + "advanceWidth": 665, + "contours": [ + [{"x":333,"y":-72,"on":true},{"x":333,"y":-9,"on":true},{"x":196,"y":3,"on":false},{"x":56,"y":199,"on":false},{"x":56,"y":358,"on":true},{"x":56,"y":508,"on":false},{"x":198,"y":702,"on":false},{"x":333,"y":720,"on":true},{"x":333,"y":759,"on":true},{"x":399,"y":759,"on":true},{"x":399,"y":724,"on":true},{"x":452,"y":723,"on":false},{"x":547,"y":700,"on":false},{"x":588,"y":680,"on":true},{"x":551,"y":592,"on":true},{"x":518,"y":609,"on":false},{"x":440,"y":632,"on":false},{"x":399,"y":633,"on":true},{"x":399,"y":384,"on":true},{"x":597,"y":384,"on":true},{"x":597,"y":28,"on":true},{"x":550,"y":11,"on":false},{"x":455,"y":-7,"on":false},{"x":399,"y":-9,"on":true},{"x":399,"y":-72,"on":true}], + [{"x":165,"y":356,"on":true},{"x":165,"y":248,"on":false},{"x":244,"y":101,"on":false},{"x":333,"y":85,"on":true},{"x":333,"y":627,"on":true},{"x":252,"y":608,"on":false},{"x":165,"y":468,"on":false}], + [{"x":497,"y":293,"on":true},{"x":399,"y":293,"on":true},{"x":399,"y":81,"on":true},{"x":428,"y":82,"on":false},{"x":478,"y":90,"on":false},{"x":497,"y":95,"on":true}] + ] + }, + "uni20B3": { + "advanceWidth": 564, + "contours": [ + [{"x":339,"y":714,"on":true},{"x":424,"y":441,"on":true},{"x":557,"y":441,"on":true},{"x":557,"y":378,"on":true},{"x":444,"y":378,"on":true},{"x":470,"y":296,"on":true},{"x":557,"y":296,"on":true},{"x":557,"y":233,"on":true},{"x":490,"y":233,"on":true},{"x":563,"y":0,"on":true},{"x":454,"y":0,"on":true},{"x":385,"y":233,"on":true},{"x":177,"y":233,"on":true},{"x":109,"y":0,"on":true},{"x":1,"y":0,"on":true},{"x":73,"y":233,"on":true},{"x":7,"y":233,"on":true},{"x":7,"y":296,"on":true},{"x":93,"y":296,"on":true},{"x":118,"y":378,"on":true},{"x":7,"y":378,"on":true},{"x":7,"y":441,"on":true},{"x":138,"y":441,"on":true},{"x":222,"y":714,"on":true}], + [{"x":280,"y":609,"on":true},{"x":275,"y":576,"on":false},{"x":253,"y":490,"on":false},{"x":239,"y":441,"on":true},{"x":323,"y":441,"on":true},{"x":309,"y":492,"on":false},{"x":287,"y":578,"on":false}], + [{"x":342,"y":378,"on":true},{"x":220,"y":378,"on":true},{"x":197,"y":296,"on":true},{"x":366,"y":296,"on":true}] + ] + }, + "uni20B4": { + "advanceWidth": 514, + "contours": [ + [{"x":271,"y":-10,"on":true},{"x":164,"y":-10,"on":false},{"x":49,"y":94,"on":false},{"x":49,"y":189,"on":true},{"x":49,"y":207,"on":false},{"x":54,"y":240,"on":false},{"x":59,"y":254,"on":true},{"x":8,"y":254,"on":true},{"x":8,"y":317,"on":true},{"x":95,"y":317,"on":true},{"x":114,"y":338,"on":false},{"x":182,"y":372,"on":false},{"x":245,"y":399,"on":false},{"x":259,"y":408,"on":true},{"x":8,"y":408,"on":true},{"x":8,"y":471,"on":true},{"x":340,"y":471,"on":true},{"x":357,"y":498,"on":false},{"x":357,"y":539,"on":true},{"x":357,"y":581,"on":false},{"x":303,"y":631,"on":false},{"x":248,"y":631,"on":true},{"x":208,"y":631,"on":false},{"x":133,"y":609,"on":false},{"x":98,"y":592,"on":true},{"x":68,"y":682,"on":true},{"x":106,"y":701,"on":false},{"x":204,"y":724,"on":false},{"x":254,"y":724,"on":true},{"x":349,"y":724,"on":false},{"x":462,"y":629,"on":false},{"x":461,"y":542,"on":true},{"x":461,"y":522,"on":false},{"x":456,"y":486,"on":false},{"x":450,"y":471,"on":true},{"x":506,"y":471,"on":true},{"x":506,"y":408,"on":true},{"x":417,"y":408,"on":true},{"x":403,"y":393,"on":false},{"x":356,"y":367,"on":false},{"x":304,"y":343,"on":false},{"x":260,"y":324,"on":false},{"x":249,"y":317,"on":true},{"x":506,"y":317,"on":true},{"x":506,"y":254,"on":true},{"x":169,"y":254,"on":true},{"x":153,"y":229,"on":false},{"x":153,"y":189,"on":true},{"x":153,"y":140,"on":false},{"x":219,"y":82,"on":false},{"x":281,"y":82,"on":true},{"x":329,"y":82,"on":false},{"x":424,"y":107,"on":false},{"x":462,"y":126,"on":true},{"x":462,"y":29,"on":true},{"x":427,"y":12,"on":false},{"x":326,"y":-10,"on":false}] + ] + }, + "uni20B5": { + "advanceWidth": 568, + "contours": [ + [{"x":382,"y":759,"on":true},{"x":382,"y":707,"on":true},{"x":422,"y":704,"on":false},{"x":499,"y":684,"on":false},{"x":533,"y":667,"on":true},{"x":496,"y":581,"on":true},{"x":470,"y":593,"on":false},{"x":414,"y":613,"on":false},{"x":382,"y":616,"on":true},{"x":382,"y":98,"on":true},{"x":415,"y":100,"on":false},{"x":477,"y":116,"on":false},{"x":508,"y":127,"on":true},{"x":508,"y":37,"on":true},{"x":479,"y":25,"on":false},{"x":419,"y":10,"on":false},{"x":382,"y":9,"on":true},{"x":382,"y":-72,"on":true},{"x":315,"y":-72,"on":true},{"x":315,"y":8,"on":true},{"x":183,"y":18,"on":false},{"x":52,"y":201,"on":false},{"x":52,"y":357,"on":true},{"x":52,"y":452,"on":false},{"x":111,"y":603,"on":false},{"x":228,"y":696,"on":false},{"x":315,"y":706,"on":true},{"x":315,"y":759,"on":true}], + [{"x":315,"y":614,"on":true},{"x":238,"y":598,"on":false},{"x":160,"y":460,"on":false},{"x":160,"y":356,"on":true},{"x":160,"y":247,"on":false},{"x":238,"y":116,"on":false},{"x":315,"y":102,"on":true}] + ] + }, + "uni20B6": { + "advanceWidth": 590, + "contours": [ + [{"x":85,"y":0,"on":true},{"x":85,"y":458,"on":true},{"x":19,"y":458,"on":true},{"x":19,"y":508,"on":true},{"x":91,"y":539,"on":true},{"x":123,"y":660,"on":true},{"x":187,"y":660,"on":true},{"x":187,"y":540,"on":true},{"x":327,"y":540,"on":true},{"x":359,"y":660,"on":true},{"x":424,"y":660,"on":true},{"x":424,"y":540,"on":true},{"x":555,"y":540,"on":true},{"x":555,"y":458,"on":true},{"x":424,"y":458,"on":true},{"x":424,"y":159,"on":true},{"x":424,"y":76,"on":false},{"x":489,"y":76,"on":true},{"x":508,"y":76,"on":false},{"x":545,"y":83,"on":false},{"x":564,"y":89,"on":true},{"x":564,"y":9,"on":true},{"x":544,"y":1,"on":false},{"x":492,"y":-10,"on":false},{"x":461,"y":-10,"on":true},{"x":394,"y":-10,"on":false},{"x":321,"y":66,"on":false},{"x":321,"y":154,"on":true},{"x":321,"y":458,"on":true},{"x":187,"y":458,"on":true},{"x":187,"y":0,"on":true}] + ] + }, + "uni20B7": { + "advanceWidth": 708, + "contours": [ + [{"x":116,"y":-88,"on":true},{"x":116,"y":39,"on":true},{"x":72,"y":60,"on":false},{"x":22,"y":120,"on":false},{"x":22,"y":159,"on":true},{"x":22,"y":186,"on":false},{"x":56,"y":230,"on":false},{"x":93,"y":230,"on":true},{"x":121,"y":230,"on":false},{"x":157,"y":206,"on":false},{"x":166,"y":179,"on":true},{"x":168,"y":179,"on":true},{"x":182,"y":208,"on":false},{"x":227,"y":231,"on":false},{"x":251,"y":231,"on":true},{"x":313,"y":231,"on":false},{"x":334,"y":181,"on":true},{"x":337,"y":181,"on":true},{"x":350,"y":207,"on":false},{"x":395,"y":231,"on":false},{"x":417,"y":231,"on":true},{"x":462,"y":231,"on":false},{"x":508,"y":179,"on":false},{"x":508,"y":118,"on":true},{"x":508,"y":75,"on":true},{"x":544,"y":91,"on":false},{"x":575,"y":143,"on":false},{"x":575,"y":176,"on":true},{"x":575,"y":214,"on":false},{"x":540,"y":263,"on":false},{"x":473,"y":303,"on":false},{"x":425,"y":325,"on":true},{"x":380,"y":344,"on":false},{"x":306,"y":395,"on":false},{"x":261,"y":472,"on":false},{"x":261,"y":531,"on":true},{"x":260,"y":590,"on":false},{"x":316,"y":677,"on":false},{"x":414,"y":724,"on":false},{"x":478,"y":724,"on":true},{"x":528,"y":724,"on":false},{"x":618,"y":702,"on":false},{"x":662,"y":682,"on":true},{"x":628,"y":594,"on":true},{"x":587,"y":613,"on":false},{"x":513,"y":633,"on":false},{"x":478,"y":633,"on":true},{"x":426,"y":633,"on":false},{"x":366,"y":580,"on":false},{"x":366,"y":535,"on":true},{"x":366,"y":500,"on":false},{"x":396,"y":456,"on":false},{"x":456,"y":422,"on":false},{"x":501,"y":401,"on":true},{"x":553,"y":377,"on":false},{"x":629,"y":323,"on":false},{"x":670,"y":248,"on":false},{"x":670,"y":195,"on":true},{"x":670,"y":125,"on":false},{"x":592,"y":27,"on":false},{"x":508,"y":6,"on":true},{"x":508,"y":-88,"on":true},{"x":446,"y":-88,"on":true},{"x":446,"y":-5,"on":true},{"x":414,"y":-8,"on":false},{"x":377,"y":-8,"on":true},{"x":360,"y":-8,"on":false},{"x":342,"y":-7,"on":true},{"x":342,"y":-88,"on":true},{"x":281,"y":-88,"on":true},{"x":281,"y":-3,"on":true},{"x":254,"y":0,"on":false},{"x":202,"y":10,"on":false},{"x":178,"y":16,"on":true},{"x":178,"y":-88,"on":true}], + [{"x":69,"y":159,"on":true},{"x":69,"y":143,"on":false},{"x":92,"y":111,"on":false},{"x":116,"y":98,"on":true},{"x":116,"y":110,"on":true},{"x":116,"y":148,"on":false},{"x":104,"y":183,"on":false},{"x":87,"y":183,"on":true},{"x":69,"y":183,"on":false}], + [{"x":237,"y":178,"on":true},{"x":206,"y":178,"on":false},{"x":179,"y":127,"on":false},{"x":178,"y":75,"on":true},{"x":202,"y":69,"on":false},{"x":254,"y":60,"on":false},{"x":281,"y":57,"on":true},{"x":281,"y":108,"on":true},{"x":281,"y":178,"on":false}], + [{"x":342,"y":85,"on":true},{"x":342,"y":53,"on":true},{"x":357,"y":53,"on":false},{"x":373,"y":53,"on":true},{"x":414,"y":53,"on":false},{"x":446,"y":58,"on":true},{"x":446,"y":107,"on":true},{"x":446,"y":145,"on":false},{"x":424,"y":178,"on":false},{"x":401,"y":178,"on":true},{"x":374,"y":178,"on":false},{"x":342,"y":130,"on":false}] + ] + }, + "uni20B8": { + "advanceWidth": 497, + "contours": [ + [{"x":15,"y":714,"on":true},{"x":481,"y":714,"on":true},{"x":481,"y":628,"on":true},{"x":15,"y":628,"on":true}], + [{"x":301,"y":0,"on":true},{"x":196,"y":0,"on":true},{"x":196,"y":466,"on":true},{"x":15,"y":466,"on":true},{"x":15,"y":552,"on":true},{"x":481,"y":552,"on":true},{"x":481,"y":466,"on":true},{"x":301,"y":466,"on":true}] + ] + }, + "uni20B9": { + "advanceWidth": 524, + "contours": [ + [{"x":238,"y":0,"on":true},{"x":63,"y":322,"on":true},{"x":63,"y":376,"on":true},{"x":104,"y":376,"on":true},{"x":168,"y":376,"on":false},{"x":239,"y":423,"on":false},{"x":246,"y":478,"on":true},{"x":63,"y":478,"on":true},{"x":63,"y":545,"on":true},{"x":245,"y":545,"on":true},{"x":237,"y":596,"on":false},{"x":168,"y":647,"on":false},{"x":103,"y":647,"on":true},{"x":63,"y":647,"on":true},{"x":63,"y":714,"on":true},{"x":463,"y":714,"on":true},{"x":463,"y":647,"on":true},{"x":297,"y":647,"on":true},{"x":318,"y":628,"on":false},{"x":345,"y":577,"on":false},{"x":349,"y":545,"on":true},{"x":463,"y":545,"on":true},{"x":463,"y":478,"on":true},{"x":350,"y":478,"on":true},{"x":335,"y":335,"on":false},{"x":175,"y":312,"on":true},{"x":356,"y":0,"on":true}] + ] + }, + "uni20BA": { + "advanceWidth": 524, + "contours": [ + [{"x":188,"y":-7,"on":true},{"x":165,"y":-7,"on":false},{"x":122,"y":-4,"on":false},{"x":106,"y":0,"on":true},{"x":106,"y":316,"on":true},{"x":15,"y":285,"on":true},{"x":15,"y":356,"on":true},{"x":106,"y":388,"on":true},{"x":106,"y":467,"on":true},{"x":15,"y":436,"on":true},{"x":15,"y":508,"on":true},{"x":106,"y":538,"on":true},{"x":106,"y":714,"on":true},{"x":207,"y":714,"on":true},{"x":207,"y":574,"on":true},{"x":382,"y":636,"on":true},{"x":382,"y":564,"on":true},{"x":207,"y":503,"on":true},{"x":207,"y":424,"on":true},{"x":382,"y":485,"on":true},{"x":382,"y":414,"on":true},{"x":207,"y":352,"on":true},{"x":207,"y":82,"on":true},{"x":310,"y":85,"on":false},{"x":394,"y":224,"on":false},{"x":394,"y":347,"on":true},{"x":495,"y":347,"on":true},{"x":495,"y":242,"on":false},{"x":434,"y":82,"on":false},{"x":298,"y":-7,"on":false}] + ] + }, + "uni20BB": { + "advanceWidth": 722, + "contours": [ + [{"x":154,"y":96,"on":true},{"x":116,"y":142,"on":true},{"x":197,"y":214,"on":true},{"x":188,"y":267,"on":false},{"x":188,"y":332,"on":true},{"x":188,"y":448,"on":true},{"x":168,"y":448,"on":true},{"x":99,"y":448,"on":false},{"x":10,"y":518,"on":false},{"x":10,"y":591,"on":true},{"x":10,"y":649,"on":false},{"x":79,"y":719,"on":false},{"x":137,"y":719,"on":true},{"x":196,"y":719,"on":false},{"x":266,"y":631,"on":false},{"x":266,"y":534,"on":true},{"x":497,"y":534,"on":true},{"x":607,"y":534,"on":false},{"x":707,"y":426,"on":false},{"x":707,"y":343,"on":true},{"x":707,"y":278,"on":false},{"x":654,"y":204,"on":false},{"x":608,"y":204,"on":true},{"x":577,"y":204,"on":false},{"x":536,"y":234,"on":false},{"x":517,"y":257,"on":true},{"x":501,"y":275,"on":true},{"x":426,"y":198,"on":true},{"x":357,"y":280,"on":true},{"x":279,"y":209,"on":true},{"x":295,"y":138,"on":false},{"x":379,"y":81,"on":false},{"x":450,"y":81,"on":true},{"x":480,"y":81,"on":false},{"x":538,"y":90,"on":false},{"x":572,"y":100,"on":true},{"x":572,"y":9,"on":true},{"x":518,"y":-9,"on":false},{"x":454,"y":-9,"on":true},{"x":360,"y":-9,"on":false},{"x":242,"y":72,"on":false},{"x":214,"y":150,"on":true}], + [{"x":188,"y":567,"on":true},{"x":188,"y":614,"on":false},{"x":156,"y":663,"on":false},{"x":129,"y":663,"on":true},{"x":106,"y":663,"on":false},{"x":75,"y":633,"on":false},{"x":75,"y":606,"on":true},{"x":75,"y":572,"on":false},{"x":111,"y":534,"on":false},{"x":147,"y":534,"on":true},{"x":188,"y":534,"on":true}], + [{"x":545,"y":310,"on":true},{"x":558,"y":294,"on":false},{"x":587,"y":263,"on":false},{"x":605,"y":263,"on":true},{"x":626,"y":263,"on":false},{"x":644,"y":304,"on":false},{"x":644,"y":338,"on":true},{"x":644,"y":387,"on":false},{"x":578,"y":448,"on":false},{"x":505,"y":448,"on":true},{"x":267,"y":448,"on":true},{"x":267,"y":332,"on":true},{"x":267,"y":303,"on":false},{"x":269,"y":278,"on":true},{"x":369,"y":367,"on":true},{"x":431,"y":291,"on":true},{"x":500,"y":363,"on":true}] + ] + }, + "uni20BC": { + "advanceWidth": 761, + "contours": [ + [{"x":52,"y":0,"on":true},{"x":52,"y":149,"on":true},{"x":52,"y":267,"on":false},{"x":106,"y":420,"on":false},{"x":228,"y":500,"on":false},{"x":329,"y":506,"on":true},{"x":329,"y":714,"on":true},{"x":428,"y":714,"on":true},{"x":428,"y":506,"on":true},{"x":524,"y":500,"on":false},{"x":646,"y":424,"on":false},{"x":704,"y":274,"on":false},{"x":704,"y":153,"on":true},{"x":705,"y":0,"on":true},{"x":603,"y":0,"on":true},{"x":603,"y":151,"on":true},{"x":603,"y":248,"on":false},{"x":564,"y":361,"on":false},{"x":486,"y":412,"on":false},{"x":428,"y":418,"on":true},{"x":428,"y":164,"on":true},{"x":329,"y":164,"on":true},{"x":329,"y":418,"on":true},{"x":268,"y":412,"on":false},{"x":190,"y":360,"on":false},{"x":153,"y":248,"on":false},{"x":153,"y":151,"on":true},{"x":153,"y":0,"on":true}] + ] + }, + "uni20BD": { + "advanceWidth": 539, + "contours": [ + [{"x":10,"y":198,"on":true},{"x":86,"y":198,"on":true},{"x":86,"y":283,"on":true},{"x":10,"y":283,"on":true},{"x":10,"y":367,"on":true},{"x":86,"y":367,"on":true},{"x":86,"y":714,"on":true},{"x":266,"y":714,"on":true},{"x":390,"y":714,"on":false},{"x":508,"y":608,"on":false},{"x":508,"y":504,"on":true},{"x":508,"y":403,"on":false},{"x":384,"y":283,"on":false},{"x":257,"y":283,"on":true},{"x":191,"y":283,"on":true},{"x":191,"y":198,"on":true},{"x":343,"y":198,"on":true},{"x":343,"y":124,"on":true},{"x":191,"y":124,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":124,"on":true},{"x":10,"y":124,"on":true}], + [{"x":259,"y":625,"on":true},{"x":191,"y":625,"on":true},{"x":191,"y":367,"on":true},{"x":244,"y":367,"on":true},{"x":320,"y":367,"on":false},{"x":401,"y":427,"on":false},{"x":401,"y":500,"on":true},{"x":401,"y":564,"on":false},{"x":332,"y":625,"on":false}] + ] + }, + "uni20BE": { + "advanceWidth": 564, + "contours": [ + [{"x":49,"y":87,"on":true},{"x":210,"y":87,"on":true},{"x":143,"y":127,"on":false},{"x":58,"y":273,"on":false},{"x":58,"y":378,"on":true},{"x":58,"y":510,"on":false},{"x":163,"y":677,"on":false},{"x":260,"y":703,"on":true},{"x":260,"y":815,"on":true},{"x":318,"y":815,"on":true},{"x":318,"y":713,"on":true},{"x":333,"y":714,"on":false},{"x":348,"y":714,"on":true},{"x":370,"y":714,"on":false},{"x":390,"y":712,"on":true},{"x":390,"y":815,"on":true},{"x":447,"y":815,"on":true},{"x":447,"y":704,"on":true},{"x":481,"y":697,"on":false},{"x":513,"y":683,"on":true},{"x":513,"y":592,"on":true},{"x":480,"y":605,"on":false},{"x":447,"y":613,"on":true},{"x":447,"y":413,"on":true},{"x":390,"y":413,"on":true},{"x":390,"y":622,"on":true},{"x":375,"y":623,"on":false},{"x":360,"y":623,"on":true},{"x":338,"y":623,"on":false},{"x":318,"y":619,"on":true},{"x":318,"y":413,"on":true},{"x":260,"y":413,"on":true},{"x":260,"y":599,"on":true},{"x":162,"y":543,"on":false},{"x":162,"y":373,"on":true},{"x":162,"y":292,"on":false},{"x":219,"y":162,"on":false},{"x":326,"y":87,"on":false},{"x":403,"y":87,"on":true},{"x":526,"y":87,"on":true},{"x":526,"y":0,"on":true},{"x":49,"y":0,"on":true}] + ] + }, + "uni20BF": { + "advanceWidth": 524, + "contours": [ + [{"x":172,"y":-98,"on":true},{"x":172,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":172,"y":714,"on":true},{"x":172,"y":815,"on":true},{"x":232,"y":815,"on":true},{"x":232,"y":714,"on":true},{"x":245,"y":714,"on":true},{"x":272,"y":714,"on":false},{"x":296,"y":712,"on":true},{"x":296,"y":815,"on":true},{"x":356,"y":815,"on":true},{"x":356,"y":701,"on":true},{"x":415,"y":685,"on":false},{"x":474,"y":605,"on":false},{"x":474,"y":538,"on":true},{"x":474,"y":474,"on":false},{"x":423,"y":390,"on":false},{"x":374,"y":379,"on":true},{"x":374,"y":374,"on":true},{"x":427,"y":361,"on":false},{"x":492,"y":284,"on":false},{"x":492,"y":205,"on":true},{"x":492,"y":129,"on":false},{"x":420,"y":28,"on":false},{"x":356,"y":9,"on":true},{"x":356,"y":-98,"on":true},{"x":296,"y":-98,"on":true},{"x":296,"y":0,"on":true},{"x":290,"y":0,"on":false},{"x":283,"y":0,"on":true},{"x":232,"y":0,"on":true},{"x":232,"y":-98,"on":true}], + [{"x":190,"y":415,"on":true},{"x":257,"y":415,"on":true},{"x":318,"y":415,"on":false},{"x":368,"y":470,"on":false},{"x":368,"y":525,"on":true},{"x":368,"y":626,"on":false},{"x":249,"y":626,"on":true},{"x":190,"y":626,"on":true}], + [{"x":190,"y":329,"on":true},{"x":190,"y":89,"on":true},{"x":267,"y":89,"on":true},{"x":331,"y":89,"on":false},{"x":383,"y":154,"on":false},{"x":383,"y":213,"on":true},{"x":383,"y":267,"on":false},{"x":327,"y":329,"on":false},{"x":262,"y":329,"on":true}] + ] + }, + "uni20F0": { + "advanceWidth": 0, + "references": [ + {"glyph":"asterisk","x":-249,"y":112,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2100": { + "advanceWidth": 688, + "contours": [ + [{"x":175,"y":722,"on":true},{"x":297,"y":722,"on":false},{"x":297,"y":603,"on":true},{"x":297,"y":384,"on":true},{"x":246,"y":384,"on":true},{"x":233,"y":431,"on":true},{"x":214,"y":406,"on":false},{"x":161,"y":378,"on":false},{"x":126,"y":378,"on":true},{"x":81,"y":378,"on":false},{"x":28,"y":431,"on":false},{"x":28,"y":480,"on":true},{"x":28,"y":532,"on":false},{"x":104,"y":582,"on":false},{"x":177,"y":586,"on":true},{"x":225,"y":588,"on":true},{"x":225,"y":607,"on":true},{"x":225,"y":637,"on":false},{"x":194,"y":663,"on":false},{"x":165,"y":663,"on":true},{"x":142,"y":663,"on":false},{"x":96,"y":649,"on":false},{"x":73,"y":637,"on":true},{"x":49,"y":691,"on":true},{"x":76,"y":704,"on":false},{"x":139,"y":722,"on":false}], + [{"x":618,"y":714,"on":true},{"x":217,"y":0,"on":true},{"x":132,"y":0,"on":true},{"x":533,"y":714,"on":true}], + [{"x":225,"y":540,"on":true},{"x":184,"y":538,"on":true},{"x":136,"y":535,"on":false},{"x":101,"y":506,"on":false},{"x":101,"y":480,"on":true},{"x":101,"y":457,"on":false},{"x":126,"y":435,"on":false},{"x":147,"y":435,"on":true},{"x":186,"y":435,"on":false},{"x":225,"y":480,"on":false},{"x":225,"y":518,"on":true}], + [{"x":560,"y":-10,"on":true},{"x":494,"y":-10,"on":false},{"x":413,"y":76,"on":false},{"x":413,"y":165,"on":true},{"x":413,"y":256,"on":false},{"x":499,"y":342,"on":false},{"x":566,"y":342,"on":true},{"x":593,"y":342,"on":false},{"x":640,"y":330,"on":false},{"x":658,"y":321,"on":true},{"x":637,"y":262,"on":true},{"x":619,"y":270,"on":false},{"x":582,"y":279,"on":false},{"x":566,"y":279,"on":true},{"x":489,"y":279,"on":false},{"x":489,"y":165,"on":true},{"x":489,"y":53,"on":false},{"x":564,"y":53,"on":true},{"x":588,"y":53,"on":false},{"x":631,"y":66,"on":false},{"x":651,"y":77,"on":true},{"x":651,"y":12,"on":true},{"x":632,"y":1,"on":false},{"x":590,"y":-10,"on":false}] + ] + }, + "uni2101": { + "advanceWidth": 680, + "contours": [ + [{"x":175,"y":722,"on":true},{"x":297,"y":722,"on":false},{"x":297,"y":603,"on":true},{"x":297,"y":384,"on":true},{"x":246,"y":384,"on":true},{"x":233,"y":431,"on":true},{"x":214,"y":406,"on":false},{"x":161,"y":378,"on":false},{"x":126,"y":378,"on":true},{"x":81,"y":378,"on":false},{"x":28,"y":431,"on":false},{"x":28,"y":480,"on":true},{"x":28,"y":532,"on":false},{"x":104,"y":582,"on":false},{"x":177,"y":586,"on":true},{"x":225,"y":588,"on":true},{"x":225,"y":607,"on":true},{"x":225,"y":637,"on":false},{"x":194,"y":663,"on":false},{"x":165,"y":663,"on":true},{"x":142,"y":663,"on":false},{"x":96,"y":649,"on":false},{"x":73,"y":637,"on":true},{"x":49,"y":691,"on":true},{"x":76,"y":704,"on":false},{"x":139,"y":722,"on":false}], + [{"x":602,"y":714,"on":true},{"x":200,"y":0,"on":true},{"x":116,"y":0,"on":true},{"x":517,"y":714,"on":true}], + [{"x":225,"y":540,"on":true},{"x":184,"y":538,"on":true},{"x":136,"y":535,"on":false},{"x":101,"y":506,"on":false},{"x":101,"y":480,"on":true},{"x":101,"y":457,"on":false},{"x":126,"y":435,"on":false},{"x":147,"y":435,"on":true},{"x":186,"y":435,"on":false},{"x":225,"y":480,"on":false},{"x":225,"y":518,"on":true}], + [{"x":650,"y":101,"on":true},{"x":650,"y":52,"on":false},{"x":584,"y":-5,"on":false},{"x":519,"y":-5,"on":true},{"x":459,"y":-5,"on":false},{"x":412,"y":17,"on":true},{"x":412,"y":81,"on":true},{"x":438,"y":67,"on":false},{"x":496,"y":52,"on":false},{"x":521,"y":52,"on":true},{"x":551,"y":52,"on":false},{"x":579,"y":75,"on":false},{"x":579,"y":94,"on":true},{"x":579,"y":114,"on":false},{"x":551,"y":138,"on":false},{"x":505,"y":159,"on":true},{"x":458,"y":179,"on":false},{"x":413,"y":225,"on":false},{"x":413,"y":268,"on":true},{"x":413,"y":314,"on":false},{"x":480,"y":362,"on":false},{"x":534,"y":362,"on":true},{"x":594,"y":362,"on":false},{"x":644,"y":335,"on":true},{"x":624,"y":279,"on":true},{"x":602,"y":290,"on":false},{"x":555,"y":305,"on":false},{"x":531,"y":305,"on":true},{"x":506,"y":305,"on":false},{"x":484,"y":286,"on":false},{"x":484,"y":271,"on":true},{"x":484,"y":252,"on":false},{"x":512,"y":228,"on":false},{"x":554,"y":212,"on":true},{"x":598,"y":192,"on":false},{"x":650,"y":149,"on":false}] + ] + }, + "uni2102": { + "advanceWidth": 632, + "contours": [ + [{"x":382,"y":-10,"on":true},{"x":270,"y":-10,"on":false},{"x":123,"y":80,"on":false},{"x":50,"y":246,"on":false},{"x":50,"y":358,"on":true},{"x":50,"y":466,"on":false},{"x":129,"y":632,"on":false},{"x":282,"y":725,"on":false},{"x":393,"y":725,"on":true},{"x":441,"y":725,"on":false},{"x":534,"y":713,"on":false},{"x":582,"y":694,"on":true},{"x":556,"y":638,"on":true},{"x":476,"y":672,"on":false},{"x":391,"y":672,"on":true},{"x":348,"y":672,"on":false},{"x":273,"y":653,"on":false},{"x":242,"y":636,"on":true},{"x":242,"y":74,"on":true},{"x":304,"y":43,"on":false},{"x":391,"y":43,"on":true},{"x":432,"y":43,"on":false},{"x":520,"y":56,"on":false},{"x":562,"y":67,"on":true},{"x":562,"y":8,"on":true},{"x":515,"y":-2,"on":false},{"x":429,"y":-10,"on":false}], + [{"x":189,"y":112,"on":true},{"x":189,"y":596,"on":true},{"x":106,"y":513,"on":false},{"x":106,"y":355,"on":true},{"x":106,"y":276,"on":false},{"x":147,"y":152,"on":false}] + ] + }, + "uni2103": { + "advanceWidth": 922, + "references": [ + {"glyph":"degree","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"C","x":357,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2104": { + "advanceWidth": 532, + "contours": [ + [{"x":511,"y":0,"on":true},{"x":178,"y":0,"on":true},{"x":178,"y":182,"on":true},{"x":109,"y":196,"on":false},{"x":33,"y":302,"on":false},{"x":33,"y":393,"on":true},{"x":33,"y":484,"on":false},{"x":111,"y":589,"on":false},{"x":178,"y":603,"on":true},{"x":178,"y":714,"on":true},{"x":253,"y":714,"on":true},{"x":253,"y":607,"on":true},{"x":307,"y":604,"on":false},{"x":351,"y":583,"on":true},{"x":332,"y":527,"on":true},{"x":293,"y":545,"on":false},{"x":253,"y":548,"on":true},{"x":253,"y":238,"on":true},{"x":296,"y":242,"on":false},{"x":342,"y":263,"on":true},{"x":342,"y":204,"on":true},{"x":299,"y":183,"on":false},{"x":253,"y":180,"on":true},{"x":253,"y":70,"on":true},{"x":511,"y":70,"on":true}], + [{"x":102,"y":394,"on":true},{"x":102,"y":334,"on":false},{"x":139,"y":258,"on":false},{"x":178,"y":244,"on":true},{"x":178,"y":543,"on":true},{"x":102,"y":515,"on":false}] + ] + }, + "uni2105": { + "advanceWidth": 744, + "contours": [ + [{"x":203,"y":377,"on":true},{"x":133,"y":377,"on":false},{"x":47,"y":461,"on":false},{"x":47,"y":546,"on":true},{"x":47,"y":634,"on":false},{"x":134,"y":720,"on":false},{"x":205,"y":720,"on":true},{"x":230,"y":720,"on":false},{"x":277,"y":709,"on":false},{"x":297,"y":699,"on":true},{"x":278,"y":640,"on":true},{"x":260,"y":648,"on":false},{"x":222,"y":657,"on":false},{"x":206,"y":657,"on":true},{"x":164,"y":657,"on":false},{"x":123,"y":600,"on":false},{"x":123,"y":548,"on":true},{"x":123,"y":440,"on":false},{"x":206,"y":440,"on":true},{"x":229,"y":440,"on":false},{"x":271,"y":450,"on":false},{"x":290,"y":458,"on":true},{"x":290,"y":397,"on":true},{"x":255,"y":377,"on":false}], + [{"x":580,"y":714,"on":true},{"x":226,"y":0,"on":true},{"x":142,"y":0,"on":true},{"x":496,"y":714,"on":true}], + [{"x":696,"y":165,"on":true},{"x":696,"y":83,"on":false},{"x":618,"y":-7,"on":false},{"x":550,"y":-7,"on":true},{"x":487,"y":-7,"on":false},{"x":407,"y":83,"on":false},{"x":407,"y":165,"on":true},{"x":407,"y":245,"on":false},{"x":485,"y":337,"on":false},{"x":553,"y":337,"on":true},{"x":615,"y":337,"on":false},{"x":696,"y":248,"on":false}], + [{"x":483,"y":165,"on":true},{"x":483,"y":114,"on":false},{"x":516,"y":56,"on":false},{"x":552,"y":56,"on":true},{"x":587,"y":56,"on":false},{"x":620,"y":115,"on":false},{"x":620,"y":165,"on":true},{"x":620,"y":218,"on":false},{"x":587,"y":276,"on":false},{"x":552,"y":276,"on":true},{"x":516,"y":276,"on":false},{"x":483,"y":218,"on":false}] + ] + }, + "uni2106": { + "advanceWidth": 803, + "contours": [ + [{"x":188,"y":366,"on":true},{"x":121,"y":366,"on":false},{"x":41,"y":452,"on":false},{"x":41,"y":540,"on":true},{"x":41,"y":632,"on":false},{"x":127,"y":718,"on":false},{"x":194,"y":718,"on":true},{"x":221,"y":718,"on":false},{"x":268,"y":706,"on":false},{"x":286,"y":697,"on":true},{"x":265,"y":637,"on":true},{"x":247,"y":644,"on":false},{"x":210,"y":655,"on":false},{"x":194,"y":655,"on":true},{"x":117,"y":655,"on":false},{"x":117,"y":541,"on":true},{"x":117,"y":429,"on":false},{"x":192,"y":429,"on":true},{"x":216,"y":429,"on":false},{"x":259,"y":442,"on":false},{"x":279,"y":453,"on":true},{"x":279,"y":388,"on":true},{"x":260,"y":377,"on":false},{"x":218,"y":366,"on":false}], + [{"x":602,"y":714,"on":true},{"x":200,"y":0,"on":true},{"x":115,"y":0,"on":true},{"x":517,"y":714,"on":true}], + [{"x":723,"y":340,"on":true},{"x":724,"y":0,"on":true},{"x":662,"y":0,"on":true},{"x":654,"y":44,"on":true},{"x":650,"y":44,"on":true},{"x":618,"y":-6,"on":false},{"x":557,"y":-6,"on":true},{"x":502,"y":-6,"on":false},{"x":443,"y":54,"on":false},{"x":443,"y":118,"on":true},{"x":443,"y":340,"on":true},{"x":519,"y":340,"on":true},{"x":519,"y":130,"on":true},{"x":519,"y":56,"on":false},{"x":574,"y":56,"on":true},{"x":615,"y":56,"on":false},{"x":648,"y":114,"on":false},{"x":648,"y":168,"on":true},{"x":648,"y":340,"on":true}] + ] + }, + "uni2107": { + "advanceWidth": 548, + "references": [ + {"glyph":"uni0190","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2108": { + "advanceWidth": 578, + "references": [ + {"glyph":"uni042D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2109": { + "advanceWidth": 823, + "references": [ + {"glyph":"degree","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"F","x":346,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni210A": { + "advanceWidth": 580, + "contours": [ + [{"x":9,"y":-389,"on":true},{"x":-24,"y":-389,"on":false},{"x":-66,"y":-355,"on":false},{"x":-85,"y":-311,"on":false},{"x":-85,"y":-295,"on":true},{"x":-85,"y":-262,"on":false},{"x":-32,"y":-194,"on":false},{"x":51,"y":-129,"on":false},{"x":146,"y":-72,"on":false},{"x":233,"y":-29,"on":false},{"x":261,"y":-16,"on":true},{"x":295,"y":55,"on":true},{"x":287,"y":46,"on":false},{"x":251,"y":15,"on":false},{"x":200,"y":-9,"on":false},{"x":170,"y":-9,"on":true},{"x":134,"y":-9,"on":false},{"x":96,"y":32,"on":false},{"x":83,"y":88,"on":false},{"x":83,"y":110,"on":true},{"x":83,"y":137,"on":false},{"x":104,"y":192,"on":false},{"x":117,"y":209,"on":true},{"x":52,"y":145,"on":true},{"x":39,"y":158,"on":true},{"x":74,"y":196,"on":false},{"x":133,"y":264,"on":false},{"x":162,"y":298,"on":true},{"x":197,"y":338,"on":false},{"x":291,"y":397,"on":false},{"x":349,"y":397,"on":true},{"x":390,"y":397,"on":false},{"x":429,"y":364,"on":false},{"x":429,"y":324,"on":true},{"x":475,"y":388,"on":true},{"x":593,"y":388,"on":true},{"x":387,"y":28,"on":true},{"x":426,"y":51,"on":false},{"x":492,"y":109,"on":false},{"x":538,"y":162,"on":false},{"x":548,"y":175,"on":true},{"x":568,"y":175,"on":true},{"x":563,"y":163,"on":false},{"x":512,"y":100,"on":false},{"x":428,"y":27,"on":false},{"x":374,"y":-1,"on":true},{"x":296,"y":-148,"on":true},{"x":296,"y":-148,"on":false},{"x":270,"y":-197,"on":false},{"x":220,"y":-268,"on":false},{"x":149,"y":-340,"on":false},{"x":61,"y":-389,"on":false}], + [{"x":181,"y":11,"on":true},{"x":214,"y":11,"on":false},{"x":280,"y":66,"on":false},{"x":338,"y":150,"on":false},{"x":360,"y":194,"on":true},{"x":376,"y":228,"on":false},{"x":408,"y":302,"on":false},{"x":408,"y":334,"on":true},{"x":408,"y":374,"on":false},{"x":374,"y":374,"on":true},{"x":353,"y":374,"on":false},{"x":305,"y":331,"on":false},{"x":256,"y":262,"on":false},{"x":211,"y":182,"on":false},{"x":176,"y":104,"on":false},{"x":155,"y":45,"on":false},{"x":155,"y":32,"on":true},{"x":155,"y":18,"on":false},{"x":173,"y":11,"on":false}], + [{"x":8,"y":-371,"on":true},{"x":42,"y":-371,"on":false},{"x":95,"y":-326,"on":false},{"x":144,"y":-248,"on":false},{"x":169,"y":-198,"on":true},{"x":248,"y":-44,"on":true},{"x":241,"y":-48,"on":false},{"x":194,"y":-73,"on":false},{"x":128,"y":-113,"on":false},{"x":58,"y":-164,"on":false},{"x":-3,"y":-224,"on":false},{"x":-41,"y":-288,"on":false},{"x":-41,"y":-320,"on":true},{"x":-41,"y":-351,"on":false},{"x":-10,"y":-371,"on":false}] + ] + }, + "uni210B": { + "advanceWidth": 1058, + "contours": [ + [{"x":153,"y":-10,"on":true},{"x":96,"y":-10,"on":false},{"x":31,"y":29,"on":false},{"x":3,"y":83,"on":false},{"x":-4,"y":130,"on":false},{"x":-4,"y":139,"on":true},{"x":-4,"y":179,"on":false},{"x":45,"y":234,"on":false},{"x":79,"y":234,"on":true},{"x":115,"y":234,"on":false},{"x":142,"y":195,"on":false},{"x":142,"y":180,"on":true},{"x":142,"y":148,"on":false},{"x":110,"y":120,"on":false},{"x":88,"y":117,"on":true},{"x":76,"y":116,"on":false},{"x":51,"y":115,"on":false},{"x":33,"y":104,"on":false},{"x":33,"y":89,"on":true},{"x":33,"y":85,"on":false},{"x":40,"y":59,"on":false},{"x":63,"y":30,"on":false},{"x":112,"y":8,"on":false},{"x":155,"y":8,"on":true},{"x":211,"y":8,"on":false},{"x":285,"y":75,"on":false},{"x":346,"y":194,"on":false},{"x":383,"y":271,"on":true},{"x":320,"y":248,"on":false},{"x":240,"y":183,"on":false},{"x":215,"y":155,"on":true},{"x":201,"y":169,"on":true},{"x":201,"y":169,"on":false},{"x":227,"y":196,"on":false},{"x":276,"y":236,"on":false},{"x":343,"y":277,"on":false},{"x":384,"y":291,"on":true},{"x":395,"y":295,"on":true},{"x":427,"y":362,"on":false},{"x":506,"y":504,"on":false},{"x":569,"y":581,"on":true},{"x":569,"y":581,"on":false},{"x":538,"y":553,"on":false},{"x":488,"y":512,"on":false},{"x":430,"y":471,"on":false},{"x":378,"y":443,"on":false},{"x":360,"y":443,"on":true},{"x":339,"y":443,"on":false},{"x":314,"y":470,"on":false},{"x":314,"y":490,"on":true},{"x":314,"y":503,"on":false},{"x":336,"y":543,"on":false},{"x":364,"y":586,"on":false},{"x":386,"y":618,"on":false},{"x":386,"y":623,"on":true},{"x":386,"y":625,"on":false},{"x":382,"y":630,"on":false},{"x":373,"y":630,"on":true},{"x":352,"y":630,"on":false},{"x":287,"y":584,"on":false},{"x":211,"y":505,"on":false},{"x":174,"y":454,"on":true},{"x":160,"y":465,"on":true},{"x":160,"y":465,"on":false},{"x":189,"y":502,"on":false},{"x":237,"y":556,"on":false},{"x":295,"y":611,"on":false},{"x":355,"y":648,"on":false},{"x":381,"y":648,"on":true},{"x":406,"y":648,"on":false},{"x":426,"y":627,"on":false},{"x":430,"y":604,"on":false},{"x":430,"y":600,"on":true},{"x":430,"y":590,"on":false},{"x":424,"y":560,"on":false},{"x":408,"y":537,"on":true},{"x":392,"y":514,"on":false},{"x":366,"y":482,"on":false},{"x":366,"y":474,"on":true},{"x":366,"y":464,"on":false},{"x":376,"y":464,"on":true},{"x":386,"y":464,"on":false},{"x":435,"y":494,"on":false},{"x":502,"y":544,"on":false},{"x":577,"y":604,"on":false},{"x":649,"y":667,"on":false},{"x":679,"y":695,"on":true},{"x":689,"y":682,"on":true},{"x":657,"y":648,"on":false},{"x":612,"y":580,"on":false},{"x":578,"y":500,"on":false},{"x":546,"y":401,"on":false},{"x":526,"y":336,"on":true},{"x":563,"y":347,"on":false},{"x":609,"y":362,"on":false},{"x":641,"y":372,"on":true},{"x":678,"y":440,"on":false},{"x":770,"y":571,"on":false},{"x":870,"y":678,"on":false},{"x":968,"y":742,"on":false},{"x":1011,"y":742,"on":true},{"x":1045,"y":742,"on":false},{"x":1082,"y":707,"on":false},{"x":1082,"y":674,"on":true},{"x":1082,"y":646,"on":false},{"x":1030,"y":555,"on":false},{"x":920,"y":457,"on":false},{"x":833,"y":420,"on":true},{"x":814,"y":412,"on":false},{"x":767,"y":395,"on":false},{"x":741,"y":386,"on":true},{"x":713,"y":324,"on":false},{"x":668,"y":206,"on":false},{"x":636,"y":107,"on":false},{"x":619,"y":39,"on":false},{"x":619,"y":28,"on":true},{"x":619,"y":28,"on":false},{"x":624,"y":9,"on":false},{"x":643,"y":9,"on":true},{"x":658,"y":9,"on":false},{"x":701,"y":36,"on":false},{"x":749,"y":76,"on":false},{"x":793,"y":120,"on":false},{"x":826,"y":156,"on":false},{"x":833,"y":164,"on":true},{"x":853,"y":164,"on":true},{"x":846,"y":154,"on":false},{"x":811,"y":114,"on":false},{"x":764,"y":65,"on":false},{"x":712,"y":20,"on":false},{"x":661,"y":-9,"on":false},{"x":640,"y":-9,"on":true},{"x":607,"y":-9,"on":false},{"x":549,"y":50,"on":false},{"x":549,"y":116,"on":true},{"x":549,"y":156,"on":false},{"x":592,"y":280,"on":false},{"x":628,"y":349,"on":true},{"x":519,"y":315,"on":true},{"x":518,"y":310,"on":false},{"x":516,"y":302,"on":false},{"x":514,"y":298,"on":true},{"x":499,"y":247,"on":false},{"x":439,"y":140,"on":false},{"x":350,"y":47,"on":false},{"x":229,"y":-10,"on":false}], + [{"x":752,"y":408,"on":true},{"x":766,"y":412,"on":false},{"x":795,"y":424,"on":false},{"x":823,"y":436,"on":true},{"x":858,"y":451,"on":false},{"x":936,"y":515,"on":false},{"x":1005,"y":592,"on":false},{"x":1049,"y":665,"on":false},{"x":1049,"y":690,"on":true},{"x":1049,"y":707,"on":false},{"x":1026,"y":723,"on":false},{"x":1011,"y":723,"on":true},{"x":1001,"y":723,"on":false},{"x":954,"y":704,"on":false},{"x":882,"y":637,"on":false},{"x":837,"y":566,"on":true},{"x":814,"y":530,"on":false},{"x":772,"y":450,"on":false}] + ] + }, + "uni210C": { + "advanceWidth": 734, + "contours": [ + [{"x":470,"y":-124,"on":true},{"x":451,"y":-124,"on":false},{"x":410,"y":-110,"on":false},{"x":390,"y":-94,"on":true},{"x":442,"y":-25,"on":true},{"x":457,"y":-44,"on":false},{"x":483,"y":-65,"on":false},{"x":502,"y":-65,"on":true},{"x":537,"y":-65,"on":false},{"x":593,"y":64,"on":false},{"x":591,"y":204,"on":true},{"x":590,"y":298,"on":false},{"x":559,"y":400,"on":false},{"x":498,"y":440,"on":false},{"x":451,"y":440,"on":true},{"x":396,"y":439,"on":false},{"x":326,"y":378,"on":false},{"x":294,"y":323,"on":true},{"x":308,"y":293,"on":false},{"x":325,"y":234,"on":false},{"x":327,"y":209,"on":true},{"x":328,"y":200,"on":false},{"x":326,"y":168,"on":false},{"x":324,"y":161,"on":true},{"x":181,"y":-12,"on":true},{"x":176,"y":-6,"on":false},{"x":147,"y":23,"on":false},{"x":111,"y":48,"on":false},{"x":96,"y":48,"on":true},{"x":82,"y":48,"on":false},{"x":49,"y":29,"on":false},{"x":21,"y":5,"on":false},{"x":16,"y":-2,"on":true},{"x":1,"y":15,"on":true},{"x":7,"y":23,"on":false},{"x":41,"y":60,"on":false},{"x":84,"y":100,"on":false},{"x":126,"y":128,"on":false},{"x":141,"y":128,"on":true},{"x":163,"y":128,"on":false},{"x":203,"y":97,"on":false},{"x":224,"y":76,"on":true},{"x":231,"y":84,"on":true},{"x":238,"y":92,"on":false},{"x":256,"y":129,"on":false},{"x":256,"y":158,"on":true},{"x":256,"y":184,"on":false},{"x":218,"y":259,"on":false},{"x":168,"y":345,"on":false},{"x":130,"y":435,"on":false},{"x":130,"y":477,"on":true},{"x":130,"y":508,"on":false},{"x":167,"y":572,"on":false},{"x":223,"y":631,"on":false},{"x":283,"y":681,"on":false},{"x":330,"y":714,"on":false},{"x":339,"y":718,"on":true},{"x":358,"y":706,"on":false},{"x":412,"y":679,"on":false},{"x":464,"y":660,"on":false},{"x":479,"y":660,"on":true},{"x":498,"y":660,"on":false},{"x":531,"y":679,"on":false},{"x":557,"y":703,"on":false},{"x":566,"y":711,"on":true},{"x":582,"y":696,"on":true},{"x":521,"y":632,"on":false},{"x":438,"y":579,"on":false},{"x":433,"y":579,"on":true},{"x":414,"y":579,"on":false},{"x":353,"y":600,"on":false},{"x":296,"y":626,"on":false},{"x":281,"y":635,"on":true},{"x":270,"y":624,"on":false},{"x":241,"y":585,"on":false},{"x":221,"y":534,"on":false},{"x":221,"y":505,"on":true},{"x":221,"y":483,"on":false},{"x":249,"y":413,"on":false},{"x":272,"y":367,"on":true},{"x":282,"y":376,"on":false},{"x":323,"y":410,"on":false},{"x":373,"y":451,"on":false},{"x":421,"y":489,"on":false},{"x":455,"y":513,"on":false},{"x":460,"y":513,"on":true},{"x":467,"y":513,"on":false},{"x":509,"y":510,"on":false},{"x":567,"y":498,"on":false},{"x":629,"y":475,"on":false},{"x":656,"y":455,"on":true},{"x":666,"y":427,"on":false},{"x":679,"y":343,"on":false},{"x":684,"y":261,"on":false},{"x":683,"y":237,"on":true},{"x":682,"y":170,"on":false},{"x":659,"y":48,"on":false},{"x":644,"y":4,"on":true},{"x":586,"y":-44,"on":false},{"x":517,"y":-96,"on":false},{"x":483,"y":-119,"on":false},{"x":471,"y":-124,"on":false}] + ] + }, + "uni210D": { + "advanceWidth": 777, + "contours": [ + [{"x":97,"y":0,"on":true},{"x":97,"y":714,"on":true},{"x":270,"y":714,"on":true},{"x":270,"y":400,"on":true},{"x":507,"y":400,"on":true},{"x":507,"y":714,"on":true},{"x":680,"y":714,"on":true},{"x":680,"y":0,"on":true},{"x":507,"y":0,"on":true},{"x":507,"y":347,"on":true},{"x":270,"y":347,"on":true},{"x":270,"y":0,"on":true}], + [{"x":150,"y":53,"on":true},{"x":217,"y":53,"on":true},{"x":217,"y":661,"on":true},{"x":150,"y":661,"on":true}], + [{"x":560,"y":53,"on":true},{"x":627,"y":53,"on":true},{"x":627,"y":661,"on":true},{"x":560,"y":661,"on":true}] + ] + }, + "uni210E": { + "advanceWidth": 556, + "contours": [ + [{"x":25,"y":0,"on":true},{"x":162,"y":760,"on":true},{"x":264,"y":760,"on":true},{"x":227,"y":557,"on":true},{"x":223,"y":532,"on":false},{"x":211,"y":484,"on":false},{"x":205,"y":465,"on":true},{"x":210,"y":465,"on":true},{"x":237,"y":504,"on":false},{"x":314,"y":543,"on":false},{"x":358,"y":543,"on":true},{"x":428,"y":543,"on":false},{"x":506,"y":473,"on":false},{"x":506,"y":406,"on":true},{"x":506,"y":393,"on":false},{"x":503,"y":360,"on":false},{"x":500,"y":344,"on":true},{"x":437,"y":0,"on":true},{"x":336,"y":0,"on":true},{"x":398,"y":339,"on":true},{"x":400,"y":351,"on":false},{"x":403,"y":374,"on":false},{"x":403,"y":385,"on":true},{"x":403,"y":418,"on":false},{"x":366,"y":457,"on":false},{"x":328,"y":457,"on":true},{"x":264,"y":457,"on":false},{"x":194,"y":365,"on":false},{"x":177,"y":276,"on":true},{"x":127,"y":0,"on":true}] + ] + }, + "uni210F": { + "advanceWidth": 554, + "contours": [ + [{"x":25,"y":0,"on":true},{"x":145,"y":601,"on":true},{"x":77,"y":601,"on":true},{"x":89,"y":673,"on":true},{"x":158,"y":673,"on":true},{"x":176,"y":760,"on":true},{"x":278,"y":760,"on":true},{"x":260,"y":673,"on":true},{"x":411,"y":673,"on":true},{"x":399,"y":601,"on":true},{"x":246,"y":601,"on":true},{"x":234,"y":541,"on":true},{"x":230,"y":518,"on":false},{"x":217,"y":474,"on":false},{"x":212,"y":454,"on":true},{"x":216,"y":454,"on":true},{"x":247,"y":494,"on":false},{"x":326,"y":535,"on":false},{"x":378,"y":535,"on":true},{"x":441,"y":535,"on":false},{"x":512,"y":468,"on":false},{"x":512,"y":404,"on":true},{"x":512,"y":390,"on":false},{"x":509,"y":352,"on":false},{"x":505,"y":335,"on":true},{"x":437,"y":0,"on":true},{"x":336,"y":0,"on":true},{"x":401,"y":325,"on":true},{"x":404,"y":338,"on":false},{"x":407,"y":368,"on":false},{"x":407,"y":380,"on":true},{"x":407,"y":447,"on":false},{"x":338,"y":447,"on":true},{"x":274,"y":447,"on":false},{"x":199,"y":358,"on":false},{"x":181,"y":267,"on":true},{"x":127,"y":0,"on":true}] + ] + }, + "uni2110": { + "advanceWidth": 743, + "contours": [ + [{"x":153,"y":-10,"on":true},{"x":100,"y":-10,"on":false},{"x":37,"y":23,"on":false},{"x":6,"y":73,"on":false},{"x":-4,"y":122,"on":false},{"x":-4,"y":139,"on":true},{"x":-4,"y":179,"on":false},{"x":45,"y":234,"on":false},{"x":79,"y":234,"on":true},{"x":115,"y":234,"on":false},{"x":142,"y":195,"on":false},{"x":142,"y":180,"on":true},{"x":142,"y":148,"on":false},{"x":107,"y":117,"on":false},{"x":84,"y":117,"on":true},{"x":56,"y":117,"on":false},{"x":33,"y":104,"on":false},{"x":33,"y":89,"on":true},{"x":33,"y":77,"on":false},{"x":50,"y":38,"on":false},{"x":100,"y":8,"on":false},{"x":150,"y":8,"on":true},{"x":192,"y":8,"on":false},{"x":261,"y":61,"on":false},{"x":322,"y":154,"on":false},{"x":352,"y":213,"on":true},{"x":307,"y":223,"on":false},{"x":249,"y":276,"on":false},{"x":221,"y":343,"on":false},{"x":221,"y":374,"on":true},{"x":221,"y":430,"on":false},{"x":280,"y":538,"on":false},{"x":414,"y":638,"on":false},{"x":525,"y":679,"on":true},{"x":590,"y":702,"on":false},{"x":718,"y":725,"on":false},{"x":773,"y":725,"on":true},{"x":773,"y":710,"on":true},{"x":722,"y":707,"on":false},{"x":657,"y":647,"on":false},{"x":609,"y":541,"on":false},{"x":561,"y":396,"on":false},{"x":529,"y":307,"on":true},{"x":524,"y":292,"on":false},{"x":506,"y":253,"on":false},{"x":499,"y":238,"on":true},{"x":532,"y":248,"on":false},{"x":596,"y":291,"on":false},{"x":637,"y":362,"on":false},{"x":637,"y":415,"on":true},{"x":637,"y":447,"on":false},{"x":632,"y":464,"on":true},{"x":650,"y":465,"on":true},{"x":655,"y":448,"on":false},{"x":655,"y":418,"on":true},{"x":655,"y":396,"on":false},{"x":643,"y":339,"on":false},{"x":610,"y":281,"on":false},{"x":545,"y":232,"on":false},{"x":492,"y":218,"on":true},{"x":463,"y":160,"on":false},{"x":367,"y":56,"on":false},{"x":236,"y":-10,"on":false}], + [{"x":360,"y":229,"on":true},{"x":390,"y":288,"on":false},{"x":457,"y":418,"on":false},{"x":537,"y":546,"on":false},{"x":634,"y":660,"on":false},{"x":695,"y":703,"on":true},{"x":670,"y":698,"on":false},{"x":612,"y":684,"on":false},{"x":589,"y":676,"on":true},{"x":528,"y":655,"on":false},{"x":416,"y":578,"on":false},{"x":328,"y":479,"on":false},{"x":277,"y":374,"on":false},{"x":277,"y":326,"on":true},{"x":277,"y":290,"on":false},{"x":304,"y":252,"on":false},{"x":342,"y":234,"on":false}] + ] + }, + "Ifraktur": { + "advanceWidth": 559, + "contours": [ + [{"x":51,"y":498,"on":true},{"x":32,"y":506,"on":true},{"x":34,"y":515,"on":false},{"x":53,"y":564,"on":false},{"x":84,"y":625,"on":false},{"x":126,"y":682,"on":false},{"x":177,"y":720,"on":false},{"x":206,"y":720,"on":true},{"x":232,"y":720,"on":false},{"x":292,"y":698,"on":false},{"x":352,"y":669,"on":false},{"x":406,"y":647,"on":false},{"x":425,"y":647,"on":true},{"x":443,"y":647,"on":false},{"x":484,"y":670,"on":false},{"x":518,"y":696,"on":false},{"x":527,"y":703,"on":true},{"x":540,"y":685,"on":true},{"x":468,"y":630,"on":false},{"x":390,"y":575,"on":false},{"x":376,"y":575,"on":true},{"x":367,"y":575,"on":false},{"x":325,"y":591,"on":false},{"x":271,"y":612,"on":false},{"x":217,"y":628,"on":false},{"x":196,"y":628,"on":true},{"x":160,"y":628,"on":false},{"x":100,"y":583,"on":false},{"x":59,"y":522,"on":false}], + [{"x":209,"y":-8,"on":true},{"x":192,"y":-8,"on":false},{"x":147,"y":13,"on":false},{"x":106,"y":40,"on":false},{"x":97,"y":48,"on":true},{"x":48,"y":5,"on":true},{"x":32,"y":21,"on":true},{"x":136,"y":145,"on":true},{"x":140,"y":150,"on":false},{"x":150,"y":162,"on":false},{"x":153,"y":162,"on":true},{"x":156,"y":162,"on":false},{"x":167,"y":128,"on":false},{"x":189,"y":82,"on":false},{"x":226,"y":48,"on":false},{"x":256,"y":48,"on":true},{"x":306,"y":48,"on":false},{"x":358,"y":99,"on":false},{"x":376,"y":182,"on":false},{"x":376,"y":229,"on":true},{"x":376,"y":274,"on":false},{"x":366,"y":367,"on":false},{"x":355,"y":448,"on":false},{"x":355,"y":474,"on":true},{"x":355,"y":485,"on":false},{"x":391,"y":523,"on":false},{"x":442,"y":565,"on":false},{"x":490,"y":600,"on":false},{"x":502,"y":608,"on":true},{"x":514,"y":591,"on":true},{"x":480,"y":565,"on":false},{"x":446,"y":526,"on":false},{"x":446,"y":509,"on":true},{"x":446,"y":500,"on":false},{"x":454,"y":440,"on":false},{"x":463,"y":361,"on":false},{"x":471,"y":282,"on":false},{"x":471,"y":254,"on":true},{"x":471,"y":216,"on":false},{"x":449,"y":148,"on":false},{"x":391,"y":82,"on":false},{"x":337,"y":45,"on":true},{"x":301,"y":20,"on":false},{"x":255,"y":-2,"on":false},{"x":224,"y":-8,"on":false}] + ] + }, + "uni2112": { + "advanceWidth": 833, + "contours": [ + [{"x":141,"y":-10,"on":true},{"x":107,"y":-10,"on":false},{"x":48,"y":9,"on":false},{"x":11,"y":46,"on":false},{"x":11,"y":72,"on":true},{"x":11,"y":107,"on":false},{"x":72,"y":139,"on":false},{"x":109,"y":139,"on":true},{"x":147,"y":139,"on":false},{"x":231,"y":107,"on":false},{"x":272,"y":86,"on":true},{"x":288,"y":112,"on":false},{"x":320,"y":184,"on":false},{"x":339,"y":227,"on":true},{"x":343,"y":237,"on":false},{"x":352,"y":256,"on":false},{"x":356,"y":266,"on":true},{"x":290,"y":269,"on":false},{"x":208,"y":311,"on":false},{"x":165,"y":370,"on":false},{"x":150,"y":432,"on":false},{"x":150,"y":457,"on":true},{"x":150,"y":510,"on":false},{"x":202,"y":606,"on":false},{"x":293,"y":681,"on":false},{"x":410,"y":724,"on":false},{"x":474,"y":724,"on":true},{"x":519,"y":724,"on":false},{"x":564,"y":715,"on":true},{"x":560,"y":697,"on":true},{"x":515,"y":706,"on":false},{"x":474,"y":706,"on":true},{"x":416,"y":706,"on":false},{"x":317,"y":660,"on":false},{"x":244,"y":582,"on":false},{"x":204,"y":484,"on":false},{"x":204,"y":431,"on":true},{"x":204,"y":387,"on":false},{"x":236,"y":331,"on":false},{"x":286,"y":299,"on":false},{"x":341,"y":286,"on":false},{"x":364,"y":284,"on":true},{"x":391,"y":344,"on":false},{"x":452,"y":469,"on":false},{"x":520,"y":582,"on":false},{"x":596,"y":672,"on":false},{"x":680,"y":724,"on":false},{"x":725,"y":724,"on":true},{"x":768,"y":724,"on":false},{"x":806,"y":682,"on":false},{"x":806,"y":651,"on":true},{"x":806,"y":615,"on":false},{"x":759,"y":512,"on":false},{"x":674,"y":404,"on":false},{"x":561,"y":312,"on":false},{"x":494,"y":287,"on":true},{"x":475,"y":236,"on":true},{"x":450,"y":169,"on":false},{"x":379,"y":80,"on":false},{"x":339,"y":51,"on":true},{"x":372,"y":34,"on":false},{"x":432,"y":10,"on":false},{"x":456,"y":10,"on":true},{"x":489,"y":10,"on":false},{"x":561,"y":48,"on":false},{"x":626,"y":116,"on":false},{"x":651,"y":161,"on":true},{"x":668,"y":154,"on":true},{"x":668,"y":154,"on":false},{"x":649,"y":121,"on":false},{"x":612,"y":72,"on":false},{"x":558,"y":23,"on":false},{"x":490,"y":-10,"on":false},{"x":450,"y":-10,"on":true},{"x":412,"y":-10,"on":false},{"x":343,"y":15,"on":false},{"x":311,"y":33,"on":true},{"x":268,"y":9,"on":false},{"x":181,"y":-10,"on":false}], + [{"x":503,"y":312,"on":true},{"x":569,"y":340,"on":false},{"x":629,"y":393,"on":true},{"x":660,"y":420,"on":false},{"x":723,"y":507,"on":false},{"x":767,"y":608,"on":false},{"x":767,"y":656,"on":true},{"x":767,"y":678,"on":false},{"x":742,"y":706,"on":false},{"x":723,"y":706,"on":true},{"x":686,"y":706,"on":false},{"x":626,"y":638,"on":false},{"x":576,"y":525,"on":false},{"x":528,"y":384,"on":false}], + [{"x":136,"y":8,"on":true},{"x":180,"y":8,"on":false},{"x":237,"y":36,"on":false},{"x":258,"y":65,"on":true},{"x":222,"y":87,"on":false},{"x":148,"y":121,"on":false},{"x":108,"y":121,"on":true},{"x":81,"y":121,"on":false},{"x":29,"y":99,"on":false},{"x":29,"y":72,"on":true},{"x":29,"y":50,"on":false},{"x":65,"y":22,"on":false},{"x":116,"y":8,"on":false}] + ] + }, + "uni2113": { + "advanceWidth": 491, + "contours": [ + [{"x":292,"y":67,"on":true},{"x":325,"y":67,"on":false},{"x":366,"y":117,"on":false},{"x":369,"y":171,"on":true},{"x":439,"y":171,"on":true},{"x":436,"y":82,"on":false},{"x":360,"y":-9,"on":false},{"x":281,"y":-9,"on":true},{"x":212,"y":-9,"on":false},{"x":127,"y":78,"on":false},{"x":127,"y":172,"on":true},{"x":127,"y":268,"on":true},{"x":109,"y":262,"on":false},{"x":66,"y":249,"on":false},{"x":42,"y":242,"on":true},{"x":42,"y":314,"on":true},{"x":85,"y":326,"on":false},{"x":127,"y":341,"on":true},{"x":127,"y":563,"on":true},{"x":127,"y":638,"on":false},{"x":199,"y":723,"on":false},{"x":275,"y":723,"on":true},{"x":339,"y":723,"on":false},{"x":412,"y":642,"on":false},{"x":412,"y":569,"on":true},{"x":412,"y":474,"on":false},{"x":311,"y":338,"on":false},{"x":224,"y":300,"on":true},{"x":224,"y":172,"on":true},{"x":224,"y":122,"on":false},{"x":256,"y":67,"on":false}], + [{"x":327,"y":567,"on":true},{"x":327,"y":653,"on":false},{"x":276,"y":653,"on":true},{"x":246,"y":653,"on":false},{"x":224,"y":609,"on":false},{"x":224,"y":568,"on":true},{"x":224,"y":376,"on":true},{"x":276,"y":404,"on":false},{"x":327,"y":501,"on":false}] + ] + }, + "uni2114": { + "advanceWidth": 807, + "contours": [ + [{"x":565,"y":-10,"on":true},{"x":515,"y":-10,"on":false},{"x":444,"y":31,"on":false},{"x":419,"y":68,"on":true},{"x":412,"y":68,"on":true},{"x":395,"y":0,"on":true},{"x":317,"y":0,"on":true},{"x":317,"y":596,"on":true},{"x":176,"y":596,"on":true},{"x":176,"y":0,"on":true},{"x":74,"y":0,"on":true},{"x":74,"y":596,"on":true},{"x":4,"y":596,"on":true},{"x":4,"y":668,"on":true},{"x":74,"y":668,"on":true},{"x":74,"y":760,"on":true},{"x":176,"y":760,"on":true},{"x":176,"y":668,"on":true},{"x":317,"y":668,"on":true},{"x":317,"y":760,"on":true},{"x":419,"y":760,"on":true},{"x":419,"y":668,"on":true},{"x":579,"y":668,"on":true},{"x":579,"y":596,"on":true},{"x":419,"y":596,"on":true},{"x":419,"y":555,"on":true},{"x":419,"y":530,"on":false},{"x":416,"y":476,"on":false},{"x":415,"y":450,"on":true},{"x":419,"y":450,"on":true},{"x":444,"y":490,"on":false},{"x":516,"y":534,"on":false},{"x":565,"y":534,"on":true},{"x":657,"y":534,"on":false},{"x":759,"y":396,"on":false},{"x":759,"y":263,"on":true},{"x":759,"y":135,"on":false},{"x":657,"y":-10,"on":false}], + [{"x":540,"y":75,"on":true},{"x":596,"y":75,"on":false},{"x":655,"y":170,"on":false},{"x":655,"y":263,"on":true},{"x":655,"y":447,"on":false},{"x":539,"y":447,"on":true},{"x":472,"y":447,"on":false},{"x":419,"y":351,"on":false},{"x":419,"y":267,"on":true},{"x":419,"y":255,"on":true},{"x":420,"y":166,"on":false},{"x":476,"y":75,"on":false}] + ] + }, + "uni2115": { + "advanceWidth": 778, + "contours": [ + [{"x":97,"y":0,"on":true},{"x":97,"y":714,"on":true},{"x":173,"y":714,"on":true},{"x":628,"y":224,"on":true},{"x":628,"y":714,"on":true},{"x":681,"y":714,"on":true},{"x":681,"y":0,"on":true},{"x":604,"y":0,"on":true},{"x":150,"y":491,"on":true},{"x":150,"y":0,"on":true}], + [{"x":628,"y":53,"on":true},{"x":628,"y":151,"on":true},{"x":150,"y":661,"on":true},{"x":150,"y":562,"on":true}] + ] + }, + "uni2116": { + "advanceWidth": 943, + "contours": [ + [{"x":78,"y":0,"on":true},{"x":78,"y":714,"on":true},{"x":195,"y":714,"on":true},{"x":454,"y":161,"on":true},{"x":459,"y":161,"on":true},{"x":458,"y":172,"on":false},{"x":455,"y":233,"on":false},{"x":452,"y":309,"on":false},{"x":452,"y":342,"on":true},{"x":452,"y":714,"on":true},{"x":545,"y":714,"on":true},{"x":545,"y":0,"on":true},{"x":429,"y":0,"on":true},{"x":168,"y":556,"on":true},{"x":163,"y":556,"on":true},{"x":164,"y":544,"on":false},{"x":168,"y":479,"on":false},{"x":172,"y":402,"on":false},{"x":172,"y":371,"on":true},{"x":172,"y":0,"on":true}], + [{"x":755,"y":137,"on":true},{"x":690,"y":137,"on":false},{"x":610,"y":226,"on":false},{"x":610,"y":309,"on":true},{"x":610,"y":392,"on":false},{"x":689,"y":481,"on":false},{"x":757,"y":481,"on":true},{"x":820,"y":481,"on":false},{"x":902,"y":392,"on":false},{"x":902,"y":309,"on":true},{"x":902,"y":226,"on":false},{"x":822,"y":137,"on":false}], + [{"x":756,"y":201,"on":true},{"x":826,"y":201,"on":false},{"x":826,"y":309,"on":true},{"x":826,"y":416,"on":false},{"x":756,"y":416,"on":true},{"x":719,"y":416,"on":false},{"x":686,"y":364,"on":false},{"x":686,"y":309,"on":true},{"x":686,"y":254,"on":false},{"x":719,"y":201,"on":false}], + [{"x":628,"y":0,"on":true},{"x":628,"y":73,"on":true},{"x":882,"y":73,"on":true},{"x":882,"y":0,"on":true}] + ] + }, + "uni2117": { + "advanceWidth": 832, + "contours": [ + [{"x":415,"y":-10,"on":true},{"x":334,"y":-10,"on":false},{"x":199,"y":45,"on":false},{"x":101,"y":145,"on":false},{"x":48,"y":279,"on":false},{"x":48,"y":357,"on":true},{"x":48,"y":437,"on":false},{"x":103,"y":571,"on":false},{"x":203,"y":670,"on":false},{"x":337,"y":724,"on":false},{"x":416,"y":724,"on":true},{"x":494,"y":724,"on":false},{"x":627,"y":669,"on":false},{"x":727,"y":570,"on":false},{"x":783,"y":436,"on":false},{"x":783,"y":357,"on":true},{"x":783,"y":277,"on":false},{"x":728,"y":143,"on":false},{"x":629,"y":44,"on":false},{"x":495,"y":-10,"on":false}], + [{"x":416,"y":46,"on":true},{"x":502,"y":46,"on":false},{"x":641,"y":126,"on":false},{"x":721,"y":267,"on":false},{"x":721,"y":357,"on":true},{"x":721,"y":444,"on":false},{"x":642,"y":585,"on":false},{"x":504,"y":668,"on":false},{"x":415,"y":668,"on":true},{"x":326,"y":668,"on":false},{"x":187,"y":587,"on":false},{"x":108,"y":446,"on":false},{"x":108,"y":357,"on":true},{"x":108,"y":268,"on":false},{"x":188,"y":127,"on":false},{"x":328,"y":46,"on":false}], + [{"x":290,"y":140,"on":true},{"x":290,"y":574,"on":true},{"x":430,"y":574,"on":true},{"x":589,"y":574,"on":false},{"x":589,"y":439,"on":true},{"x":589,"y":372,"on":false},{"x":506,"y":298,"on":false},{"x":439,"y":298,"on":true},{"x":369,"y":298,"on":true},{"x":369,"y":140,"on":true}], + [{"x":368,"y":361,"on":true},{"x":427,"y":361,"on":true},{"x":464,"y":361,"on":false},{"x":508,"y":396,"on":false},{"x":508,"y":435,"on":true},{"x":508,"y":473,"on":false},{"x":469,"y":508,"on":false},{"x":426,"y":508,"on":true},{"x":368,"y":508,"on":true}] + ] + }, + "weierstrass": { + "advanceWidth": 836, + "contours": [ + [{"x":238,"y":647,"on":true},{"x":254,"y":625,"on":true},{"x":212,"y":586,"on":false},{"x":162,"y":507,"on":false},{"x":140,"y":410,"on":false},{"x":140,"y":345,"on":true},{"x":140,"y":316,"on":false},{"x":153,"y":264,"on":false},{"x":165,"y":238,"on":true},{"x":205,"y":292,"on":false},{"x":294,"y":384,"on":false},{"x":335,"y":419,"on":true},{"x":417,"y":489,"on":false},{"x":556,"y":549,"on":false},{"x":595,"y":549,"on":true},{"x":658,"y":549,"on":false},{"x":741,"y":482,"on":false},{"x":782,"y":372,"on":false},{"x":782,"y":306,"on":true},{"x":782,"y":251,"on":false},{"x":746,"y":139,"on":false},{"x":676,"y":46,"on":false},{"x":572,"y":-10,"on":false},{"x":503,"y":-10,"on":true},{"x":420,"y":-10,"on":false},{"x":328,"y":73,"on":false},{"x":328,"y":140,"on":true},{"x":328,"y":190,"on":false},{"x":370,"y":244,"on":false},{"x":408,"y":244,"on":true},{"x":432,"y":244,"on":false},{"x":462,"y":217,"on":false},{"x":462,"y":194,"on":true},{"x":462,"y":162,"on":false},{"x":420,"y":135,"on":false},{"x":394,"y":132,"on":true},{"x":391,"y":123,"on":false},{"x":391,"y":112,"on":true},{"x":391,"y":71,"on":false},{"x":455,"y":30,"on":false},{"x":495,"y":30,"on":true},{"x":546,"y":30,"on":false},{"x":612,"y":82,"on":false},{"x":652,"y":162,"on":false},{"x":671,"y":245,"on":false},{"x":677,"y":311,"on":false},{"x":677,"y":322,"on":true},{"x":677,"y":336,"on":false},{"x":671,"y":391,"on":false},{"x":649,"y":450,"on":false},{"x":603,"y":492,"on":false},{"x":564,"y":492,"on":true},{"x":518,"y":492,"on":false},{"x":412,"y":438,"on":false},{"x":360,"y":394,"on":true},{"x":312,"y":354,"on":false},{"x":222,"y":254,"on":false},{"x":185,"y":200,"on":true},{"x":207,"y":162,"on":false},{"x":260,"y":89,"on":false},{"x":308,"y":17,"on":false},{"x":339,"y":-56,"on":false},{"x":339,"y":-95,"on":true},{"x":339,"y":-159,"on":false},{"x":272,"y":-241,"on":false},{"x":218,"y":-241,"on":true},{"x":169,"y":-241,"on":false},{"x":90,"y":-193,"on":false},{"x":44,"y":-110,"on":false},{"x":44,"y":-56,"on":true},{"x":44,"y":-6,"on":false},{"x":80,"y":101,"on":false},{"x":107,"y":149,"on":true},{"x":82,"y":192,"on":false},{"x":49,"y":284,"on":false},{"x":49,"y":337,"on":true},{"x":49,"y":397,"on":false},{"x":90,"y":498,"on":false},{"x":151,"y":578,"on":false},{"x":215,"y":633,"on":false}], + [{"x":249,"y":-134,"on":true},{"x":249,"y":-93,"on":false},{"x":213,"y":-14,"on":false},{"x":158,"y":67,"on":false},{"x":131,"y":110,"on":true},{"x":109,"y":66,"on":false},{"x":85,"y":-16,"on":false},{"x":85,"y":-51,"on":true},{"x":85,"y":-98,"on":false},{"x":123,"y":-164,"on":false},{"x":177,"y":-199,"on":false},{"x":200,"y":-199,"on":true},{"x":222,"y":-199,"on":false},{"x":249,"y":-166,"on":false}] + ] + }, + "uni2119": { + "advanceWidth": 655, + "contours": [ + [{"x":97,"y":0,"on":true},{"x":97,"y":714,"on":true},{"x":356,"y":714,"on":true},{"x":484,"y":714,"on":false},{"x":604,"y":605,"on":false},{"x":604,"y":514,"on":true},{"x":604,"y":452,"on":false},{"x":538,"y":357,"on":false},{"x":430,"y":303,"on":false},{"x":369,"y":303,"on":true},{"x":270,"y":303,"on":true},{"x":270,"y":0,"on":true}], + [{"x":150,"y":53,"on":true},{"x":217,"y":53,"on":true},{"x":217,"y":661,"on":true},{"x":150,"y":661,"on":true}], + [{"x":270,"y":356,"on":true},{"x":409,"y":356,"on":true},{"x":409,"y":661,"on":true},{"x":270,"y":661,"on":true}], + [{"x":463,"y":373,"on":true},{"x":499,"y":390,"on":false},{"x":546,"y":454,"on":false},{"x":546,"y":514,"on":true},{"x":546,"y":621,"on":false},{"x":463,"y":649,"on":true}] + ] + }, + "uni211A": { + "advanceWidth": 781, + "contours": [ + [{"x":480,"y":-170,"on":true},{"x":373,"y":-10,"on":true},{"x":218,"y":-2,"on":false},{"x":61,"y":193,"on":false},{"x":61,"y":359,"on":true},{"x":61,"y":468,"on":false},{"x":136,"y":633,"on":false},{"x":283,"y":725,"on":false},{"x":392,"y":725,"on":true},{"x":499,"y":725,"on":false},{"x":645,"y":633,"on":false},{"x":720,"y":468,"on":false},{"x":720,"y":358,"on":true},{"x":720,"y":227,"on":false},{"x":629,"y":64,"on":false},{"x":556,"y":26,"on":true},{"x":768,"y":-170,"on":true}], + [{"x":391,"y":38,"on":true},{"x":468,"y":38,"on":false},{"x":523,"y":65,"on":true},{"x":523,"y":649,"on":true},{"x":495,"y":662,"on":false},{"x":430,"y":677,"on":false},{"x":392,"y":677,"on":true},{"x":314,"y":677,"on":false},{"x":258,"y":648,"on":true},{"x":258,"y":66,"on":true},{"x":313,"y":38,"on":false}], + [{"x":576,"y":101,"on":true},{"x":621,"y":142,"on":false},{"x":667,"y":273,"on":false},{"x":667,"y":358,"on":true},{"x":667,"y":443,"on":false},{"x":622,"y":573,"on":false},{"x":576,"y":614,"on":true}], + [{"x":205,"y":102,"on":true},{"x":205,"y":612,"on":true},{"x":159,"y":571,"on":false},{"x":114,"y":441,"on":false},{"x":114,"y":358,"on":true},{"x":114,"y":274,"on":false},{"x":159,"y":143,"on":false}], + [{"x":515,"y":-122,"on":true},{"x":639,"y":-122,"on":true},{"x":503,"y":4,"on":true},{"x":490,"y":0,"on":false},{"x":450,"y":-7,"on":false},{"x":435,"y":-8,"on":true}] + ] + }, + "uni211B": { + "advanceWidth": 872, + "contours": [ + [{"x":624,"y":-10,"on":true},{"x":592,"y":-10,"on":false},{"x":556,"y":14,"on":false},{"x":541,"y":49,"on":false},{"x":541,"y":66,"on":true},{"x":541,"y":93,"on":false},{"x":565,"y":162,"on":false},{"x":598,"y":232,"on":false},{"x":622,"y":293,"on":false},{"x":622,"y":314,"on":true},{"x":622,"y":328,"on":false},{"x":616,"y":344,"on":false},{"x":614,"y":348,"on":true},{"x":612,"y":348,"on":false},{"x":596,"y":344,"on":false},{"x":585,"y":344,"on":true},{"x":577,"y":344,"on":false},{"x":551,"y":354,"on":false},{"x":551,"y":368,"on":true},{"x":551,"y":382,"on":false},{"x":573,"y":388,"on":false},{"x":580,"y":388,"on":true},{"x":591,"y":388,"on":false},{"x":615,"y":377,"on":false},{"x":626,"y":369,"on":true},{"x":638,"y":372,"on":false},{"x":684,"y":396,"on":false},{"x":732,"y":442,"on":false},{"x":766,"y":509,"on":false},{"x":766,"y":554,"on":true},{"x":766,"y":648,"on":false},{"x":718,"y":680,"on":true},{"x":669,"y":654,"on":false},{"x":609,"y":576,"on":false},{"x":569,"y":477,"on":false},{"x":536,"y":360,"on":false},{"x":514,"y":295,"on":true},{"x":509,"y":278,"on":false},{"x":494,"y":238,"on":false},{"x":486,"y":221,"on":true},{"x":456,"y":157,"on":false},{"x":365,"y":53,"on":false},{"x":238,"y":-9,"on":false},{"x":153,"y":-9,"on":true},{"x":96,"y":-9,"on":false},{"x":31,"y":29,"on":false},{"x":3,"y":82,"on":false},{"x":-4,"y":128,"on":false},{"x":-4,"y":137,"on":true},{"x":-4,"y":177,"on":false},{"x":45,"y":232,"on":false},{"x":79,"y":232,"on":true},{"x":115,"y":231,"on":false},{"x":142,"y":193,"on":false},{"x":142,"y":178,"on":true},{"x":142,"y":146,"on":false},{"x":110,"y":118,"on":false},{"x":88,"y":115,"on":true},{"x":76,"y":114,"on":false},{"x":51,"y":113,"on":false},{"x":33,"y":102,"on":false},{"x":33,"y":86,"on":true},{"x":33,"y":82,"on":false},{"x":41,"y":57,"on":false},{"x":63,"y":29,"on":false},{"x":108,"y":9,"on":false},{"x":144,"y":9,"on":true},{"x":206,"y":9,"on":false},{"x":286,"y":76,"on":false},{"x":352,"y":201,"on":false},{"x":393,"y":289,"on":true},{"x":425,"y":356,"on":false},{"x":512,"y":508,"on":false},{"x":574,"y":584,"on":true},{"x":578,"y":590,"on":false},{"x":609,"y":627,"on":false},{"x":661,"y":672,"on":false},{"x":695,"y":692,"on":true},{"x":674,"y":700,"on":false},{"x":620,"y":706,"on":false},{"x":585,"y":706,"on":true},{"x":524,"y":706,"on":false},{"x":411,"y":682,"on":false},{"x":320,"y":646,"on":false},{"x":292,"y":630,"on":true},{"x":277,"y":621,"on":false},{"x":218,"y":577,"on":false},{"x":154,"y":512,"on":false},{"x":109,"y":434,"on":false},{"x":109,"y":392,"on":true},{"x":109,"y":351,"on":false},{"x":145,"y":311,"on":false},{"x":172,"y":311,"on":true},{"x":206,"y":311,"on":false},{"x":282,"y":357,"on":false},{"x":346,"y":439,"on":false},{"x":387,"y":548,"on":false},{"x":387,"y":611,"on":true},{"x":402,"y":611,"on":true},{"x":406,"y":594,"on":false},{"x":415,"y":546,"on":false},{"x":415,"y":518,"on":true},{"x":415,"y":481,"on":false},{"x":384,"y":401,"on":false},{"x":327,"y":331,"on":false},{"x":248,"y":288,"on":false},{"x":200,"y":288,"on":true},{"x":148,"y":288,"on":false},{"x":90,"y":340,"on":false},{"x":90,"y":392,"on":true},{"x":90,"y":435,"on":false},{"x":135,"y":516,"on":false},{"x":200,"y":585,"on":false},{"x":263,"y":634,"on":false},{"x":282,"y":645,"on":true},{"x":338,"y":678,"on":false},{"x":494,"y":724,"on":false},{"x":585,"y":724,"on":true},{"x":625,"y":724,"on":false},{"x":692,"y":713,"on":false},{"x":720,"y":704,"on":true},{"x":746,"y":716,"on":false},{"x":772,"y":722,"on":true},{"x":780,"y":705,"on":true},{"x":772,"y":703,"on":false},{"x":756,"y":697,"on":false},{"x":749,"y":694,"on":true},{"x":806,"y":669,"on":false},{"x":862,"y":590,"on":false},{"x":862,"y":550,"on":true},{"x":862,"y":486,"on":false},{"x":751,"y":382,"on":false},{"x":642,"y":356,"on":true},{"x":668,"y":336,"on":false},{"x":689,"y":293,"on":false},{"x":692,"y":259,"on":false},{"x":692,"y":251,"on":true},{"x":692,"y":222,"on":false},{"x":667,"y":148,"on":false},{"x":642,"y":80,"on":false},{"x":642,"y":58,"on":true},{"x":642,"y":44,"on":false},{"x":652,"y":24,"on":false},{"x":663,"y":24,"on":true},{"x":675,"y":24,"on":false},{"x":708,"y":50,"on":false},{"x":743,"y":90,"on":false},{"x":775,"y":131,"on":false},{"x":797,"y":162,"on":false},{"x":799,"y":167,"on":true},{"x":815,"y":158,"on":true},{"x":808,"y":148,"on":false},{"x":772,"y":95,"on":false},{"x":721,"y":34,"on":false},{"x":659,"y":-10,"on":false}] + ] + }, + "Rfraktur": { + "advanceWidth": 849, + "contours": [ + [{"x":200,"y":-9,"on":true},{"x":194,"y":-1,"on":false},{"x":166,"y":26,"on":false},{"x":134,"y":48,"on":false},{"x":119,"y":48,"on":true},{"x":95,"y":48,"on":false},{"x":63,"y":24,"on":false},{"x":40,"y":0,"on":true},{"x":24,"y":15,"on":true},{"x":46,"y":42,"on":false},{"x":98,"y":97,"on":false},{"x":146,"y":134,"on":false},{"x":162,"y":134,"on":true},{"x":176,"y":134,"on":false},{"x":208,"y":110,"on":false},{"x":236,"y":80,"on":false},{"x":244,"y":71,"on":true},{"x":266,"y":84,"on":false},{"x":289,"y":104,"on":true},{"x":299,"y":113,"on":false},{"x":323,"y":146,"on":false},{"x":345,"y":208,"on":false},{"x":359,"y":310,"on":false},{"x":359,"y":388,"on":true},{"x":359,"y":463,"on":false},{"x":326,"y":566,"on":false},{"x":274,"y":630,"on":false},{"x":217,"y":658,"on":false},{"x":193,"y":658,"on":true},{"x":172,"y":658,"on":false},{"x":127,"y":634,"on":false},{"x":97,"y":594,"on":false},{"x":97,"y":569,"on":true},{"x":97,"y":548,"on":false},{"x":127,"y":508,"on":false},{"x":165,"y":468,"on":false},{"x":195,"y":425,"on":false},{"x":195,"y":401,"on":true},{"x":195,"y":384,"on":false},{"x":168,"y":344,"on":false},{"x":129,"y":305,"on":false},{"x":92,"y":274,"on":false},{"x":81,"y":266,"on":true},{"x":65,"y":284,"on":true},{"x":75,"y":290,"on":false},{"x":101,"y":315,"on":false},{"x":120,"y":344,"on":false},{"x":120,"y":357,"on":true},{"x":120,"y":382,"on":false},{"x":92,"y":419,"on":false},{"x":55,"y":455,"on":false},{"x":27,"y":496,"on":false},{"x":27,"y":524,"on":true},{"x":27,"y":544,"on":false},{"x":53,"y":591,"on":false},{"x":86,"y":631,"on":false},{"x":96,"y":641,"on":true},{"x":109,"y":654,"on":false},{"x":153,"y":693,"on":false},{"x":214,"y":725,"on":false},{"x":252,"y":725,"on":true},{"x":293,"y":725,"on":false},{"x":366,"y":682,"on":false},{"x":418,"y":612,"on":false},{"x":429,"y":572,"on":true},{"x":448,"y":601,"on":false},{"x":504,"y":670,"on":false},{"x":580,"y":720,"on":false},{"x":629,"y":720,"on":true},{"x":664,"y":720,"on":false},{"x":702,"y":695,"on":false},{"x":719,"y":658,"on":false},{"x":723,"y":620,"on":false},{"x":723,"y":606,"on":true},{"x":723,"y":576,"on":true},{"x":723,"y":560,"on":false},{"x":734,"y":535,"on":false},{"x":747,"y":535,"on":true},{"x":758,"y":535,"on":false},{"x":792,"y":546,"on":false},{"x":803,"y":550,"on":true},{"x":812,"y":526,"on":true},{"x":759,"y":502,"on":false},{"x":669,"y":457,"on":false},{"x":619,"y":419,"on":true},{"x":636,"y":418,"on":false},{"x":680,"y":402,"on":false},{"x":713,"y":382,"on":false},{"x":713,"y":373,"on":true},{"x":713,"y":242,"on":false},{"x":738,"y":96,"on":false},{"x":775,"y":96,"on":true},{"x":790,"y":96,"on":false},{"x":822,"y":116,"on":false},{"x":829,"y":124,"on":true},{"x":843,"y":107,"on":true},{"x":701,"y":-9,"on":true},{"x":633,"y":113,"on":true},{"x":635,"y":120,"on":false},{"x":642,"y":178,"on":false},{"x":642,"y":221,"on":true},{"x":642,"y":288,"on":false},{"x":612,"y":348,"on":false},{"x":564,"y":364,"on":false},{"x":539,"y":364,"on":true},{"x":502,"y":364,"on":false},{"x":442,"y":350,"on":false},{"x":436,"y":349,"on":true},{"x":432,"y":324,"on":false},{"x":416,"y":248,"on":false},{"x":388,"y":168,"on":false},{"x":369,"y":136,"on":true},{"x":344,"y":112,"on":false},{"x":283,"y":57,"on":false},{"x":222,"y":8,"on":false}], + [{"x":441,"y":380,"on":true},{"x":441,"y":380,"on":false},{"x":475,"y":396,"on":false},{"x":529,"y":417,"on":false},{"x":558,"y":423,"on":true},{"x":695,"y":492,"on":true},{"x":668,"y":492,"on":false},{"x":640,"y":516,"on":false},{"x":630,"y":550,"on":false},{"x":630,"y":565,"on":true},{"x":630,"y":588,"on":true},{"x":630,"y":616,"on":false},{"x":608,"y":659,"on":false},{"x":580,"y":659,"on":true},{"x":560,"y":659,"on":false},{"x":514,"y":632,"on":false},{"x":472,"y":588,"on":false},{"x":446,"y":537,"on":false},{"x":447,"y":514,"on":true},{"x":448,"y":469,"on":false},{"x":442,"y":389,"on":false}] + ] + }, + "uni211D": { + "advanceWidth": 714, + "contours": [ + [{"x":97,"y":0,"on":true},{"x":97,"y":714,"on":true},{"x":356,"y":714,"on":true},{"x":484,"y":714,"on":false},{"x":604,"y":615,"on":false},{"x":604,"y":524,"on":true},{"x":604,"y":458,"on":false},{"x":537,"y":365,"on":false},{"x":476,"y":342,"on":true},{"x":699,"y":0,"on":true},{"x":504,"y":0,"on":true},{"x":313,"y":317,"on":true},{"x":270,"y":317,"on":true},{"x":270,"y":0,"on":true}], + [{"x":150,"y":53,"on":true},{"x":217,"y":53,"on":true},{"x":217,"y":661,"on":true},{"x":150,"y":661,"on":true}], + [{"x":270,"y":370,"on":true},{"x":409,"y":370,"on":true},{"x":409,"y":661,"on":true},{"x":270,"y":661,"on":true}], + [{"x":463,"y":387,"on":true},{"x":499,"y":404,"on":false},{"x":546,"y":464,"on":false},{"x":546,"y":524,"on":true},{"x":546,"y":579,"on":false},{"x":504,"y":636,"on":false},{"x":463,"y":649,"on":true}], + [{"x":531,"y":52,"on":true},{"x":605,"y":52,"on":true},{"x":430,"y":327,"on":true},{"x":400,"y":321,"on":false},{"x":369,"y":319,"on":true}] + ] + }, + "prescription": { + "advanceWidth": 581, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":258,"y":714,"on":true},{"x":388,"y":714,"on":false},{"x":512,"y":611,"on":false},{"x":512,"y":508,"on":true},{"x":512,"y":440,"on":false},{"x":444,"y":343,"on":false},{"x":383,"y":320,"on":true},{"x":429,"y":237,"on":true},{"x":477,"y":324,"on":true},{"x":570,"y":324,"on":true},{"x":474,"y":168,"on":true},{"x":571,"y":0,"on":true},{"x":472,"y":0,"on":true},{"x":417,"y":100,"on":true},{"x":360,"y":0,"on":true},{"x":267,"y":0,"on":true},{"x":372,"y":172,"on":true},{"x":301,"y":296,"on":true},{"x":189,"y":296,"on":true},{"x":189,"y":0,"on":true}], + [{"x":189,"y":381,"on":true},{"x":264,"y":381,"on":true},{"x":406,"y":381,"on":false},{"x":406,"y":506,"on":true},{"x":406,"y":570,"on":false},{"x":330,"y":625,"on":false},{"x":254,"y":625,"on":true},{"x":189,"y":625,"on":true}] + ] + }, + "uni211F": { + "advanceWidth": 553, + "contours": [ + [{"x":263,"y":714,"on":true},{"x":308,"y":714,"on":false},{"x":345,"y":708,"on":true},{"x":359,"y":767,"on":true},{"x":157,"y":814,"on":true},{"x":172,"y":869,"on":true},{"x":427,"y":805,"on":true},{"x":400,"y":693,"on":true},{"x":513,"y":649,"on":false},{"x":513,"y":509,"on":true},{"x":513,"y":432,"on":false},{"x":440,"y":340,"on":false},{"x":385,"y":318,"on":true},{"x":565,"y":0,"on":true},{"x":447,"y":0,"on":true},{"x":301,"y":273,"on":true},{"x":202,"y":-145,"on":true},{"x":145,"y":-145,"on":true},{"x":179,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true}], + [{"x":259,"y":624,"on":true},{"x":191,"y":624,"on":true},{"x":191,"y":377,"on":true},{"x":265,"y":377,"on":true},{"x":265,"y":377,"on":false},{"x":266,"y":377,"on":false},{"x":267,"y":377,"on":true},{"x":324,"y":617,"on":true},{"x":297,"y":624,"on":false}], + [{"x":406,"y":505,"on":true},{"x":406,"y":562,"on":false},{"x":376,"y":591,"on":true},{"x":328,"y":385,"on":true},{"x":406,"y":409,"on":false}], + [{"x":191,"y":290,"on":true},{"x":191,"y":51,"on":true},{"x":247,"y":290,"on":true}] + ] + }, + "uni2120": { + "advanceWidth": 753, + "contours": [ + [{"x":144,"y":356,"on":true},{"x":116,"y":356,"on":false},{"x":63,"y":366,"on":false},{"x":46,"y":375,"on":true},{"x":46,"y":430,"on":true},{"x":66,"y":421,"on":false},{"x":119,"y":407,"on":false},{"x":146,"y":407,"on":true},{"x":180,"y":407,"on":false},{"x":217,"y":432,"on":false},{"x":217,"y":456,"on":true},{"x":217,"y":478,"on":false},{"x":184,"y":504,"on":false},{"x":147,"y":517,"on":true},{"x":106,"y":533,"on":false},{"x":47,"y":578,"on":false},{"x":47,"y":625,"on":true},{"x":47,"y":672,"on":false},{"x":111,"y":721,"on":false},{"x":168,"y":721,"on":true},{"x":196,"y":721,"on":false},{"x":247,"y":710,"on":false},{"x":268,"y":700,"on":true},{"x":251,"y":650,"on":true},{"x":233,"y":659,"on":false},{"x":191,"y":672,"on":false},{"x":167,"y":672,"on":true},{"x":107,"y":672,"on":false},{"x":107,"y":625,"on":true},{"x":107,"y":601,"on":false},{"x":143,"y":578,"on":false},{"x":182,"y":563,"on":true},{"x":230,"y":544,"on":false},{"x":278,"y":501,"on":false},{"x":278,"y":459,"on":true},{"x":278,"y":408,"on":false},{"x":205,"y":356,"on":false}], + [{"x":332,"y":362,"on":true},{"x":332,"y":714,"on":true},{"x":422,"y":714,"on":true},{"x":510,"y":447,"on":true},{"x":601,"y":714,"on":true},{"x":689,"y":714,"on":true},{"x":689,"y":362,"on":true},{"x":627,"y":362,"on":true},{"x":627,"y":559,"on":true},{"x":627,"y":572,"on":false},{"x":628,"y":617,"on":false},{"x":629,"y":631,"on":true},{"x":626,"y":631,"on":true},{"x":531,"y":362,"on":true},{"x":481,"y":362,"on":true},{"x":391,"y":631,"on":true},{"x":388,"y":631,"on":true},{"x":389,"y":614,"on":false},{"x":390,"y":574,"on":false},{"x":390,"y":563,"on":true},{"x":390,"y":362,"on":true}] + ] + }, + "uni2121": { + "advanceWidth": 766, + "contours": [ + [{"x":109,"y":362,"on":true},{"x":109,"y":658,"on":true},{"x":14,"y":658,"on":true},{"x":14,"y":714,"on":true},{"x":267,"y":714,"on":true},{"x":267,"y":658,"on":true},{"x":171,"y":658,"on":true},{"x":171,"y":362,"on":true}], + [{"x":298,"y":362,"on":true},{"x":298,"y":714,"on":true},{"x":496,"y":714,"on":true},{"x":496,"y":659,"on":true},{"x":360,"y":659,"on":true},{"x":360,"y":571,"on":true},{"x":485,"y":571,"on":true},{"x":485,"y":516,"on":true},{"x":360,"y":516,"on":true},{"x":360,"y":417,"on":true},{"x":496,"y":417,"on":true},{"x":496,"y":362,"on":true}], + [{"x":553,"y":362,"on":true},{"x":553,"y":714,"on":true},{"x":614,"y":714,"on":true},{"x":614,"y":418,"on":true},{"x":747,"y":418,"on":true},{"x":747,"y":362,"on":true}] + ] + }, + "trademark": { + "advanceWidth": 725, + "contours": [ + [{"x":304,"y":362,"on":true},{"x":304,"y":714,"on":true},{"x":395,"y":714,"on":true},{"x":483,"y":447,"on":true},{"x":574,"y":714,"on":true},{"x":661,"y":714,"on":true},{"x":661,"y":362,"on":true},{"x":599,"y":362,"on":true},{"x":599,"y":562,"on":true},{"x":599,"y":572,"on":false},{"x":601,"y":618,"on":false},{"x":602,"y":631,"on":true},{"x":598,"y":631,"on":true},{"x":504,"y":362,"on":true},{"x":454,"y":362,"on":true},{"x":364,"y":631,"on":true},{"x":360,"y":631,"on":true},{"x":361,"y":614,"on":false},{"x":363,"y":574,"on":false},{"x":363,"y":566,"on":true},{"x":363,"y":362,"on":true}], + [{"x":109,"y":362,"on":true},{"x":109,"y":658,"on":true},{"x":14,"y":658,"on":true},{"x":14,"y":714,"on":true},{"x":267,"y":714,"on":true},{"x":267,"y":658,"on":true},{"x":171,"y":658,"on":true},{"x":171,"y":362,"on":true}] + ] + }, + "uni2123": { + "advanceWidth": 562, + "contours": [ + [{"x":322,"y":762,"on":true},{"x":122,"y":815,"on":true},{"x":138,"y":869,"on":true},{"x":391,"y":798,"on":true},{"x":246,"y":251,"on":true},{"x":256,"y":218,"on":false},{"x":274,"y":141,"on":false},{"x":279,"y":110,"on":true},{"x":284,"y":144,"on":false},{"x":304,"y":227,"on":false},{"x":315,"y":263,"on":true},{"x":450,"y":714,"on":true},{"x":559,"y":714,"on":true},{"x":336,"y":0,"on":true},{"x":222,"y":0,"on":true},{"x":199,"y":74,"on":true},{"x":141,"y":-145,"on":true},{"x":83,"y":-145,"on":true},{"x":167,"y":175,"on":true},{"x":0,"y":714,"on":true},{"x":109,"y":714,"on":true},{"x":215,"y":356,"on":true}] + ] + }, + "uni2124": { + "advanceWidth": 630, + "contours": [ + [{"x":38,"y":0,"on":true},{"x":38,"y":53,"on":true},{"x":404,"y":661,"on":true},{"x":70,"y":661,"on":true},{"x":70,"y":714,"on":true},{"x":591,"y":714,"on":true},{"x":591,"y":661,"on":true},{"x":232,"y":53,"on":true},{"x":581,"y":53,"on":true},{"x":581,"y":0,"on":true}], + [{"x":98,"y":53,"on":true},{"x":171,"y":53,"on":true},{"x":533,"y":661,"on":true},{"x":462,"y":661,"on":true}] + ] + }, + "uni2125": { + "advanceWidth": 512, + "contours": [ + [{"x":439,"y":467,"on":true},{"x":439,"y":397,"on":true},{"x":234,"y":184,"on":true},{"x":352,"y":181,"on":false},{"x":464,"y":78,"on":false},{"x":464,"y":-16,"on":true},{"x":464,"y":-82,"on":false},{"x":406,"y":-184,"on":false},{"x":292,"y":-241,"on":false},{"x":209,"y":-240,"on":true},{"x":156,"y":-240,"on":false},{"x":63,"y":-223,"on":false},{"x":24,"y":-205,"on":true},{"x":24,"y":-112,"on":true},{"x":68,"y":-134,"on":false},{"x":161,"y":-154,"on":false},{"x":202,"y":-154,"on":true},{"x":285,"y":-154,"on":false},{"x":360,"y":-77,"on":false},{"x":360,"y":-15,"on":true},{"x":360,"y":45,"on":false},{"x":271,"y":108,"on":false},{"x":169,"y":108,"on":true},{"x":111,"y":108,"on":true},{"x":111,"y":184,"on":true},{"x":295,"y":379,"on":true},{"x":43,"y":379,"on":true},{"x":43,"y":467,"on":true},{"x":147,"y":467,"on":true},{"x":297,"y":638,"on":true},{"x":43,"y":638,"on":true},{"x":43,"y":726,"on":true},{"x":439,"y":726,"on":true},{"x":439,"y":657,"on":true},{"x":265,"y":467,"on":true}] + ] + }, + "Omega": { + "advanceWidth": 705, + "references": [ + {"glyph":"uni03A9","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2127": { + "advanceWidth": 694, + "references": [ + {"glyph":"Omega","x":699,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2128": { + "advanceWidth": 586, + "contours": [ + [{"x":207,"y":-113,"on":true},{"x":184,"y":-113,"on":false},{"x":132,"y":-106,"on":false},{"x":109,"y":-96,"on":true},{"x":109,"y":-38,"on":false},{"x":100,"y":11,"on":false},{"x":78,"y":11,"on":true},{"x":64,"y":11,"on":false},{"x":38,"y":-2,"on":false},{"x":23,"y":-11,"on":true},{"x":11,"y":8,"on":true},{"x":26,"y":18,"on":false},{"x":70,"y":46,"on":false},{"x":125,"y":67,"on":false},{"x":154,"y":67,"on":true},{"x":172,"y":67,"on":false},{"x":199,"y":53,"on":false},{"x":199,"y":31,"on":true},{"x":199,"y":16,"on":false},{"x":200,"y":-14,"on":false},{"x":201,"y":-32,"on":true},{"x":204,"y":-62,"on":false},{"x":232,"y":-77,"on":false},{"x":255,"y":-77,"on":true},{"x":303,"y":-77,"on":false},{"x":370,"y":-39,"on":false},{"x":411,"y":25,"on":false},{"x":434,"y":100,"on":false},{"x":442,"y":175,"on":false},{"x":442,"y":206,"on":true},{"x":442,"y":275,"on":false},{"x":356,"y":350,"on":false},{"x":286,"y":350,"on":true},{"x":252,"y":350,"on":false},{"x":202,"y":334,"on":false},{"x":191,"y":328,"on":true},{"x":179,"y":341,"on":true},{"x":226,"y":406,"on":true},{"x":248,"y":407,"on":false},{"x":303,"y":433,"on":false},{"x":353,"y":477,"on":false},{"x":385,"y":535,"on":false},{"x":385,"y":568,"on":true},{"x":385,"y":596,"on":false},{"x":347,"y":629,"on":false},{"x":289,"y":629,"on":true},{"x":277,"y":629,"on":false},{"x":229,"y":624,"on":false},{"x":181,"y":620,"on":false},{"x":168,"y":620,"on":true},{"x":132,"y":620,"on":false},{"x":99,"y":633,"on":false},{"x":91,"y":652,"on":false},{"x":91,"y":661,"on":true},{"x":166,"y":769,"on":true},{"x":185,"y":757,"on":true},{"x":180,"y":752,"on":false},{"x":171,"y":735,"on":false},{"x":171,"y":727,"on":true},{"x":171,"y":716,"on":false},{"x":209,"y":703,"on":false},{"x":256,"y":703,"on":true},{"x":294,"y":703,"on":false},{"x":342,"y":710,"on":false},{"x":375,"y":710,"on":true},{"x":424,"y":710,"on":false},{"x":472,"y":668,"on":false},{"x":472,"y":618,"on":true},{"x":472,"y":579,"on":false},{"x":441,"y":514,"on":false},{"x":395,"y":463,"on":false},{"x":347,"y":426,"on":false},{"x":312,"y":406,"on":false},{"x":308,"y":404,"on":true},{"x":314,"y":405,"on":false},{"x":340,"y":408,"on":false},{"x":368,"y":411,"on":false},{"x":377,"y":411,"on":true},{"x":425,"y":411,"on":false},{"x":487,"y":380,"on":false},{"x":523,"y":333,"on":false},{"x":537,"y":282,"on":false},{"x":537,"y":263,"on":true},{"x":537,"y":152,"on":false},{"x":481,"y":6,"on":false},{"x":387,"y":-78,"on":false},{"x":269,"y":-113,"on":false}] + ] + }, + "uni2129": { + "advanceWidth": 329, + "references": [ + {"glyph":"iota","x":329,"y":537,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni212A": { + "advanceWidth": 571, + "references": [ + {"glyph":"K","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni212B": { + "advanceWidth": 587, + "references": [ + {"glyph":"Aring","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni212C": { + "advanceWidth": 838, + "contours": [ + [{"x":153,"y":-9,"on":true},{"x":102,"y":-9,"on":false},{"x":42,"y":21,"on":false},{"x":12,"y":67,"on":false},{"x":2,"y":117,"on":false},{"x":2,"y":137,"on":true},{"x":2,"y":177,"on":false},{"x":51,"y":232,"on":false},{"x":85,"y":232,"on":true},{"x":121,"y":231,"on":false},{"x":148,"y":193,"on":false},{"x":148,"y":178,"on":true},{"x":148,"y":146,"on":false},{"x":116,"y":118,"on":false},{"x":94,"y":115,"on":true},{"x":82,"y":114,"on":false},{"x":57,"y":113,"on":false},{"x":39,"y":102,"on":false},{"x":39,"y":86,"on":true},{"x":39,"y":82,"on":false},{"x":45,"y":57,"on":false},{"x":65,"y":29,"on":false},{"x":108,"y":9,"on":false},{"x":144,"y":9,"on":true},{"x":206,"y":9,"on":false},{"x":295,"y":90,"on":false},{"x":370,"y":229,"on":false},{"x":412,"y":317,"on":true},{"x":434,"y":362,"on":false},{"x":476,"y":445,"on":false},{"x":532,"y":534,"on":false},{"x":574,"y":584,"on":true},{"x":578,"y":590,"on":false},{"x":609,"y":627,"on":false},{"x":661,"y":672,"on":false},{"x":695,"y":692,"on":true},{"x":674,"y":700,"on":false},{"x":620,"y":706,"on":false},{"x":585,"y":706,"on":true},{"x":524,"y":706,"on":false},{"x":411,"y":682,"on":false},{"x":320,"y":646,"on":false},{"x":292,"y":630,"on":true},{"x":277,"y":621,"on":false},{"x":224,"y":585,"on":false},{"x":167,"y":532,"on":false},{"x":128,"y":462,"on":false},{"x":128,"y":420,"on":true},{"x":128,"y":379,"on":false},{"x":164,"y":339,"on":false},{"x":191,"y":339,"on":true},{"x":226,"y":339,"on":false},{"x":301,"y":385,"on":false},{"x":365,"y":467,"on":false},{"x":406,"y":576,"on":false},{"x":406,"y":639,"on":true},{"x":421,"y":639,"on":true},{"x":426,"y":622,"on":false},{"x":434,"y":574,"on":false},{"x":434,"y":546,"on":true},{"x":434,"y":509,"on":false},{"x":403,"y":429,"on":false},{"x":346,"y":359,"on":false},{"x":267,"y":316,"on":false},{"x":219,"y":316,"on":true},{"x":167,"y":316,"on":false},{"x":109,"y":368,"on":false},{"x":109,"y":420,"on":true},{"x":109,"y":463,"on":false},{"x":148,"y":536,"on":false},{"x":206,"y":594,"on":false},{"x":263,"y":634,"on":false},{"x":282,"y":645,"on":true},{"x":338,"y":678,"on":false},{"x":494,"y":724,"on":false},{"x":585,"y":724,"on":true},{"x":625,"y":724,"on":false},{"x":692,"y":713,"on":false},{"x":720,"y":704,"on":true},{"x":746,"y":716,"on":false},{"x":772,"y":722,"on":true},{"x":780,"y":705,"on":true},{"x":772,"y":703,"on":false},{"x":756,"y":697,"on":false},{"x":749,"y":694,"on":true},{"x":796,"y":674,"on":false},{"x":835,"y":608,"on":false},{"x":835,"y":568,"on":true},{"x":835,"y":521,"on":false},{"x":780,"y":449,"on":false},{"x":698,"y":397,"on":false},{"x":659,"y":379,"on":true},{"x":669,"y":376,"on":false},{"x":706,"y":356,"on":false},{"x":744,"y":320,"on":false},{"x":770,"y":263,"on":false},{"x":770,"y":222,"on":true},{"x":770,"y":183,"on":false},{"x":726,"y":102,"on":false},{"x":654,"y":33,"on":false},{"x":572,"y":-9,"on":false},{"x":533,"y":-9,"on":true},{"x":504,"y":-9,"on":false},{"x":472,"y":16,"on":false},{"x":460,"y":52,"on":false},{"x":460,"y":68,"on":true},{"x":460,"y":78,"on":false},{"x":471,"y":122,"on":false},{"x":516,"y":182,"on":false},{"x":565,"y":216,"on":true},{"x":577,"y":199,"on":true},{"x":577,"y":199,"on":false},{"x":548,"y":179,"on":false},{"x":511,"y":142,"on":false},{"x":482,"y":94,"on":false},{"x":482,"y":67,"on":true},{"x":482,"y":38,"on":false},{"x":509,"y":14,"on":false},{"x":522,"y":14,"on":true},{"x":548,"y":14,"on":false},{"x":603,"y":71,"on":false},{"x":630,"y":124,"on":true},{"x":648,"y":160,"on":false},{"x":671,"y":240,"on":false},{"x":671,"y":296,"on":true},{"x":671,"y":326,"on":false},{"x":659,"y":356,"on":false},{"x":643,"y":368,"on":false},{"x":638,"y":370,"on":true},{"x":624,"y":363,"on":false},{"x":592,"y":357,"on":false},{"x":586,"y":357,"on":true},{"x":578,"y":357,"on":false},{"x":558,"y":362,"on":false},{"x":558,"y":371,"on":true},{"x":558,"y":386,"on":false},{"x":591,"y":393,"on":false},{"x":599,"y":393,"on":true},{"x":615,"y":393,"on":false},{"x":638,"y":388,"on":false},{"x":643,"y":387,"on":true},{"x":663,"y":396,"on":false},{"x":712,"y":454,"on":false},{"x":747,"y":540,"on":false},{"x":747,"y":590,"on":true},{"x":747,"y":611,"on":false},{"x":738,"y":662,"on":false},{"x":718,"y":680,"on":true},{"x":669,"y":654,"on":false},{"x":609,"y":576,"on":false},{"x":569,"y":477,"on":false},{"x":536,"y":360,"on":false},{"x":514,"y":295,"on":true},{"x":509,"y":278,"on":false},{"x":494,"y":238,"on":false},{"x":486,"y":221,"on":true},{"x":456,"y":157,"on":false},{"x":365,"y":53,"on":false},{"x":238,"y":-9,"on":false}] + ] + }, + "uni212D": { + "advanceWidth": 672, + "contours": [ + [{"x":383,"y":-8,"on":true},{"x":327,"y":-8,"on":false},{"x":213,"y":34,"on":false},{"x":118,"y":115,"on":false},{"x":61,"y":232,"on":false},{"x":61,"y":307,"on":true},{"x":61,"y":388,"on":false},{"x":88,"y":496,"on":false},{"x":113,"y":548,"on":true},{"x":140,"y":566,"on":false},{"x":201,"y":603,"on":false},{"x":260,"y":634,"on":false},{"x":282,"y":644,"on":true},{"x":307,"y":625,"on":true},{"x":324,"y":637,"on":false},{"x":384,"y":667,"on":false},{"x":452,"y":698,"on":false},{"x":508,"y":721,"on":false},{"x":521,"y":725,"on":true},{"x":523,"y":718,"on":false},{"x":537,"y":680,"on":false},{"x":556,"y":638,"on":false},{"x":579,"y":607,"on":false},{"x":590,"y":607,"on":true},{"x":604,"y":607,"on":false},{"x":626,"y":618,"on":true},{"x":634,"y":596,"on":true},{"x":618,"y":588,"on":false},{"x":572,"y":569,"on":false},{"x":530,"y":557,"on":false},{"x":520,"y":557,"on":true},{"x":511,"y":557,"on":false},{"x":478,"y":592,"on":false},{"x":446,"y":640,"on":false},{"x":439,"y":658,"on":true},{"x":432,"y":657,"on":false},{"x":407,"y":645,"on":false},{"x":386,"y":618,"on":false},{"x":386,"y":594,"on":true},{"x":386,"y":566,"on":false},{"x":400,"y":506,"on":false},{"x":415,"y":444,"on":false},{"x":415,"y":413,"on":true},{"x":415,"y":370,"on":false},{"x":360,"y":307,"on":false},{"x":274,"y":269,"on":false},{"x":227,"y":264,"on":true},{"x":223,"y":288,"on":true},{"x":227,"y":288,"on":false},{"x":256,"y":298,"on":false},{"x":291,"y":319,"on":false},{"x":316,"y":357,"on":false},{"x":316,"y":386,"on":true},{"x":316,"y":428,"on":false},{"x":298,"y":494,"on":false},{"x":281,"y":544,"on":false},{"x":281,"y":566,"on":true},{"x":281,"y":590,"on":false},{"x":293,"y":604,"on":true},{"x":279,"y":604,"on":false},{"x":232,"y":590,"on":false},{"x":184,"y":544,"on":false},{"x":151,"y":452,"on":false},{"x":151,"y":374,"on":true},{"x":151,"y":276,"on":false},{"x":234,"y":138,"on":false},{"x":384,"y":66,"on":false},{"x":483,"y":66,"on":true},{"x":487,"y":66,"on":false},{"x":532,"y":86,"on":false},{"x":591,"y":116,"on":false},{"x":616,"y":129,"on":true},{"x":624,"y":108,"on":true},{"x":462,"y":-1,"on":true},{"x":444,"y":-5,"on":false},{"x":402,"y":-8,"on":false}] + ] + }, + "estimated": { + "advanceWidth": 619, + "contours": [ + [{"x":309,"y":-17,"on":true},{"x":224,"y":-17,"on":false},{"x":109,"y":61,"on":false},{"x":50,"y":187,"on":false},{"x":50,"y":259,"on":true},{"x":50,"y":331,"on":false},{"x":96,"y":435,"on":false},{"x":171,"y":503,"on":false},{"x":263,"y":535,"on":false},{"x":309,"y":535,"on":true},{"x":382,"y":535,"on":false},{"x":500,"y":468,"on":false},{"x":568,"y":344,"on":false},{"x":568,"y":259,"on":true},{"x":164,"y":259,"on":true},{"x":164,"y":85,"on":true},{"x":186,"y":62,"on":false},{"x":264,"y":25,"on":false},{"x":309,"y":25,"on":true},{"x":382,"y":25,"on":false},{"x":468,"y":85,"on":false},{"x":502,"y":139,"on":true},{"x":537,"y":119,"on":true},{"x":514,"y":82,"on":false},{"x":455,"y":20,"on":false},{"x":371,"y":-17,"on":false}], + [{"x":455,"y":301,"on":true},{"x":455,"y":436,"on":true},{"x":436,"y":456,"on":false},{"x":360,"y":494,"on":false},{"x":308,"y":494,"on":true},{"x":258,"y":494,"on":false},{"x":187,"y":460,"on":false},{"x":164,"y":437,"on":true},{"x":164,"y":301,"on":true}] + ] + }, + "uni212F": { + "advanceWidth": 462, + "contours": [ + [{"x":189,"y":-10,"on":true},{"x":151,"y":-10,"on":false},{"x":102,"y":17,"on":false},{"x":74,"y":58,"on":false},{"x":63,"y":102,"on":false},{"x":63,"y":118,"on":true},{"x":63,"y":146,"on":false},{"x":74,"y":182,"on":false},{"x":83,"y":203,"on":true},{"x":39,"y":150,"on":true},{"x":24,"y":163,"on":true},{"x":32,"y":173,"on":false},{"x":65,"y":213,"on":false},{"x":98,"y":251,"on":false},{"x":104,"y":258,"on":true},{"x":159,"y":323,"on":false},{"x":294,"y":401,"on":false},{"x":361,"y":401,"on":true},{"x":398,"y":401,"on":false},{"x":431,"y":375,"on":false},{"x":441,"y":342,"on":false},{"x":441,"y":332,"on":true},{"x":441,"y":309,"on":false},{"x":418,"y":251,"on":false},{"x":360,"y":193,"on":false},{"x":258,"y":143,"on":false},{"x":179,"y":128,"on":true},{"x":172,"y":113,"on":false},{"x":162,"y":73,"on":false},{"x":162,"y":54,"on":true},{"x":162,"y":35,"on":false},{"x":176,"y":8,"on":false},{"x":193,"y":8,"on":true},{"x":222,"y":8,"on":false},{"x":300,"y":51,"on":false},{"x":382,"y":127,"on":false},{"x":417,"y":174,"on":true},{"x":439,"y":174,"on":true},{"x":408,"y":132,"on":false},{"x":327,"y":47,"on":false},{"x":235,"y":-10,"on":false}], + [{"x":190,"y":149,"on":true},{"x":249,"y":168,"on":false},{"x":325,"y":228,"on":false},{"x":368,"y":292,"on":false},{"x":385,"y":344,"on":false},{"x":385,"y":356,"on":true},{"x":385,"y":383,"on":false},{"x":359,"y":383,"on":true},{"x":334,"y":383,"on":false},{"x":284,"y":333,"on":false},{"x":239,"y":258,"on":false},{"x":202,"y":179,"on":false}] + ] + }, + "uni2130": { + "advanceWidth": 603, + "contours": [ + [{"x":226,"y":-7,"on":true},{"x":165,"y":-7,"on":false},{"x":76,"y":45,"on":false},{"x":28,"y":137,"on":false},{"x":28,"y":196,"on":true},{"x":28,"y":257,"on":false},{"x":97,"y":361,"on":false},{"x":210,"y":430,"on":false},{"x":277,"y":440,"on":true},{"x":264,"y":454,"on":false},{"x":235,"y":506,"on":false},{"x":235,"y":548,"on":true},{"x":235,"y":592,"on":false},{"x":294,"y":675,"on":false},{"x":394,"y":728,"on":false},{"x":458,"y":728,"on":true},{"x":506,"y":728,"on":false},{"x":566,"y":698,"on":false},{"x":600,"y":652,"on":false},{"x":613,"y":602,"on":false},{"x":613,"y":582,"on":true},{"x":613,"y":558,"on":false},{"x":589,"y":501,"on":false},{"x":541,"y":460,"on":false},{"x":504,"y":460,"on":true},{"x":470,"y":460,"on":false},{"x":434,"y":501,"on":false},{"x":434,"y":530,"on":true},{"x":434,"y":559,"on":false},{"x":469,"y":619,"on":false},{"x":514,"y":637,"on":true},{"x":519,"y":627,"on":true},{"x":500,"y":610,"on":false},{"x":461,"y":562,"on":false},{"x":461,"y":531,"on":true},{"x":461,"y":503,"on":false},{"x":487,"y":478,"on":false},{"x":506,"y":478,"on":true},{"x":540,"y":478,"on":false},{"x":589,"y":533,"on":false},{"x":589,"y":584,"on":true},{"x":589,"y":628,"on":false},{"x":556,"y":679,"on":false},{"x":510,"y":701,"on":false},{"x":490,"y":701,"on":true},{"x":443,"y":701,"on":false},{"x":368,"y":647,"on":false},{"x":325,"y":550,"on":false},{"x":325,"y":483,"on":true},{"x":325,"y":460,"on":false},{"x":331,"y":443,"on":true},{"x":358,"y":442,"on":false},{"x":411,"y":433,"on":false},{"x":446,"y":415,"on":false},{"x":446,"y":400,"on":true},{"x":446,"y":384,"on":false},{"x":418,"y":374,"on":false},{"x":401,"y":374,"on":true},{"x":382,"y":374,"on":false},{"x":325,"y":394,"on":false},{"x":304,"y":415,"on":true},{"x":269,"y":404,"on":false},{"x":204,"y":350,"on":false},{"x":153,"y":272,"on":false},{"x":123,"y":182,"on":false},{"x":123,"y":135,"on":true},{"x":123,"y":82,"on":false},{"x":155,"y":29,"on":false},{"x":206,"y":11,"on":false},{"x":234,"y":11,"on":true},{"x":274,"y":11,"on":false},{"x":351,"y":42,"on":false},{"x":414,"y":96,"on":false},{"x":452,"y":168,"on":false},{"x":452,"y":208,"on":true},{"x":452,"y":245,"on":false},{"x":416,"y":284,"on":false},{"x":389,"y":284,"on":true},{"x":360,"y":284,"on":false},{"x":300,"y":230,"on":false},{"x":264,"y":140,"on":false},{"x":271,"y":88,"on":true},{"x":253,"y":84,"on":true},{"x":249,"y":102,"on":false},{"x":247,"y":138,"on":false},{"x":247,"y":156,"on":true},{"x":247,"y":196,"on":false},{"x":284,"y":262,"on":false},{"x":347,"y":302,"on":false},{"x":387,"y":302,"on":true},{"x":424,"y":302,"on":false},{"x":459,"y":267,"on":false},{"x":470,"y":222,"on":false},{"x":470,"y":208,"on":true},{"x":470,"y":163,"on":false},{"x":430,"y":84,"on":false},{"x":361,"y":26,"on":false},{"x":273,"y":-7,"on":false}], + [{"x":396,"y":390,"on":true},{"x":428,"y":390,"on":false},{"x":428,"y":400,"on":true},{"x":428,"y":408,"on":false},{"x":391,"y":420,"on":false},{"x":380,"y":422,"on":true},{"x":371,"y":424,"on":false},{"x":348,"y":424,"on":false},{"x":341,"y":423,"on":true},{"x":357,"y":404,"on":false},{"x":388,"y":390,"on":false}] + ] + }, + "uni2131": { + "advanceWidth": 824, + "contours": [ + [{"x":210,"y":309,"on":true},{"x":177,"y":309,"on":false},{"x":138,"y":335,"on":false},{"x":121,"y":372,"on":false},{"x":116,"y":408,"on":false},{"x":116,"y":418,"on":true},{"x":116,"y":451,"on":false},{"x":144,"y":533,"on":false},{"x":202,"y":616,"on":false},{"x":294,"y":686,"on":false},{"x":422,"y":729,"on":false},{"x":505,"y":729,"on":true},{"x":556,"y":729,"on":false},{"x":620,"y":715,"on":false},{"x":666,"y":698,"on":false},{"x":712,"y":684,"on":false},{"x":746,"y":684,"on":true},{"x":783,"y":684,"on":false},{"x":818,"y":702,"on":false},{"x":831,"y":716,"on":true},{"x":848,"y":706,"on":true},{"x":848,"y":706,"on":false},{"x":832,"y":678,"on":false},{"x":800,"y":641,"on":false},{"x":753,"y":613,"on":false},{"x":723,"y":613,"on":true},{"x":685,"y":613,"on":false},{"x":617,"y":637,"on":false},{"x":550,"y":670,"on":false},{"x":480,"y":694,"on":false},{"x":440,"y":694,"on":true},{"x":386,"y":694,"on":false},{"x":277,"y":648,"on":false},{"x":188,"y":569,"on":false},{"x":134,"y":468,"on":false},{"x":134,"y":414,"on":true},{"x":134,"y":376,"on":false},{"x":159,"y":339,"on":false},{"x":190,"y":328,"on":false},{"x":199,"y":328,"on":true},{"x":223,"y":328,"on":false},{"x":273,"y":363,"on":false},{"x":317,"y":418,"on":false},{"x":352,"y":483,"on":false},{"x":372,"y":543,"on":false},{"x":372,"y":565,"on":true},{"x":372,"y":575,"on":false},{"x":370,"y":599,"on":false},{"x":365,"y":622,"on":true},{"x":379,"y":629,"on":true},{"x":396,"y":600,"on":false},{"x":410,"y":540,"on":false},{"x":410,"y":507,"on":true},{"x":410,"y":478,"on":false},{"x":385,"y":410,"on":false},{"x":334,"y":348,"on":false},{"x":260,"y":309,"on":false}], + [{"x":153,"y":-10,"on":true},{"x":107,"y":-10,"on":false},{"x":48,"y":17,"on":false},{"x":15,"y":58,"on":false},{"x":0,"y":101,"on":false},{"x":-4,"y":136,"on":false},{"x":-4,"y":143,"on":true},{"x":-4,"y":183,"on":false},{"x":45,"y":238,"on":false},{"x":79,"y":238,"on":true},{"x":115,"y":237,"on":false},{"x":142,"y":199,"on":false},{"x":142,"y":184,"on":true},{"x":142,"y":152,"on":false},{"x":110,"y":124,"on":false},{"x":88,"y":121,"on":true},{"x":76,"y":120,"on":false},{"x":51,"y":119,"on":false},{"x":33,"y":108,"on":false},{"x":33,"y":92,"on":true},{"x":33,"y":88,"on":false},{"x":40,"y":61,"on":false},{"x":63,"y":30,"on":false},{"x":108,"y":8,"on":false},{"x":147,"y":8,"on":true},{"x":191,"y":8,"on":false},{"x":261,"y":62,"on":false},{"x":322,"y":156,"on":false},{"x":352,"y":215,"on":true},{"x":384,"y":280,"on":true},{"x":328,"y":273,"on":false},{"x":246,"y":224,"on":false},{"x":224,"y":195,"on":true},{"x":209,"y":207,"on":true},{"x":209,"y":207,"on":false},{"x":231,"y":232,"on":false},{"x":275,"y":266,"on":false},{"x":344,"y":294,"on":false},{"x":392,"y":298,"on":true},{"x":420,"y":356,"on":false},{"x":475,"y":457,"on":false},{"x":556,"y":552,"on":false},{"x":622,"y":599,"on":true},{"x":635,"y":589,"on":true},{"x":598,"y":553,"on":false},{"x":560,"y":463,"on":false},{"x":536,"y":362,"on":false},{"x":520,"y":309,"on":true},{"x":549,"y":313,"on":true},{"x":554,"y":314,"on":false},{"x":571,"y":320,"on":false},{"x":576,"y":325,"on":true},{"x":578,"y":330,"on":false},{"x":591,"y":361,"on":false},{"x":612,"y":397,"on":false},{"x":640,"y":423,"on":false},{"x":657,"y":423,"on":true},{"x":670,"y":423,"on":false},{"x":680,"y":406,"on":false},{"x":680,"y":397,"on":true},{"x":680,"y":367,"on":false},{"x":609,"y":311,"on":true},{"x":614,"y":304,"on":false},{"x":610,"y":270,"on":false},{"x":599,"y":231,"on":false},{"x":588,"y":198,"on":false},{"x":586,"y":192,"on":true},{"x":508,"y":170,"on":true},{"x":508,"y":170,"on":false},{"x":524,"y":198,"on":false},{"x":545,"y":240,"on":false},{"x":563,"y":282,"on":false},{"x":565,"y":296,"on":true},{"x":546,"y":296,"on":false},{"x":514,"y":293,"on":true},{"x":511,"y":283,"on":true},{"x":480,"y":198,"on":false},{"x":384,"y":66,"on":false},{"x":246,"y":-10,"on":false}] + ] + }, + "uni2132": { + "advanceWidth": 477, + "references": [ + {"glyph":"F","x":477,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2133": { + "advanceWidth": 1155, + "contours": [ + [{"x":130,"y":-10,"on":true},{"x":68,"y":-10,"on":false},{"x":-4,"y":64,"on":false},{"x":-4,"y":122,"on":true},{"x":-4,"y":164,"on":false},{"x":47,"y":223,"on":false},{"x":87,"y":223,"on":true},{"x":120,"y":223,"on":false},{"x":143,"y":188,"on":false},{"x":143,"y":168,"on":true},{"x":143,"y":145,"on":false},{"x":102,"y":105,"on":false},{"x":56,"y":99,"on":true},{"x":43,"y":98,"on":false},{"x":35,"y":87,"on":false},{"x":35,"y":78,"on":true},{"x":35,"y":72,"on":false},{"x":53,"y":38,"on":false},{"x":94,"y":8,"on":false},{"x":131,"y":8,"on":true},{"x":186,"y":8,"on":false},{"x":281,"y":69,"on":false},{"x":367,"y":170,"on":false},{"x":454,"y":296,"on":false},{"x":501,"y":360,"on":true},{"x":564,"y":446,"on":false},{"x":688,"y":594,"on":false},{"x":793,"y":700,"on":false},{"x":828,"y":725,"on":true},{"x":844,"y":715,"on":true},{"x":840,"y":705,"on":false},{"x":816,"y":652,"on":false},{"x":784,"y":580,"on":false},{"x":749,"y":502,"on":false},{"x":718,"y":431,"on":false},{"x":696,"y":381,"on":false},{"x":693,"y":373,"on":true},{"x":689,"y":363,"on":false},{"x":666,"y":307,"on":false},{"x":635,"y":229,"on":false},{"x":604,"y":144,"on":false},{"x":580,"y":64,"on":false},{"x":576,"y":36,"on":true},{"x":600,"y":60,"on":false},{"x":657,"y":145,"on":false},{"x":720,"y":247,"on":false},{"x":782,"y":347,"on":false},{"x":810,"y":386,"on":true},{"x":854,"y":446,"on":false},{"x":915,"y":525,"on":false},{"x":949,"y":561,"on":true},{"x":1005,"y":621,"on":false},{"x":1107,"y":704,"on":false},{"x":1137,"y":722,"on":true},{"x":1154,"y":706,"on":true},{"x":1137,"y":682,"on":false},{"x":1089,"y":599,"on":false},{"x":1035,"y":500,"on":false},{"x":985,"y":404,"on":false},{"x":967,"y":366,"on":true},{"x":955,"y":341,"on":false},{"x":921,"y":267,"on":false},{"x":885,"y":183,"on":false},{"x":854,"y":103,"on":false},{"x":834,"y":38,"on":false},{"x":834,"y":22,"on":true},{"x":834,"y":8,"on":false},{"x":842,"y":8,"on":true},{"x":860,"y":8,"on":false},{"x":916,"y":54,"on":false},{"x":978,"y":124,"on":false},{"x":1005,"y":158,"on":true},{"x":1017,"y":148,"on":true},{"x":992,"y":113,"on":false},{"x":928,"y":40,"on":false},{"x":864,"y":-10,"on":false},{"x":838,"y":-10,"on":true},{"x":804,"y":-10,"on":false},{"x":764,"y":45,"on":false},{"x":764,"y":117,"on":true},{"x":764,"y":146,"on":false},{"x":789,"y":221,"on":false},{"x":827,"y":301,"on":false},{"x":871,"y":376,"on":false},{"x":910,"y":436,"on":false},{"x":922,"y":452,"on":true},{"x":937,"y":473,"on":false},{"x":984,"y":530,"on":false},{"x":1036,"y":592,"on":false},{"x":1084,"y":648,"on":false},{"x":1119,"y":688,"on":false},{"x":1125,"y":694,"on":true},{"x":1108,"y":682,"on":false},{"x":1024,"y":614,"on":false},{"x":903,"y":486,"on":false},{"x":832,"y":386,"on":true},{"x":771,"y":300,"on":false},{"x":682,"y":149,"on":false},{"x":647,"y":96,"on":true},{"x":617,"y":51,"on":false},{"x":566,"y":-10,"on":false},{"x":546,"y":-10,"on":true},{"x":524,"y":-10,"on":false},{"x":504,"y":28,"on":false},{"x":498,"y":80,"on":false},{"x":498,"y":99,"on":true},{"x":498,"y":120,"on":false},{"x":522,"y":214,"on":false},{"x":593,"y":366,"on":false},{"x":663,"y":474,"on":true},{"x":681,"y":502,"on":false},{"x":729,"y":572,"on":false},{"x":777,"y":639,"on":false},{"x":813,"y":689,"on":false},{"x":819,"y":697,"on":true},{"x":786,"y":673,"on":false},{"x":703,"y":583,"on":false},{"x":614,"y":476,"on":false},{"x":534,"y":371,"on":false},{"x":504,"y":332,"on":true},{"x":464,"y":278,"on":false},{"x":383,"y":159,"on":false},{"x":296,"y":55,"on":false},{"x":193,"y":-10,"on":false}] + ] + }, + "uni2134": { + "advanceWidth": 480, + "contours": [ + [{"x":187,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":102,"y":17,"on":false},{"x":74,"y":58,"on":false},{"x":63,"y":102,"on":false},{"x":63,"y":118,"on":true},{"x":63,"y":146,"on":false},{"x":74,"y":182,"on":false},{"x":83,"y":203,"on":true},{"x":39,"y":150,"on":true},{"x":24,"y":163,"on":true},{"x":104,"y":258,"on":true},{"x":134,"y":294,"on":false},{"x":210,"y":360,"on":false},{"x":292,"y":401,"on":false},{"x":331,"y":401,"on":true},{"x":374,"y":401,"on":false},{"x":420,"y":372,"on":false},{"x":439,"y":328,"on":false},{"x":439,"y":308,"on":true},{"x":439,"y":278,"on":false},{"x":410,"y":194,"on":false},{"x":358,"y":104,"on":false},{"x":325,"y":67,"on":true},{"x":341,"y":71,"on":false},{"x":388,"y":94,"on":false},{"x":436,"y":140,"on":false},{"x":456,"y":178,"on":true},{"x":475,"y":178,"on":true},{"x":475,"y":176,"on":false},{"x":453,"y":137,"on":false},{"x":411,"y":88,"on":false},{"x":347,"y":49,"on":false},{"x":305,"y":46,"on":true},{"x":278,"y":21,"on":false},{"x":218,"y":-10,"on":false}], + [{"x":189,"y":8,"on":true},{"x":208,"y":8,"on":false},{"x":249,"y":30,"on":false},{"x":269,"y":49,"on":true},{"x":263,"y":52,"on":false},{"x":255,"y":64,"on":false},{"x":255,"y":74,"on":true},{"x":255,"y":94,"on":false},{"x":289,"y":121,"on":false},{"x":307,"y":121,"on":true},{"x":320,"y":121,"on":false},{"x":327,"y":118,"on":true},{"x":359,"y":167,"on":false},{"x":402,"y":278,"on":false},{"x":402,"y":321,"on":true},{"x":402,"y":358,"on":false},{"x":376,"y":376,"on":false},{"x":362,"y":376,"on":true},{"x":333,"y":376,"on":false},{"x":256,"y":282,"on":false},{"x":201,"y":176,"on":true},{"x":158,"y":93,"on":false},{"x":158,"y":47,"on":true},{"x":158,"y":8,"on":false}] + ] + }, + "aleph": { + "advanceWidth": 578, + "contours": [ + [{"x":494,"y":-27,"on":true},{"x":441,"y":50,"on":false},{"x":300,"y":246,"on":false},{"x":224,"y":343,"on":true},{"x":168,"y":260,"on":false},{"x":120,"y":82,"on":false},{"x":116,"y":-1,"on":true},{"x":34,"y":-1,"on":true},{"x":36,"y":97,"on":false},{"x":101,"y":306,"on":false},{"x":173,"y":400,"on":true},{"x":136,"y":444,"on":false},{"x":66,"y":514,"on":false},{"x":37,"y":542,"on":true},{"x":96,"y":601,"on":true},{"x":156,"y":542,"on":false},{"x":295,"y":380,"on":false},{"x":358,"y":295,"on":true},{"x":393,"y":340,"on":false},{"x":435,"y":444,"on":false},{"x":454,"y":544,"on":false},{"x":455,"y":583,"on":true},{"x":544,"y":583,"on":true},{"x":540,"y":526,"on":false},{"x":507,"y":402,"on":false},{"x":447,"y":283,"on":false},{"x":405,"y":235,"on":true},{"x":449,"y":176,"on":false},{"x":524,"y":69,"on":false},{"x":554,"y":25,"on":true}] + ] + }, + "uni2136": { + "advanceWidth": 505, + "contours": [ + [{"x":29,"y":0,"on":true},{"x":29,"y":72,"on":true},{"x":317,"y":72,"on":true},{"x":317,"y":350,"on":true},{"x":317,"y":436,"on":false},{"x":253,"y":511,"on":false},{"x":174,"y":511,"on":true},{"x":50,"y":511,"on":true},{"x":50,"y":582,"on":true},{"x":174,"y":582,"on":true},{"x":257,"y":582,"on":false},{"x":356,"y":536,"on":false},{"x":399,"y":428,"on":false},{"x":399,"y":337,"on":true},{"x":399,"y":72,"on":true},{"x":472,"y":72,"on":true},{"x":472,"y":0,"on":true}] + ] + }, + "uni2137": { + "advanceWidth": 365, + "contours": [ + [{"x":7,"y":-23,"on":true},{"x":7,"y":62,"on":true},{"x":57,"y":94,"on":false},{"x":121,"y":139,"on":false},{"x":156,"y":182,"on":false},{"x":170,"y":234,"on":false},{"x":170,"y":272,"on":true},{"x":170,"y":416,"on":true},{"x":170,"y":448,"on":false},{"x":151,"y":479,"on":false},{"x":123,"y":488,"on":true},{"x":43,"y":515,"on":true},{"x":43,"y":593,"on":true},{"x":175,"y":552,"on":true},{"x":225,"y":536,"on":false},{"x":252,"y":464,"on":false},{"x":252,"y":400,"on":true},{"x":252,"y":292,"on":true},{"x":252,"y":272,"on":false},{"x":262,"y":230,"on":false},{"x":267,"y":210,"on":true},{"x":324,"y":0,"on":true},{"x":239,"y":0,"on":true},{"x":204,"y":175,"on":true},{"x":202,"y":139,"on":false},{"x":167,"y":82,"on":false},{"x":143,"y":66,"on":true}] + ] + }, + "uni2138": { + "advanceWidth": 446, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":510,"on":true},{"x":2,"y":510,"on":true},{"x":2,"y":582,"on":true},{"x":429,"y":582,"on":true},{"x":429,"y":510,"on":true},{"x":356,"y":510,"on":true},{"x":356,"y":0,"on":true}] + ] + }, + "uni2139": { + "advanceWidth": 253, + "references": [ + {"glyph":"i","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni213A": { + "advanceWidth": 936, + "references": [ + {"glyph":"Q","x":766,"y":11,"a":0,"b":1,"c":-1,"d":0,"roundToGrid":true} + ] + }, + "uni213B": { + "advanceWidth": 1283, + "contours": [ + [{"x":739,"y":0,"on":true},{"x":697,"y":195,"on":true},{"x":524,"y":195,"on":true},{"x":482,"y":0,"on":true},{"x":374,"y":0,"on":true},{"x":557,"y":717,"on":true},{"x":668,"y":717,"on":true},{"x":849,"y":0,"on":true}], + [{"x":1279,"y":0,"on":true},{"x":1164,"y":0,"on":true},{"x":1064,"y":279,"on":true},{"x":965,"y":0,"on":true},{"x":857,"y":0,"on":true},{"x":1002,"y":370,"on":true},{"x":869,"y":714,"on":true},{"x":980,"y":714,"on":true},{"x":1072,"y":453,"on":true},{"x":1165,"y":714,"on":true},{"x":1273,"y":714,"on":true},{"x":1128,"y":371,"on":true}], + [{"x":184,"y":0,"on":true},{"x":84,"y":0,"on":true},{"x":84,"y":714,"on":true},{"x":390,"y":714,"on":true},{"x":390,"y":627,"on":true},{"x":184,"y":627,"on":true},{"x":184,"y":387,"on":true},{"x":367,"y":387,"on":true},{"x":367,"y":299,"on":true},{"x":184,"y":299,"on":true}], + [{"x":634,"y":485,"on":true},{"x":630,"y":505,"on":false},{"x":616,"y":574,"on":false},{"x":609,"y":607,"on":true},{"x":603,"y":576,"on":false},{"x":591,"y":507,"on":false},{"x":586,"y":483,"on":true},{"x":543,"y":284,"on":true},{"x":678,"y":284,"on":true}] + ] + }, + "uni213C": { + "advanceWidth": 777, + "contours": [ + [{"x":541,"y":-10,"on":true},{"x":481,"y":-10,"on":false},{"x":400,"y":59,"on":false},{"x":400,"y":118,"on":true},{"x":400,"y":138,"on":false},{"x":410,"y":191,"on":false},{"x":414,"y":213,"on":true},{"x":473,"y":483,"on":true},{"x":337,"y":483,"on":true},{"x":235,"y":0,"on":true},{"x":62,"y":0,"on":true},{"x":164,"y":483,"on":true},{"x":49,"y":483,"on":true},{"x":53,"y":501,"on":true},{"x":132,"y":536,"on":true},{"x":765,"y":536,"on":true},{"x":754,"y":483,"on":true},{"x":646,"y":483,"on":true},{"x":587,"y":213,"on":true},{"x":582,"y":192,"on":false},{"x":578,"y":163,"on":false},{"x":578,"y":152,"on":true},{"x":578,"y":134,"on":false},{"x":602,"y":119,"on":false},{"x":619,"y":119,"on":true},{"x":645,"y":119,"on":false},{"x":668,"y":129,"on":true},{"x":642,"y":5,"on":true},{"x":622,"y":-2,"on":false},{"x":563,"y":-10,"on":false}], + [{"x":125,"y":49,"on":true},{"x":192,"y":49,"on":true},{"x":284,"y":483,"on":true},{"x":217,"y":483,"on":true}], + [{"x":548,"y":40,"on":true},{"x":562,"y":40,"on":false},{"x":592,"y":42,"on":false},{"x":602,"y":44,"on":true},{"x":609,"y":81,"on":true},{"x":605,"y":81,"on":true},{"x":556,"y":81,"on":false},{"x":525,"y":123,"on":false},{"x":525,"y":151,"on":true},{"x":525,"y":174,"on":false},{"x":534,"y":213,"on":true},{"x":592,"y":483,"on":true},{"x":527,"y":483,"on":true},{"x":467,"y":204,"on":true},{"x":462,"y":184,"on":false},{"x":455,"y":141,"on":false},{"x":455,"y":118,"on":true},{"x":455,"y":80,"on":false},{"x":506,"y":40,"on":false}] + ] + }, + "uni213D": { + "advanceWidth": 543, + "contours": [ + [{"x":211,"y":-240,"on":true},{"x":211,"y":-212,"on":false},{"x":224,"y":-128,"on":false},{"x":247,"y":-35,"on":false},{"x":262,"y":6,"on":true},{"x":5,"y":536,"on":true},{"x":188,"y":536,"on":true},{"x":314,"y":272,"on":true},{"x":321,"y":258,"on":false},{"x":338,"y":220,"on":false},{"x":340,"y":210,"on":true},{"x":340,"y":212,"on":false},{"x":348,"y":237,"on":false},{"x":357,"y":264,"on":false},{"x":360,"y":271,"on":true},{"x":458,"y":536,"on":true},{"x":515,"y":536,"on":true},{"x":315,"y":13,"on":true},{"x":300,"y":-28,"on":false},{"x":278,"y":-119,"on":false},{"x":266,"y":-206,"on":false},{"x":266,"y":-240,"on":true}], + [{"x":281,"y":60,"on":true},{"x":285,"y":60,"on":true},{"x":287,"y":72,"on":false},{"x":304,"y":124,"on":false},{"x":315,"y":154,"on":true},{"x":154,"y":487,"on":true},{"x":86,"y":487,"on":true},{"x":197,"y":255,"on":true},{"x":206,"y":236,"on":false},{"x":232,"y":181,"on":false},{"x":259,"y":122,"on":false},{"x":279,"y":73,"on":false}] + ] + }, + "uni213E": { + "advanceWidth": 552, + "contours": [ + [{"x":97,"y":0,"on":true},{"x":97,"y":714,"on":true},{"x":537,"y":714,"on":true},{"x":537,"y":661,"on":true},{"x":270,"y":661,"on":true},{"x":270,"y":0,"on":true}], + [{"x":150,"y":53,"on":true},{"x":217,"y":53,"on":true},{"x":217,"y":661,"on":true},{"x":150,"y":661,"on":true}] + ] + }, + "uni213F": { + "advanceWidth": 777, + "contours": [ + [{"x":97,"y":0,"on":true},{"x":97,"y":714,"on":true},{"x":680,"y":714,"on":true},{"x":680,"y":0,"on":true},{"x":507,"y":0,"on":true},{"x":507,"y":661,"on":true},{"x":270,"y":661,"on":true},{"x":270,"y":0,"on":true}], + [{"x":150,"y":53,"on":true},{"x":217,"y":53,"on":true},{"x":217,"y":661,"on":true},{"x":150,"y":661,"on":true}], + [{"x":560,"y":53,"on":true},{"x":627,"y":53,"on":true},{"x":627,"y":661,"on":true},{"x":560,"y":661,"on":true}] + ] + }, + "uni2140": { + "advanceWidth": 620, + "contours": [ + [{"x":26,"y":-240,"on":true},{"x":26,"y":-177,"on":true},{"x":343,"y":177,"on":true},{"x":38,"y":659,"on":true},{"x":38,"y":714,"on":true},{"x":604,"y":714,"on":true},{"x":604,"y":659,"on":true},{"x":239,"y":659,"on":true},{"x":490,"y":260,"on":true},{"x":191,"y":-74,"on":true},{"x":620,"y":-74,"on":true},{"x":620,"y":-240,"on":true}], + [{"x":379,"y":217,"on":true},{"x":424,"y":266,"on":true},{"x":176,"y":659,"on":true},{"x":101,"y":659,"on":true}], + [{"x":87,"y":-188,"on":true},{"x":571,"y":-188,"on":true},{"x":571,"y":-126,"on":true},{"x":144,"y":-126,"on":true}] + ] + }, + "uni2141": { + "advanceWidth": 661, + "references": [ + {"glyph":"G","x":661,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2142": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":479,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2143": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":479,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2144": { + "advanceWidth": 522, + "references": [ + {"glyph":"Y","x":522,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2145": { + "advanceWidth": 730, + "contours": [ + [{"x":36,"y":0,"on":true},{"x":187,"y":714,"on":true},{"x":440,"y":714,"on":true},{"x":569,"y":714,"on":false},{"x":715,"y":574,"on":false},{"x":715,"y":429,"on":true},{"x":715,"y":305,"on":false},{"x":618,"y":111,"on":false},{"x":431,"y":0,"on":false},{"x":296,"y":0,"on":true}], + [{"x":100,"y":53,"on":true},{"x":167,"y":53,"on":true},{"x":296,"y":661,"on":true},{"x":229,"y":661,"on":true}], + [{"x":220,"y":53,"on":true},{"x":304,"y":53,"on":true},{"x":395,"y":53,"on":false},{"x":466,"y":87,"on":true},{"x":579,"y":626,"on":true},{"x":530,"y":661,"on":false},{"x":455,"y":661,"on":true},{"x":349,"y":661,"on":true}], + [{"x":526,"y":125,"on":true},{"x":590,"y":176,"on":false},{"x":657,"y":336,"on":false},{"x":657,"y":430,"on":true},{"x":657,"y":526,"on":false},{"x":620,"y":582,"on":true}] + ] + }, + "uni2146": { + "advanceWidth": 579, + "contours": [ + [{"x":154,"y":-9,"on":true},{"x":90,"y":-9,"on":false},{"x":9,"y":82,"on":false},{"x":9,"y":174,"on":true},{"x":9,"y":240,"on":false},{"x":43,"y":371,"on":false},{"x":109,"y":480,"on":false},{"x":208,"y":545,"on":false},{"x":272,"y":545,"on":true},{"x":324,"y":545,"on":false},{"x":392,"y":490,"on":false},{"x":403,"y":450,"on":true},{"x":469,"y":760,"on":true},{"x":642,"y":760,"on":true},{"x":480,"y":0,"on":true},{"x":307,"y":0,"on":true},{"x":329,"y":101,"on":true},{"x":290,"y":49,"on":false},{"x":208,"y":-9,"on":false}], + [{"x":370,"y":49,"on":true},{"x":437,"y":49,"on":true},{"x":577,"y":707,"on":true},{"x":511,"y":707,"on":true}], + [{"x":157,"y":43,"on":true},{"x":204,"y":43,"on":false},{"x":285,"y":105,"on":false},{"x":345,"y":203,"on":false},{"x":378,"y":314,"on":false},{"x":378,"y":364,"on":true},{"x":378,"y":396,"on":false},{"x":359,"y":455,"on":false},{"x":310,"y":493,"on":false},{"x":266,"y":493,"on":true},{"x":262,"y":493,"on":false},{"x":252,"y":492,"on":false},{"x":248,"y":491,"on":true}], + [{"x":106,"y":54,"on":true},{"x":195,"y":476,"on":true},{"x":161,"y":454,"on":false},{"x":100,"y":369,"on":false},{"x":62,"y":248,"on":false},{"x":62,"y":172,"on":true},{"x":62,"y":126,"on":false},{"x":86,"y":67,"on":false}] + ] + }, + "uni2147": { + "advanceWidth": 499, + "contours": [ + [{"x":232,"y":-10,"on":true},{"x":122,"y":-10,"on":false},{"x":9,"y":99,"on":false},{"x":9,"y":192,"on":true},{"x":9,"y":256,"on":false},{"x":51,"y":381,"on":false},{"x":134,"y":484,"on":false},{"x":254,"y":546,"on":false},{"x":332,"y":546,"on":true},{"x":404,"y":546,"on":false},{"x":500,"y":486,"on":false},{"x":500,"y":424,"on":true},{"x":500,"y":358,"on":false},{"x":357,"y":258,"on":false},{"x":199,"y":244,"on":true},{"x":160,"y":54,"on":true},{"x":191,"y":44,"on":false},{"x":237,"y":44,"on":true},{"x":282,"y":44,"on":false},{"x":376,"y":70,"on":false},{"x":421,"y":92,"on":true},{"x":416,"y":29,"on":true},{"x":372,"y":10,"on":false},{"x":283,"y":-10,"on":false}], + [{"x":210,"y":298,"on":true},{"x":238,"y":300,"on":false},{"x":290,"y":309,"on":false},{"x":313,"y":314,"on":true},{"x":350,"y":491,"on":true},{"x":346,"y":492,"on":false},{"x":336,"y":492,"on":false},{"x":332,"y":492,"on":true},{"x":309,"y":492,"on":false},{"x":266,"y":484,"on":false},{"x":246,"y":476,"on":true}], + [{"x":369,"y":333,"on":true},{"x":405,"y":349,"on":false},{"x":446,"y":394,"on":false},{"x":446,"y":425,"on":true},{"x":446,"y":464,"on":false},{"x":399,"y":482,"on":true}], + [{"x":113,"y":78,"on":true},{"x":189,"y":445,"on":true},{"x":132,"y":404,"on":false},{"x":67,"y":269,"on":false},{"x":67,"y":197,"on":true},{"x":67,"y":158,"on":false},{"x":89,"y":98,"on":false}] + ] + }, + "uni2148": { + "advanceWidth": 343, + "contours": [ + [{"x":248,"y":592,"on":true},{"x":214,"y":592,"on":false},{"x":169,"y":630,"on":false},{"x":169,"y":667,"on":true},{"x":169,"y":709,"on":false},{"x":219,"y":769,"on":false},{"x":266,"y":769,"on":true},{"x":342,"y":769,"on":false},{"x":342,"y":698,"on":true},{"x":342,"y":647,"on":false},{"x":283,"y":592,"on":false}], + [{"x":252,"y":642,"on":true},{"x":267,"y":642,"on":false},{"x":292,"y":666,"on":false},{"x":292,"y":688,"on":true},{"x":292,"y":719,"on":false},{"x":260,"y":719,"on":true},{"x":240,"y":719,"on":false},{"x":219,"y":692,"on":false},{"x":219,"y":675,"on":true},{"x":219,"y":659,"on":false},{"x":238,"y":642,"on":false}], + [{"x":32,"y":0,"on":true},{"x":145,"y":536,"on":true},{"x":319,"y":536,"on":true},{"x":205,"y":0,"on":true}], + [{"x":95,"y":49,"on":true},{"x":162,"y":49,"on":true},{"x":254,"y":483,"on":true},{"x":187,"y":483,"on":true}] + ] + }, + "uni2149": { + "advanceWidth": 343, + "contours": [ + [{"x":248,"y":592,"on":true},{"x":214,"y":592,"on":false},{"x":169,"y":630,"on":false},{"x":169,"y":667,"on":true},{"x":169,"y":709,"on":false},{"x":219,"y":769,"on":false},{"x":266,"y":769,"on":true},{"x":342,"y":769,"on":false},{"x":342,"y":698,"on":true},{"x":342,"y":647,"on":false},{"x":283,"y":592,"on":false}], + [{"x":252,"y":642,"on":true},{"x":267,"y":642,"on":false},{"x":292,"y":666,"on":false},{"x":292,"y":688,"on":true},{"x":292,"y":719,"on":false},{"x":260,"y":719,"on":true},{"x":240,"y":719,"on":false},{"x":219,"y":692,"on":false},{"x":219,"y":675,"on":true},{"x":219,"y":659,"on":false},{"x":238,"y":642,"on":false}], + [{"x":-65,"y":-240,"on":true},{"x":-85,"y":-240,"on":false},{"x":-125,"y":-233,"on":false},{"x":-145,"y":-224,"on":true},{"x":-134,"y":-171,"on":true},{"x":-120,"y":-177,"on":false},{"x":-91,"y":-185,"on":false},{"x":-74,"y":-185,"on":true},{"x":-47,"y":-185,"on":false},{"x":-1,"y":-150,"on":false},{"x":9,"y":-103,"on":true},{"x":145,"y":536,"on":true},{"x":319,"y":536,"on":true},{"x":198,"y":-25,"on":true},{"x":191,"y":-57,"on":false},{"x":154,"y":-131,"on":false},{"x":91,"y":-198,"on":false},{"x":-2,"y":-240,"on":false}], + [{"x":50,"y":-163,"on":true},{"x":80,"y":-143,"on":false},{"x":135,"y":-78,"on":false},{"x":148,"y":-18,"on":true},{"x":253,"y":483,"on":true},{"x":187,"y":483,"on":true}] + ] + }, + "uni214A": { + "advanceWidth": 632, + "contours": [ + [{"x":253,"y":0,"on":true},{"x":253,"y":640,"on":true},{"x":166,"y":640,"on":true},{"x":166,"y":154,"on":true},{"x":88,"y":154,"on":true},{"x":88,"y":709,"on":true},{"x":253,"y":709,"on":true},{"x":253,"y":777,"on":true},{"x":331,"y":777,"on":true},{"x":331,"y":708,"on":true},{"x":456,"y":706,"on":false},{"x":577,"y":608,"on":false},{"x":577,"y":503,"on":true},{"x":577,"y":407,"on":false},{"x":460,"y":288,"on":false},{"x":331,"y":283,"on":true},{"x":331,"y":71,"on":true},{"x":595,"y":71,"on":true},{"x":595,"y":0,"on":true}], + [{"x":330,"y":352,"on":true},{"x":417,"y":356,"on":false},{"x":497,"y":424,"on":false},{"x":497,"y":500,"on":true},{"x":497,"y":568,"on":false},{"x":419,"y":637,"on":false},{"x":330,"y":639,"on":true}] + ] + }, + "uni214B": { + "advanceWidth": 653, + "references": [ + {"glyph":"ampersand","x":653,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni214C": { + "advanceWidth": 655, + "contours": [ + [{"x":282,"y":-10,"on":true},{"x":238,"y":-10,"on":false},{"x":188,"y":26,"on":false},{"x":166,"y":84,"on":false},{"x":166,"y":117,"on":true},{"x":166,"y":137,"on":false},{"x":173,"y":226,"on":false},{"x":178,"y":279,"on":true},{"x":130,"y":287,"on":false},{"x":58,"y":328,"on":false},{"x":58,"y":369,"on":true},{"x":58,"y":401,"on":false},{"x":100,"y":442,"on":false},{"x":165,"y":466,"on":false},{"x":198,"y":471,"on":true},{"x":215,"y":615,"on":true},{"x":206,"y":620,"on":false},{"x":172,"y":634,"on":false},{"x":136,"y":644,"on":false},{"x":124,"y":644,"on":true},{"x":109,"y":644,"on":false},{"x":94,"y":627,"on":false},{"x":94,"y":617,"on":true},{"x":94,"y":609,"on":false},{"x":105,"y":590,"on":false},{"x":120,"y":590,"on":true},{"x":129,"y":590,"on":false},{"x":139,"y":592,"on":true},{"x":140,"y":574,"on":true},{"x":136,"y":573,"on":false},{"x":125,"y":572,"on":false},{"x":119,"y":572,"on":true},{"x":84,"y":572,"on":false},{"x":44,"y":613,"on":false},{"x":44,"y":643,"on":true},{"x":44,"y":672,"on":false},{"x":68,"y":704,"on":false},{"x":100,"y":715,"on":false},{"x":112,"y":715,"on":true},{"x":138,"y":715,"on":false},{"x":166,"y":692,"on":false},{"x":186,"y":669,"on":false},{"x":196,"y":669,"on":true},{"x":204,"y":669,"on":false},{"x":208,"y":688,"on":false},{"x":219,"y":708,"on":false},{"x":238,"y":708,"on":true},{"x":252,"y":708,"on":false},{"x":264,"y":694,"on":false},{"x":267,"y":678,"on":false},{"x":267,"y":675,"on":true},{"x":267,"y":662,"on":false},{"x":248,"y":630,"on":false},{"x":237,"y":613,"on":true},{"x":234,"y":475,"on":true},{"x":268,"y":478,"on":false},{"x":289,"y":478,"on":true},{"x":296,"y":478,"on":false},{"x":314,"y":478,"on":false},{"x":324,"y":477,"on":true},{"x":323,"y":506,"on":false},{"x":322,"y":553,"on":false},{"x":322,"y":569,"on":true},{"x":322,"y":640,"on":false},{"x":372,"y":725,"on":false},{"x":439,"y":725,"on":true},{"x":482,"y":725,"on":false},{"x":553,"y":686,"on":false},{"x":603,"y":620,"on":false},{"x":630,"y":540,"on":false},{"x":630,"y":500,"on":true},{"x":630,"y":472,"on":false},{"x":612,"y":420,"on":false},{"x":595,"y":397,"on":true},{"x":608,"y":383,"on":false},{"x":624,"y":347,"on":false},{"x":624,"y":326,"on":true},{"x":624,"y":304,"on":false},{"x":600,"y":262,"on":false},{"x":569,"y":231,"on":false},{"x":559,"y":224,"on":true},{"x":523,"y":224,"on":true},{"x":532,"y":231,"on":false},{"x":565,"y":262,"on":false},{"x":592,"y":304,"on":false},{"x":592,"y":327,"on":true},{"x":592,"y":354,"on":false},{"x":577,"y":375,"on":true},{"x":543,"y":338,"on":false},{"x":442,"y":288,"on":false},{"x":381,"y":277,"on":true},{"x":388,"y":222,"on":false},{"x":398,"y":134,"on":false},{"x":398,"y":117,"on":true},{"x":398,"y":84,"on":false},{"x":376,"y":26,"on":false},{"x":326,"y":-10,"on":false}], + [{"x":538,"y":436,"on":true},{"x":543,"y":455,"on":false},{"x":549,"y":496,"on":false},{"x":549,"y":519,"on":true},{"x":549,"y":547,"on":false},{"x":540,"y":612,"on":false},{"x":517,"y":670,"on":false},{"x":472,"y":707,"on":false},{"x":436,"y":707,"on":true},{"x":396,"y":707,"on":false},{"x":359,"y":666,"on":false},{"x":349,"y":604,"on":false},{"x":350,"y":572,"on":true},{"x":350,"y":554,"on":false},{"x":354,"y":504,"on":false},{"x":357,"y":475,"on":true},{"x":400,"y":472,"on":false},{"x":498,"y":454,"on":false}], + [{"x":299,"y":288,"on":true},{"x":308,"y":288,"on":false},{"x":325,"y":288,"on":false},{"x":333,"y":289,"on":true},{"x":325,"y":459,"on":true},{"x":315,"y":459,"on":false},{"x":297,"y":460,"on":false},{"x":288,"y":460,"on":true},{"x":272,"y":460,"on":false},{"x":245,"y":459,"on":false},{"x":233,"y":458,"on":true},{"x":227,"y":291,"on":true},{"x":258,"y":288,"on":false}], + [{"x":379,"y":295,"on":true},{"x":495,"y":319,"on":false},{"x":531,"y":414,"on":true},{"x":498,"y":433,"on":false},{"x":407,"y":453,"on":false},{"x":359,"y":457,"on":true}], + [{"x":180,"y":299,"on":true},{"x":196,"y":453,"on":true},{"x":144,"y":444,"on":false},{"x":96,"y":410,"on":false},{"x":84,"y":378,"on":false},{"x":84,"y":372,"on":true},{"x":84,"y":365,"on":false},{"x":97,"y":338,"on":false},{"x":138,"y":308,"on":false}], + [{"x":282,"y":20,"on":true},{"x":311,"y":20,"on":false},{"x":342,"y":72,"on":false},{"x":342,"y":115,"on":true},{"x":342,"y":128,"on":false},{"x":337,"y":214,"on":false},{"x":334,"y":271,"on":true},{"x":326,"y":270,"on":false},{"x":308,"y":270,"on":false},{"x":300,"y":270,"on":true},{"x":284,"y":270,"on":false},{"x":246,"y":271,"on":false},{"x":226,"y":273,"on":true},{"x":224,"y":223,"on":false},{"x":222,"y":138,"on":false},{"x":222,"y":115,"on":true},{"x":222,"y":72,"on":false},{"x":253,"y":20,"on":false}] + ] + }, + "uni214D": { + "advanceWidth": 735, + "contours": [ + [{"x":328,"y":349,"on":true},{"x":250,"y":349,"on":true},{"x":221,"y":447,"on":true},{"x":112,"y":447,"on":true},{"x":82,"y":349,"on":true},{"x":5,"y":349,"on":true},{"x":126,"y":714,"on":true},{"x":207,"y":714,"on":true}], + [{"x":264,"y":0,"on":true},{"x":181,"y":0,"on":true},{"x":525,"y":714,"on":true},{"x":607,"y":714,"on":true}], + [{"x":204,"y":505,"on":true},{"x":177,"y":593,"on":true},{"x":175,"y":602,"on":false},{"x":169,"y":629,"on":false},{"x":166,"y":644,"on":true},{"x":164,"y":630,"on":false},{"x":157,"y":600,"on":false},{"x":155,"y":592,"on":true},{"x":128,"y":505,"on":true}], + [{"x":586,"y":371,"on":true},{"x":646,"y":371,"on":false},{"x":698,"y":344,"on":true},{"x":678,"y":285,"on":true},{"x":632,"y":309,"on":false},{"x":587,"y":309,"on":true},{"x":540,"y":309,"on":false},{"x":540,"y":274,"on":true},{"x":540,"y":253,"on":false},{"x":568,"y":231,"on":false},{"x":607,"y":215,"on":true},{"x":659,"y":194,"on":false},{"x":703,"y":144,"on":false},{"x":703,"y":100,"on":true},{"x":703,"y":52,"on":false},{"x":631,"y":-6,"on":false},{"x":565,"y":-6,"on":true},{"x":502,"y":-6,"on":false},{"x":458,"y":17,"on":true},{"x":458,"y":84,"on":true},{"x":511,"y":55,"on":false},{"x":565,"y":55,"on":true},{"x":628,"y":55,"on":false},{"x":628,"y":95,"on":true},{"x":628,"y":112,"on":false},{"x":602,"y":140,"on":false},{"x":556,"y":159,"on":true},{"x":508,"y":180,"on":false},{"x":464,"y":230,"on":false},{"x":464,"y":271,"on":true},{"x":464,"y":315,"on":false},{"x":527,"y":371,"on":false}] + ] + }, + "uni214E": { + "advanceWidth": 417, + "contours": [ + [{"x":30,"y":0,"on":true},{"x":30,"y":83,"on":true},{"x":238,"y":83,"on":true},{"x":238,"y":243,"on":true},{"x":45,"y":243,"on":true},{"x":45,"y":326,"on":true},{"x":238,"y":326,"on":true},{"x":238,"y":538,"on":true},{"x":341,"y":538,"on":true},{"x":341,"y":0,"on":true}] + ] + }, + "uni214F": { + "advanceWidth": 1031, + "contours": [ + [{"x":1045,"y":-9,"on":true},{"x":1031,"y":-9,"on":true},{"x":976,"y":-9,"on":false},{"x":891,"y":12,"on":false},{"x":859,"y":31,"on":true},{"x":826,"y":12,"on":false},{"x":740,"y":-9,"on":false},{"x":686,"y":-9,"on":true},{"x":631,"y":-9,"on":false},{"x":546,"y":12,"on":false},{"x":514,"y":31,"on":true},{"x":481,"y":12,"on":false},{"x":394,"y":-9,"on":false},{"x":340,"y":-9,"on":true},{"x":286,"y":-9,"on":false},{"x":200,"y":12,"on":false},{"x":168,"y":31,"on":true},{"x":135,"y":13,"on":false},{"x":52,"y":-9,"on":false},{"x":0,"y":-9,"on":true},{"x":-14,"y":-9,"on":true},{"x":-14,"y":45,"on":true},{"x":0,"y":45,"on":true},{"x":34,"y":45,"on":false},{"x":101,"y":59,"on":false},{"x":124,"y":69,"on":true},{"x":92,"y":103,"on":false},{"x":58,"y":190,"on":false},{"x":44,"y":280,"on":false},{"x":44,"y":319,"on":true},{"x":44,"y":434,"on":false},{"x":108,"y":544,"on":false},{"x":172,"y":544,"on":true},{"x":301,"y":544,"on":false},{"x":301,"y":319,"on":true},{"x":301,"y":280,"on":false},{"x":286,"y":193,"on":false},{"x":250,"y":107,"on":false},{"x":217,"y":71,"on":true},{"x":240,"y":60,"on":false},{"x":309,"y":45,"on":false},{"x":345,"y":45,"on":true},{"x":379,"y":45,"on":false},{"x":446,"y":59,"on":false},{"x":469,"y":69,"on":true},{"x":438,"y":102,"on":false},{"x":404,"y":189,"on":false},{"x":390,"y":280,"on":false},{"x":390,"y":319,"on":true},{"x":390,"y":544,"on":false},{"x":518,"y":544,"on":true},{"x":646,"y":544,"on":false},{"x":646,"y":319,"on":true},{"x":646,"y":280,"on":false},{"x":631,"y":191,"on":false},{"x":595,"y":105,"on":false},{"x":563,"y":71,"on":true},{"x":586,"y":60,"on":false},{"x":655,"y":45,"on":false},{"x":691,"y":45,"on":true},{"x":725,"y":45,"on":false},{"x":792,"y":59,"on":false},{"x":814,"y":69,"on":true},{"x":782,"y":104,"on":false},{"x":748,"y":191,"on":false},{"x":735,"y":280,"on":false},{"x":735,"y":319,"on":true},{"x":735,"y":544,"on":false},{"x":864,"y":544,"on":true},{"x":992,"y":544,"on":false},{"x":992,"y":319,"on":true},{"x":992,"y":280,"on":false},{"x":977,"y":191,"on":false},{"x":941,"y":105,"on":false},{"x":909,"y":71,"on":true},{"x":931,"y":60,"on":false},{"x":996,"y":45,"on":false},{"x":1031,"y":45,"on":true},{"x":1045,"y":45,"on":true}], + [{"x":795,"y":323,"on":true},{"x":795,"y":288,"on":false},{"x":804,"y":208,"on":false},{"x":834,"y":130,"on":false},{"x":864,"y":100,"on":true},{"x":894,"y":130,"on":false},{"x":923,"y":208,"on":false},{"x":932,"y":288,"on":false},{"x":932,"y":323,"on":true},{"x":932,"y":406,"on":false},{"x":901,"y":487,"on":false},{"x":864,"y":487,"on":true},{"x":827,"y":487,"on":false},{"x":795,"y":406,"on":false}], + [{"x":104,"y":323,"on":true},{"x":104,"y":288,"on":false},{"x":113,"y":208,"on":false},{"x":142,"y":130,"on":false},{"x":172,"y":100,"on":true},{"x":202,"y":130,"on":false},{"x":232,"y":208,"on":false},{"x":242,"y":288,"on":false},{"x":242,"y":323,"on":true},{"x":242,"y":406,"on":false},{"x":209,"y":487,"on":false},{"x":172,"y":487,"on":true},{"x":135,"y":487,"on":false},{"x":104,"y":406,"on":false}], + [{"x":450,"y":323,"on":true},{"x":450,"y":288,"on":false},{"x":459,"y":208,"on":false},{"x":488,"y":130,"on":false},{"x":518,"y":100,"on":true},{"x":548,"y":130,"on":false},{"x":577,"y":208,"on":false},{"x":586,"y":288,"on":false},{"x":586,"y":323,"on":true},{"x":586,"y":406,"on":false},{"x":554,"y":487,"on":false},{"x":518,"y":487,"on":true},{"x":482,"y":487,"on":false},{"x":450,"y":406,"on":false}] + ] + }, + "uni2150": { + "advanceWidth": 834, + "references": [ + {"glyph":"glyph2828","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":319,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2825","x":489,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2151": { + "advanceWidth": 803, + "references": [ + {"glyph":"glyph2828","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":319,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2826","x":462,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2152": { + "advanceWidth": 1048, + "references": [ + {"glyph":"glyph2828","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":319,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2821","x":410,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2820","x":703,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "onethird": { + "advanceWidth": 816, + "contours": [ + [{"x":128,"y":0,"on":true},{"x":529,"y":714,"on":true},{"x":614,"y":714,"on":true},{"x":212,"y":0,"on":true}], + [{"x":149,"y":286,"on":true},{"x":149,"y":541,"on":true},{"x":149,"y":564,"on":false},{"x":151,"y":614,"on":false},{"x":153,"y":634,"on":true},{"x":145,"y":626,"on":false},{"x":125,"y":608,"on":false},{"x":116,"y":601,"on":true},{"x":64,"y":562,"on":true},{"x":25,"y":614,"on":true},{"x":157,"y":714,"on":true},{"x":230,"y":714,"on":true},{"x":230,"y":286,"on":true}], + [{"x":597,"y":-9,"on":true},{"x":529,"y":-9,"on":false},{"x":475,"y":20,"on":true},{"x":475,"y":92,"on":true},{"x":504,"y":76,"on":false},{"x":566,"y":57,"on":false},{"x":597,"y":57,"on":true},{"x":640,"y":57,"on":false},{"x":681,"y":92,"on":false},{"x":681,"y":123,"on":true},{"x":681,"y":189,"on":false},{"x":587,"y":189,"on":true},{"x":538,"y":189,"on":true},{"x":538,"y":251,"on":true},{"x":583,"y":251,"on":true},{"x":629,"y":251,"on":false},{"x":669,"y":287,"on":false},{"x":669,"y":316,"on":true},{"x":669,"y":343,"on":false},{"x":636,"y":372,"on":false},{"x":608,"y":372,"on":true},{"x":582,"y":372,"on":false},{"x":537,"y":352,"on":false},{"x":512,"y":334,"on":true},{"x":474,"y":386,"on":true},{"x":503,"y":410,"on":false},{"x":570,"y":437,"on":false},{"x":612,"y":437,"on":true},{"x":676,"y":437,"on":false},{"x":747,"y":376,"on":false},{"x":747,"y":326,"on":true},{"x":747,"y":288,"on":false},{"x":708,"y":237,"on":false},{"x":675,"y":225,"on":true},{"x":675,"y":221,"on":true},{"x":716,"y":212,"on":false},{"x":760,"y":159,"on":false},{"x":760,"y":119,"on":true},{"x":760,"y":61,"on":false},{"x":676,"y":-9,"on":false}] + ] + }, + "twothirds": { + "advanceWidth": 862, + "contours": [ + [{"x":24,"y":286,"on":true},{"x":24,"y":349,"on":true},{"x":128,"y":458,"on":true},{"x":162,"y":493,"on":false},{"x":199,"y":540,"on":false},{"x":214,"y":578,"on":false},{"x":214,"y":600,"on":true},{"x":214,"y":627,"on":false},{"x":183,"y":656,"on":false},{"x":156,"y":656,"on":true},{"x":132,"y":656,"on":false},{"x":88,"y":634,"on":false},{"x":65,"y":613,"on":true},{"x":25,"y":666,"on":true},{"x":51,"y":692,"on":false},{"x":120,"y":724,"on":false},{"x":163,"y":724,"on":true},{"x":224,"y":724,"on":false},{"x":296,"y":661,"on":false},{"x":296,"y":606,"on":true},{"x":296,"y":572,"on":false},{"x":271,"y":517,"on":false},{"x":220,"y":457,"on":false},{"x":181,"y":418,"on":true},{"x":120,"y":356,"on":true},{"x":301,"y":356,"on":true},{"x":301,"y":286,"on":true}], + [{"x":170,"y":0,"on":true},{"x":572,"y":714,"on":true},{"x":657,"y":714,"on":true},{"x":255,"y":0,"on":true}], + [{"x":625,"y":-9,"on":true},{"x":557,"y":-9,"on":false},{"x":503,"y":20,"on":true},{"x":503,"y":92,"on":true},{"x":532,"y":76,"on":false},{"x":594,"y":57,"on":false},{"x":625,"y":57,"on":true},{"x":668,"y":57,"on":false},{"x":709,"y":92,"on":false},{"x":709,"y":123,"on":true},{"x":709,"y":189,"on":false},{"x":615,"y":189,"on":true},{"x":566,"y":189,"on":true},{"x":566,"y":251,"on":true},{"x":612,"y":251,"on":true},{"x":657,"y":251,"on":false},{"x":697,"y":287,"on":false},{"x":697,"y":316,"on":true},{"x":697,"y":343,"on":false},{"x":664,"y":372,"on":false},{"x":636,"y":372,"on":true},{"x":610,"y":372,"on":false},{"x":565,"y":352,"on":false},{"x":540,"y":334,"on":true},{"x":502,"y":386,"on":true},{"x":531,"y":410,"on":false},{"x":598,"y":437,"on":false},{"x":640,"y":437,"on":true},{"x":704,"y":437,"on":false},{"x":775,"y":376,"on":false},{"x":775,"y":326,"on":true},{"x":775,"y":288,"on":false},{"x":736,"y":237,"on":false},{"x":703,"y":225,"on":true},{"x":703,"y":221,"on":true},{"x":744,"y":212,"on":false},{"x":788,"y":159,"on":false},{"x":788,"y":119,"on":true},{"x":788,"y":61,"on":false},{"x":705,"y":-9,"on":false}] + ] + }, + "uni2155": { + "advanceWidth": 813, + "references": [ + {"glyph":"glyph2828","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":319,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2823","x":469,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2156": { + "advanceWidth": 856, + "references": [ + {"glyph":"glyph2829","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":365,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2823","x":504,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2157": { + "advanceWidth": 838, + "references": [ + {"glyph":"glyph2830","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":352,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2823","x":493,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2158": { + "advanceWidth": 851, + "references": [ + {"glyph":"glyph2831","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":366,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2823","x":506,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2159": { + "advanceWidth": 790, + "references": [ + {"glyph":"glyph2828","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":319,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2824","x":446,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni215A": { + "advanceWidth": 815, + "references": [ + {"glyph":"glyph2832","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":350,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2824","x":471,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "oneeighth": { + "advanceWidth": 816, + "contours": [ + [{"x":129,"y":0,"on":true},{"x":531,"y":714,"on":true},{"x":616,"y":714,"on":true},{"x":214,"y":0,"on":true}], + [{"x":154,"y":286,"on":true},{"x":154,"y":541,"on":true},{"x":154,"y":564,"on":false},{"x":156,"y":614,"on":false},{"x":158,"y":634,"on":true},{"x":150,"y":626,"on":false},{"x":130,"y":608,"on":false},{"x":121,"y":601,"on":true},{"x":69,"y":562,"on":true},{"x":30,"y":614,"on":true},{"x":162,"y":714,"on":true},{"x":235,"y":714,"on":true},{"x":235,"y":286,"on":true}], + [{"x":612,"y":-9,"on":true},{"x":541,"y":-9,"on":false},{"x":463,"y":56,"on":false},{"x":463,"y":113,"on":true},{"x":463,"y":151,"on":false},{"x":506,"y":203,"on":false},{"x":540,"y":222,"on":true},{"x":509,"y":243,"on":false},{"x":477,"y":290,"on":false},{"x":477,"y":325,"on":true},{"x":477,"y":378,"on":false},{"x":556,"y":436,"on":false},{"x":612,"y":436,"on":true},{"x":669,"y":436,"on":false},{"x":745,"y":380,"on":false},{"x":745,"y":327,"on":true},{"x":745,"y":292,"on":false},{"x":707,"y":244,"on":false},{"x":675,"y":226,"on":true},{"x":714,"y":209,"on":false},{"x":759,"y":156,"on":false},{"x":759,"y":116,"on":true},{"x":759,"y":60,"on":false},{"x":678,"y":-9,"on":false}], + [{"x":613,"y":256,"on":true},{"x":638,"y":267,"on":false},{"x":670,"y":299,"on":false},{"x":670,"y":323,"on":true},{"x":670,"y":346,"on":false},{"x":638,"y":375,"on":false},{"x":611,"y":375,"on":true},{"x":584,"y":375,"on":false},{"x":553,"y":346,"on":false},{"x":553,"y":323,"on":true},{"x":553,"y":300,"on":false},{"x":586,"y":268,"on":false}], + [{"x":610,"y":52,"on":true},{"x":645,"y":52,"on":false},{"x":681,"y":85,"on":false},{"x":681,"y":113,"on":true},{"x":681,"y":138,"on":false},{"x":646,"y":174,"on":false},{"x":612,"y":187,"on":true},{"x":601,"y":191,"on":true},{"x":541,"y":163,"on":false},{"x":541,"y":114,"on":true},{"x":541,"y":86,"on":false},{"x":576,"y":52,"on":false}] + ] + }, + "threeeighths": { + "advanceWidth": 816, + "contours": [ + [{"x":146,"y":278,"on":true},{"x":78,"y":278,"on":false},{"x":24,"y":307,"on":true},{"x":24,"y":379,"on":true},{"x":83,"y":344,"on":false},{"x":146,"y":344,"on":true},{"x":190,"y":344,"on":false},{"x":230,"y":379,"on":false},{"x":230,"y":409,"on":true},{"x":230,"y":476,"on":false},{"x":135,"y":476,"on":true},{"x":87,"y":476,"on":true},{"x":87,"y":537,"on":true},{"x":132,"y":537,"on":true},{"x":178,"y":537,"on":false},{"x":218,"y":574,"on":false},{"x":218,"y":603,"on":true},{"x":218,"y":630,"on":false},{"x":184,"y":658,"on":false},{"x":156,"y":658,"on":true},{"x":130,"y":658,"on":false},{"x":86,"y":639,"on":false},{"x":61,"y":621,"on":true},{"x":23,"y":673,"on":true},{"x":52,"y":696,"on":false},{"x":119,"y":723,"on":false},{"x":161,"y":723,"on":true},{"x":225,"y":723,"on":false},{"x":296,"y":663,"on":false},{"x":296,"y":613,"on":true},{"x":296,"y":576,"on":false},{"x":257,"y":524,"on":false},{"x":224,"y":512,"on":true},{"x":224,"y":508,"on":true},{"x":264,"y":498,"on":false},{"x":309,"y":446,"on":false},{"x":309,"y":405,"on":true},{"x":309,"y":347,"on":false},{"x":226,"y":278,"on":false}], + [{"x":154,"y":0,"on":true},{"x":555,"y":714,"on":true},{"x":640,"y":714,"on":true},{"x":238,"y":0,"on":true}], + [{"x":621,"y":-9,"on":true},{"x":550,"y":-9,"on":false},{"x":472,"y":56,"on":false},{"x":472,"y":113,"on":true},{"x":472,"y":151,"on":false},{"x":514,"y":203,"on":false},{"x":548,"y":222,"on":true},{"x":517,"y":243,"on":false},{"x":486,"y":290,"on":false},{"x":486,"y":325,"on":true},{"x":486,"y":378,"on":false},{"x":564,"y":436,"on":false},{"x":621,"y":436,"on":true},{"x":677,"y":436,"on":false},{"x":754,"y":380,"on":false},{"x":754,"y":327,"on":true},{"x":754,"y":292,"on":false},{"x":715,"y":244,"on":false},{"x":683,"y":226,"on":true},{"x":722,"y":209,"on":false},{"x":767,"y":156,"on":false},{"x":767,"y":116,"on":true},{"x":767,"y":60,"on":false},{"x":686,"y":-9,"on":false}], + [{"x":621,"y":256,"on":true},{"x":646,"y":267,"on":false},{"x":678,"y":299,"on":false},{"x":678,"y":323,"on":true},{"x":678,"y":346,"on":false},{"x":647,"y":375,"on":false},{"x":620,"y":375,"on":true},{"x":593,"y":375,"on":false},{"x":562,"y":346,"on":false},{"x":562,"y":323,"on":true},{"x":562,"y":300,"on":false},{"x":595,"y":268,"on":false}], + [{"x":619,"y":52,"on":true},{"x":654,"y":52,"on":false},{"x":690,"y":85,"on":false},{"x":690,"y":113,"on":true},{"x":690,"y":138,"on":false},{"x":654,"y":174,"on":false},{"x":621,"y":187,"on":true},{"x":610,"y":191,"on":true},{"x":549,"y":164,"on":false},{"x":549,"y":114,"on":true},{"x":549,"y":86,"on":false},{"x":585,"y":52,"on":false}] + ] + }, + "fiveeighths": { + "advanceWidth": 816, + "contours": [ + [{"x":153,"y":0,"on":true},{"x":554,"y":714,"on":true},{"x":639,"y":714,"on":true},{"x":237,"y":0,"on":true}], + [{"x":154,"y":277,"on":true},{"x":124,"y":277,"on":false},{"x":62,"y":289,"on":false},{"x":39,"y":301,"on":true},{"x":39,"y":375,"on":true},{"x":63,"y":359,"on":false},{"x":123,"y":342,"on":false},{"x":149,"y":342,"on":true},{"x":190,"y":342,"on":false},{"x":235,"y":380,"on":false},{"x":235,"y":421,"on":true},{"x":235,"y":457,"on":false},{"x":190,"y":495,"on":false},{"x":150,"y":495,"on":true},{"x":131,"y":495,"on":false},{"x":100,"y":488,"on":false},{"x":86,"y":484,"on":true},{"x":47,"y":507,"on":true},{"x":64,"y":714,"on":true},{"x":290,"y":714,"on":true},{"x":290,"y":648,"on":true},{"x":125,"y":648,"on":true},{"x":116,"y":552,"on":true},{"x":128,"y":554,"on":false},{"x":155,"y":557,"on":false},{"x":169,"y":557,"on":true},{"x":232,"y":557,"on":false},{"x":314,"y":487,"on":false},{"x":314,"y":424,"on":true},{"x":314,"y":354,"on":false},{"x":232,"y":277,"on":false}], + [{"x":622,"y":-9,"on":true},{"x":551,"y":-9,"on":false},{"x":473,"y":56,"on":false},{"x":473,"y":113,"on":true},{"x":473,"y":151,"on":false},{"x":516,"y":203,"on":false},{"x":550,"y":222,"on":true},{"x":519,"y":243,"on":false},{"x":487,"y":290,"on":false},{"x":487,"y":325,"on":true},{"x":487,"y":378,"on":false},{"x":566,"y":436,"on":false},{"x":622,"y":436,"on":true},{"x":679,"y":436,"on":false},{"x":755,"y":379,"on":false},{"x":755,"y":326,"on":true},{"x":755,"y":292,"on":false},{"x":717,"y":243,"on":false},{"x":685,"y":226,"on":true},{"x":723,"y":208,"on":false},{"x":769,"y":155,"on":false},{"x":769,"y":115,"on":true},{"x":769,"y":60,"on":false},{"x":687,"y":-9,"on":false}], + [{"x":623,"y":255,"on":true},{"x":648,"y":267,"on":false},{"x":679,"y":298,"on":false},{"x":679,"y":323,"on":true},{"x":679,"y":346,"on":false},{"x":648,"y":375,"on":false},{"x":621,"y":375,"on":true},{"x":594,"y":375,"on":false},{"x":563,"y":346,"on":false},{"x":563,"y":323,"on":true},{"x":563,"y":299,"on":false},{"x":596,"y":268,"on":false}], + [{"x":620,"y":52,"on":true},{"x":655,"y":52,"on":false},{"x":691,"y":85,"on":false},{"x":691,"y":113,"on":true},{"x":691,"y":138,"on":false},{"x":655,"y":174,"on":false},{"x":622,"y":187,"on":true},{"x":611,"y":191,"on":true},{"x":582,"y":177,"on":false},{"x":550,"y":140,"on":false},{"x":550,"y":114,"on":true},{"x":550,"y":86,"on":false},{"x":586,"y":52,"on":false}] + ] + }, + "seveneighths": { + "advanceWidth": 816, + "contours": [ + [{"x":119,"y":0,"on":true},{"x":521,"y":714,"on":true},{"x":605,"y":714,"on":true},{"x":204,"y":0,"on":true}], + [{"x":87,"y":286,"on":true},{"x":246,"y":646,"on":true},{"x":42,"y":646,"on":true},{"x":42,"y":714,"on":true},{"x":328,"y":714,"on":true},{"x":328,"y":658,"on":true},{"x":173,"y":286,"on":true}], + [{"x":616,"y":-9,"on":true},{"x":545,"y":-9,"on":false},{"x":467,"y":56,"on":false},{"x":467,"y":113,"on":true},{"x":467,"y":151,"on":false},{"x":510,"y":203,"on":false},{"x":544,"y":222,"on":true},{"x":513,"y":243,"on":false},{"x":481,"y":290,"on":false},{"x":481,"y":325,"on":true},{"x":481,"y":378,"on":false},{"x":560,"y":436,"on":false},{"x":616,"y":436,"on":true},{"x":673,"y":436,"on":false},{"x":749,"y":380,"on":false},{"x":749,"y":327,"on":true},{"x":749,"y":292,"on":false},{"x":711,"y":244,"on":false},{"x":679,"y":226,"on":true},{"x":717,"y":209,"on":false},{"x":763,"y":156,"on":false},{"x":763,"y":116,"on":true},{"x":763,"y":60,"on":false},{"x":681,"y":-9,"on":false}], + [{"x":617,"y":256,"on":true},{"x":642,"y":267,"on":false},{"x":673,"y":299,"on":false},{"x":673,"y":323,"on":true},{"x":673,"y":346,"on":false},{"x":642,"y":375,"on":false},{"x":615,"y":375,"on":true},{"x":588,"y":375,"on":false},{"x":557,"y":346,"on":false},{"x":557,"y":323,"on":true},{"x":557,"y":300,"on":false},{"x":590,"y":268,"on":false}], + [{"x":614,"y":52,"on":true},{"x":649,"y":52,"on":false},{"x":685,"y":85,"on":false},{"x":685,"y":113,"on":true},{"x":685,"y":138,"on":false},{"x":649,"y":174,"on":false},{"x":616,"y":187,"on":true},{"x":605,"y":191,"on":true},{"x":576,"y":178,"on":false},{"x":544,"y":140,"on":false},{"x":544,"y":114,"on":true},{"x":544,"y":86,"on":false},{"x":580,"y":52,"on":false}] + ] + }, + "uni215F": { + "advanceWidth": 442, + "references": [ + {"glyph":"glyph2828","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":319,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2184": { + "advanceWidth": 443, + "references": [ + {"glyph":"uni0254","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2189": { + "advanceWidth": 855, + "references": [ + {"glyph":"glyph2827","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"fraction","x":356,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2822","x":510,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2C60": { + "advanceWidth": 479, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":239,"on":true},{"x":7,"y":239,"on":true},{"x":7,"y":307,"on":true},{"x":86,"y":307,"on":true},{"x":86,"y":391,"on":true},{"x":7,"y":391,"on":true},{"x":7,"y":459,"on":true},{"x":86,"y":459,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":459,"on":true},{"x":352,"y":459,"on":true},{"x":352,"y":391,"on":true},{"x":191,"y":391,"on":true},{"x":191,"y":307,"on":true},{"x":352,"y":307,"on":true},{"x":352,"y":239,"on":true},{"x":191,"y":239,"on":true},{"x":191,"y":92,"on":true},{"x":456,"y":92,"on":true},{"x":456,"y":0,"on":true}] + ] + }, + "uni2C61": { + "advanceWidth": 266, + "contours": [ + [{"x":82,"y":0,"on":true},{"x":82,"y":254,"on":true},{"x":6,"y":254,"on":true},{"x":6,"y":322,"on":true},{"x":82,"y":322,"on":true},{"x":82,"y":406,"on":true},{"x":6,"y":406,"on":true},{"x":6,"y":475,"on":true},{"x":82,"y":475,"on":true},{"x":82,"y":760,"on":true},{"x":184,"y":760,"on":true},{"x":184,"y":475,"on":true},{"x":261,"y":475,"on":true},{"x":261,"y":406,"on":true},{"x":184,"y":406,"on":true},{"x":184,"y":322,"on":true},{"x":261,"y":322,"on":true},{"x":261,"y":254,"on":true},{"x":184,"y":254,"on":true},{"x":184,"y":0,"on":true}] + ] + }, + "uni2C62": { + "advanceWidth": 498, + "contours": [ + [{"x":222,"y":714,"on":true},{"x":222,"y":370,"on":true},{"x":235,"y":362,"on":false},{"x":247,"y":362,"on":true},{"x":265,"y":362,"on":false},{"x":285,"y":391,"on":false},{"x":290,"y":419,"on":true},{"x":346,"y":419,"on":true},{"x":342,"y":357,"on":false},{"x":290,"y":287,"on":false},{"x":247,"y":287,"on":true},{"x":232,"y":287,"on":false},{"x":222,"y":293,"on":true},{"x":222,"y":92,"on":true},{"x":475,"y":92,"on":true},{"x":475,"y":0,"on":true},{"x":117,"y":0,"on":true},{"x":117,"y":337,"on":true},{"x":112,"y":339,"on":false},{"x":101,"y":343,"on":false},{"x":95,"y":343,"on":true},{"x":61,"y":343,"on":false},{"x":52,"y":286,"on":true},{"x":-5,"y":286,"on":true},{"x":-1,"y":350,"on":false},{"x":50,"y":418,"on":false},{"x":95,"y":418,"on":true},{"x":105,"y":418,"on":false},{"x":117,"y":413,"on":true},{"x":117,"y":714,"on":true}] + ] + }, + "uni2C63": { + "advanceWidth": 555, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":449,"on":true},{"x":8,"y":449,"on":true},{"x":8,"y":526,"on":true},{"x":86,"y":526,"on":true},{"x":86,"y":714,"on":true},{"x":267,"y":714,"on":true},{"x":394,"y":714,"on":false},{"x":512,"y":601,"on":false},{"x":512,"y":494,"on":true},{"x":512,"y":426,"on":false},{"x":462,"y":319,"on":false},{"x":349,"y":258,"on":false},{"x":256,"y":258,"on":true},{"x":191,"y":258,"on":true},{"x":191,"y":0,"on":true}], + [{"x":191,"y":347,"on":true},{"x":245,"y":347,"on":true},{"x":325,"y":347,"on":false},{"x":405,"y":412,"on":false},{"x":405,"y":491,"on":true},{"x":405,"y":560,"on":false},{"x":335,"y":625,"on":false},{"x":260,"y":625,"on":true},{"x":191,"y":625,"on":true},{"x":191,"y":526,"on":true},{"x":308,"y":526,"on":true},{"x":308,"y":449,"on":true},{"x":191,"y":449,"on":true}] + ] + }, + "uni2C64": { + "advanceWidth": 576, + "contours": [ + [{"x":263,"y":714,"on":true},{"x":391,"y":714,"on":false},{"x":513,"y":612,"on":false},{"x":513,"y":509,"on":true},{"x":513,"y":432,"on":false},{"x":440,"y":340,"on":false},{"x":385,"y":318,"on":true},{"x":565,"y":0,"on":true},{"x":447,"y":0,"on":true},{"x":292,"y":290,"on":true},{"x":191,"y":290,"on":true},{"x":191,"y":-49,"on":true},{"x":191,"y":-96,"on":false},{"x":220,"y":-135,"on":false},{"x":250,"y":-135,"on":true},{"x":265,"y":-135,"on":false},{"x":290,"y":-130,"on":false},{"x":301,"y":-125,"on":true},{"x":301,"y":-212,"on":true},{"x":273,"y":-225,"on":false},{"x":236,"y":-225,"on":true},{"x":163,"y":-225,"on":false},{"x":86,"y":-144,"on":false},{"x":86,"y":-55,"on":true},{"x":86,"y":714,"on":true}], + [{"x":259,"y":624,"on":true},{"x":191,"y":624,"on":true},{"x":191,"y":377,"on":true},{"x":265,"y":377,"on":true},{"x":406,"y":377,"on":false},{"x":406,"y":505,"on":true},{"x":406,"y":569,"on":false},{"x":334,"y":624,"on":false}] + ] + }, + "uni2C65": { + "advanceWidth": 521, + "contours": [ + [{"x":157,"y":-208,"on":true},{"x":95,"y":-208,"on":true},{"x":149,"y":-5,"on":true},{"x":98,"y":7,"on":false},{"x":40,"y":89,"on":false},{"x":40,"y":153,"on":true},{"x":40,"y":306,"on":false},{"x":237,"y":324,"on":true},{"x":276,"y":467,"on":true},{"x":267,"y":468,"on":false},{"x":257,"y":468,"on":true},{"x":222,"y":468,"on":false},{"x":155,"y":446,"on":false},{"x":123,"y":430,"on":true},{"x":91,"y":504,"on":true},{"x":127,"y":524,"on":false},{"x":218,"y":549,"on":false},{"x":267,"y":549,"on":true},{"x":283,"y":549,"on":false},{"x":297,"y":548,"on":true},{"x":354,"y":760,"on":true},{"x":417,"y":760,"on":true},{"x":356,"y":534,"on":true},{"x":449,"y":497,"on":false},{"x":449,"y":364,"on":true},{"x":449,"y":0,"on":true},{"x":374,"y":0,"on":true},{"x":356,"y":75,"on":true},{"x":353,"y":75,"on":true},{"x":325,"y":35,"on":false},{"x":261,"y":-6,"on":false},{"x":210,"y":-9,"on":true}], + [{"x":348,"y":359,"on":true},{"x":348,"y":409,"on":false},{"x":330,"y":436,"on":true},{"x":301,"y":327,"on":true},{"x":348,"y":329,"on":true}], + [{"x":347,"y":260,"on":true},{"x":285,"y":258,"on":true},{"x":282,"y":258,"on":true},{"x":232,"y":70,"on":true},{"x":283,"y":73,"on":false},{"x":347,"y":144,"on":false},{"x":347,"y":211,"on":true}], + [{"x":145,"y":154,"on":true},{"x":145,"y":105,"on":false},{"x":173,"y":84,"on":true},{"x":217,"y":248,"on":true},{"x":178,"y":237,"on":false},{"x":145,"y":189,"on":false}] + ] + }, + "uni2C66": { + "advanceWidth": 344, + "contours": [ + [{"x":113,"y":-208,"on":true},{"x":50,"y":-208,"on":true},{"x":114,"y":37,"on":true},{"x":99,"y":56,"on":false},{"x":83,"y":114,"on":false},{"x":83,"y":154,"on":true},{"x":83,"y":459,"on":true},{"x":17,"y":459,"on":true},{"x":17,"y":508,"on":true},{"x":88,"y":543,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":539,"on":true},{"x":245,"y":539,"on":true},{"x":303,"y":760,"on":true},{"x":366,"y":760,"on":true},{"x":308,"y":539,"on":true},{"x":317,"y":539,"on":true},{"x":317,"y":459,"on":true},{"x":287,"y":459,"on":true},{"x":195,"y":107,"on":true},{"x":211,"y":75,"on":false},{"x":252,"y":75,"on":true},{"x":290,"y":75,"on":false},{"x":322,"y":88,"on":true},{"x":322,"y":9,"on":true},{"x":305,"y":1,"on":false},{"x":254,"y":-10,"on":false},{"x":226,"y":-10,"on":true},{"x":193,"y":-10,"on":false},{"x":167,"y":-1,"on":true}], + [{"x":185,"y":459,"on":true},{"x":185,"y":309,"on":true},{"x":224,"y":459,"on":true}] + ] + }, + "uni2C67": { + "advanceWidth": 703, + "references": [ + {"glyph":"uni04A2","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2C68": { + "advanceWidth": 585, + "contours": [ + [{"x":178,"y":760,"on":true},{"x":178,"y":558,"on":true},{"x":178,"y":532,"on":false},{"x":174,"y":484,"on":false},{"x":171,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":508,"on":false},{"x":278,"y":549,"on":false},{"x":325,"y":549,"on":true},{"x":410,"y":549,"on":false},{"x":498,"y":454,"on":false},{"x":498,"y":355,"on":true},{"x":498,"y":84,"on":true},{"x":571,"y":84,"on":true},{"x":571,"y":-189,"on":true},{"x":473,"y":-189,"on":true},{"x":473,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":402,"on":false},{"x":352,"y":463,"on":false},{"x":303,"y":463,"on":true},{"x":232,"y":463,"on":false},{"x":178,"y":366,"on":false},{"x":178,"y":272,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true}] + ] + }, + "uni2C69": { + "advanceWidth": 592, + "contours": [ + [{"x":586,"y":93,"on":true},{"x":586,"y":-196,"on":true},{"x":485,"y":-196,"on":true},{"x":485,"y":0,"on":true},{"x":453,"y":0,"on":true},{"x":253,"y":325,"on":true},{"x":191,"y":268,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":368,"on":true},{"x":209,"y":393,"on":false},{"x":252,"y":449,"on":false},{"x":276,"y":481,"on":true},{"x":448,"y":714,"on":true},{"x":565,"y":714,"on":true},{"x":328,"y":400,"on":true},{"x":516,"y":93,"on":true}] + ] + }, + "uni2C6A": { + "advanceWidth": 528, + "contours": [ + [{"x":518,"y":84,"on":true},{"x":518,"y":-189,"on":true},{"x":420,"y":-189,"on":true},{"x":420,"y":0,"on":true},{"x":386,"y":0,"on":true},{"x":236,"y":246,"on":true},{"x":177,"y":190,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":177,"y":760,"on":true},{"x":177,"y":386,"on":true},{"x":177,"y":362,"on":false},{"x":174,"y":307,"on":false},{"x":172,"y":282,"on":true},{"x":175,"y":282,"on":true},{"x":186,"y":298,"on":false},{"x":216,"y":341,"on":false},{"x":229,"y":357,"on":true},{"x":377,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":305,"y":315,"on":true},{"x":451,"y":84,"on":true}] + ] + }, + "uni2C6B": { + "advanceWidth": 503, + "contours": [ + [{"x":373,"y":-196,"on":true},{"x":373,"y":0,"on":true},{"x":31,"y":0,"on":true},{"x":31,"y":76,"on":true},{"x":342,"y":623,"on":true},{"x":39,"y":623,"on":true},{"x":39,"y":714,"on":true},{"x":466,"y":714,"on":true},{"x":466,"y":638,"on":true},{"x":153,"y":92,"on":true},{"x":474,"y":92,"on":true},{"x":474,"y":-196,"on":true}] + ] + }, + "uni2C6C": { + "advanceWidth": 418, + "contours": [ + [{"x":290,"y":-189,"on":true},{"x":290,"y":0,"on":true},{"x":31,"y":0,"on":true},{"x":31,"y":65,"on":true},{"x":267,"y":458,"on":true},{"x":45,"y":458,"on":true},{"x":45,"y":539,"on":true},{"x":380,"y":539,"on":true},{"x":380,"y":467,"on":true},{"x":149,"y":81,"on":true},{"x":388,"y":81,"on":true},{"x":388,"y":-189,"on":true}] + ] + }, + "uni2C6D": { + "advanceWidth": 695, + "contours": [ + [{"x":315,"y":724,"on":true},{"x":381,"y":724,"on":false},{"x":476,"y":671,"on":false},{"x":500,"y":627,"on":true},{"x":505,"y":627,"on":true},{"x":522,"y":714,"on":true},{"x":609,"y":714,"on":true},{"x":609,"y":0,"on":true},{"x":524,"y":0,"on":true},{"x":504,"y":88,"on":true},{"x":498,"y":88,"on":true},{"x":474,"y":44,"on":false},{"x":382,"y":-10,"on":false},{"x":312,"y":-10,"on":true},{"x":234,"y":-10,"on":false},{"x":119,"y":78,"on":false},{"x":56,"y":243,"on":false},{"x":56,"y":358,"on":true},{"x":56,"y":472,"on":false},{"x":119,"y":636,"on":false},{"x":236,"y":724,"on":false}], + [{"x":333,"y":633,"on":true},{"x":254,"y":633,"on":false},{"x":165,"y":486,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":225,"on":false},{"x":254,"y":82,"on":false},{"x":334,"y":82,"on":true},{"x":427,"y":82,"on":false},{"x":505,"y":202,"on":false},{"x":505,"y":314,"on":true},{"x":505,"y":412,"on":true},{"x":505,"y":517,"on":false},{"x":428,"y":633,"on":false}] + ] + }, + "uni2C6E": { + "advanceWidth": 845, + "contours": [ + [{"x":760,"y":714,"on":true},{"x":760,"y":3,"on":true},{"x":760,"y":-103,"on":false},{"x":669,"y":-198,"on":false},{"x":587,"y":-198,"on":true},{"x":540,"y":-198,"on":false},{"x":511,"y":-186,"on":true},{"x":511,"y":-100,"on":true},{"x":525,"y":-104,"on":false},{"x":557,"y":-110,"on":false},{"x":574,"y":-110,"on":true},{"x":618,"y":-110,"on":false},{"x":659,"y":-56,"on":false},{"x":659,"y":4,"on":true},{"x":659,"y":427,"on":true},{"x":659,"y":464,"on":false},{"x":663,"y":548,"on":false},{"x":666,"y":593,"on":true},{"x":662,"y":593,"on":true},{"x":464,"y":0,"on":true},{"x":373,"y":0,"on":true},{"x":180,"y":593,"on":true},{"x":176,"y":593,"on":true},{"x":182,"y":502,"on":false},{"x":182,"y":423,"on":true},{"x":182,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":233,"y":714,"on":true},{"x":420,"y":142,"on":true},{"x":423,"y":142,"on":true},{"x":613,"y":714,"on":true}] + ] + }, + "uni2C6F": { + "advanceWidth": 587, + "references": [ + {"glyph":"A","x":587,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2C70": { + "advanceWidth": 695, + "references": [ + {"glyph":"uni2C6D","x":695,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2C71": { + "advanceWidth": 499, + "references": [ + {"glyph":"uni0475","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2C72": { + "advanceWidth": 898, + "contours": [ + [{"x":851,"y":721,"on":true},{"x":867,"y":721,"on":false},{"x":894,"y":716,"on":false},{"x":905,"y":712,"on":true},{"x":905,"y":626,"on":true},{"x":898,"y":628,"on":false},{"x":880,"y":632,"on":false},{"x":873,"y":632,"on":true},{"x":848,"y":632,"on":false},{"x":822,"y":593,"on":false},{"x":811,"y":544,"on":true},{"x":685,"y":0,"on":true},{"x":569,"y":0,"on":true},{"x":461,"y":433,"on":true},{"x":453,"y":465,"on":false},{"x":435,"y":553,"on":false},{"x":431,"y":583,"on":true},{"x":428,"y":559,"on":false},{"x":412,"y":470,"on":false},{"x":402,"y":432,"on":true},{"x":293,"y":0,"on":true},{"x":178,"y":0,"on":true},{"x":6,"y":714,"on":true},{"x":113,"y":714,"on":true},{"x":209,"y":294,"on":true},{"x":219,"y":248,"on":false},{"x":236,"y":153,"on":false},{"x":240,"y":116,"on":true},{"x":246,"y":157,"on":false},{"x":264,"y":255,"on":false},{"x":274,"y":294,"on":true},{"x":381,"y":714,"on":true},{"x":482,"y":714,"on":true},{"x":588,"y":293,"on":true},{"x":598,"y":253,"on":false},{"x":616,"y":157,"on":false},{"x":621,"y":116,"on":true},{"x":626,"y":156,"on":false},{"x":643,"y":252,"on":false},{"x":653,"y":295,"on":true},{"x":720,"y":584,"on":true},{"x":736,"y":657,"on":false},{"x":796,"y":720,"on":false}] + ] + }, + "uni2C73": { + "advanceWidth": 766, + "contours": [ + [{"x":147,"y":0,"on":true},{"x":10,"y":539,"on":true},{"x":113,"y":539,"on":true},{"x":176,"y":274,"on":true},{"x":186,"y":233,"on":false},{"x":203,"y":140,"on":false},{"x":207,"y":105,"on":true},{"x":211,"y":105,"on":true},{"x":215,"y":135,"on":false},{"x":232,"y":227,"on":false},{"x":241,"y":262,"on":true},{"x":315,"y":539,"on":true},{"x":428,"y":539,"on":true},{"x":500,"y":261,"on":true},{"x":508,"y":230,"on":false},{"x":526,"y":142,"on":false},{"x":530,"y":106,"on":true},{"x":534,"y":106,"on":true},{"x":536,"y":131,"on":false},{"x":551,"y":212,"on":false},{"x":560,"y":254,"on":true},{"x":599,"y":425,"on":true},{"x":613,"y":493,"on":false},{"x":669,"y":548,"on":false},{"x":716,"y":549,"on":true},{"x":734,"y":549,"on":false},{"x":762,"y":542,"on":false},{"x":773,"y":538,"on":true},{"x":773,"y":460,"on":true},{"x":767,"y":462,"on":false},{"x":750,"y":466,"on":false},{"x":743,"y":466,"on":true},{"x":722,"y":466,"on":false},{"x":697,"y":433,"on":false},{"x":687,"y":391,"on":true},{"x":592,"y":0,"on":true},{"x":476,"y":0,"on":true},{"x":405,"y":284,"on":true},{"x":399,"y":308,"on":false},{"x":385,"y":369,"on":false},{"x":374,"y":424,"on":false},{"x":372,"y":439,"on":true},{"x":368,"y":439,"on":true},{"x":366,"y":424,"on":false},{"x":354,"y":369,"on":false},{"x":341,"y":308,"on":false},{"x":335,"y":284,"on":true},{"x":261,"y":0,"on":true}] + ] + }, + "uni2C74": { + "advanceWidth": 477, + "contours": [ + [{"x":167,"y":551,"on":true},{"x":218,"y":551,"on":false},{"x":280,"y":490,"on":false},{"x":280,"y":436,"on":true},{"x":280,"y":381,"on":false},{"x":230,"y":301,"on":false},{"x":183,"y":275,"on":true},{"x":201,"y":223,"on":true},{"x":210,"y":193,"on":false},{"x":228,"y":124,"on":false},{"x":233,"y":97,"on":true},{"x":237,"y":97,"on":true},{"x":240,"y":120,"on":false},{"x":258,"y":188,"on":false},{"x":268,"y":220,"on":true},{"x":368,"y":539,"on":true},{"x":475,"y":539,"on":true},{"x":292,"y":0,"on":true},{"x":179,"y":0,"on":true},{"x":95,"y":249,"on":true},{"x":77,"y":246,"on":false},{"x":30,"y":242,"on":false},{"x":9,"y":243,"on":true},{"x":9,"y":313,"on":true},{"x":26,"y":313,"on":false},{"x":57,"y":315,"on":false},{"x":72,"y":317,"on":true},{"x":62,"y":348,"on":false},{"x":49,"y":404,"on":false},{"x":49,"y":432,"on":true},{"x":49,"y":490,"on":false},{"x":118,"y":551,"on":false}], + [{"x":167,"y":481,"on":true},{"x":147,"y":481,"on":false},{"x":129,"y":453,"on":false},{"x":129,"y":437,"on":true},{"x":129,"y":412,"on":false},{"x":142,"y":369,"on":false},{"x":154,"y":343,"on":true},{"x":176,"y":356,"on":false},{"x":204,"y":401,"on":false},{"x":204,"y":433,"on":true},{"x":204,"y":456,"on":false},{"x":184,"y":481,"on":false}] + ] + }, + "uni2C75": { + "advanceWidth": 478, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":441,"y":418,"on":true},{"x":441,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true}] + ] + }, + "uni2C76": { + "advanceWidth": 405, + "contours": [ + [{"x":178,"y":539,"on":true},{"x":178,"y":320,"on":true},{"x":377,"y":320,"on":true},{"x":377,"y":236,"on":true},{"x":178,"y":236,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true}] + ] + }, + "uni2C77": { + "advanceWidth": 691, + "contours": [ + [{"x":340,"y":-10,"on":true},{"x":256,"y":-10,"on":false},{"x":124,"y":42,"on":false},{"x":48,"y":165,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":351,"on":false},{"x":103,"y":488,"on":false},{"x":150,"y":546,"on":true},{"x":227,"y":495,"on":true},{"x":191,"y":446,"on":false},{"x":149,"y":336,"on":false},{"x":149,"y":268,"on":true},{"x":149,"y":173,"on":false},{"x":230,"y":85,"on":false},{"x":291,"y":76,"on":true},{"x":291,"y":361,"on":true},{"x":291,"y":454,"on":false},{"x":375,"y":549,"on":false},{"x":450,"y":549,"on":true},{"x":512,"y":549,"on":false},{"x":598,"y":481,"on":false},{"x":644,"y":362,"on":false},{"x":644,"y":285,"on":true},{"x":644,"y":179,"on":false},{"x":563,"y":49,"on":false},{"x":426,"y":-10,"on":false}], + [{"x":390,"y":76,"on":true},{"x":456,"y":83,"on":false},{"x":541,"y":189,"on":false},{"x":541,"y":284,"on":true},{"x":542,"y":369,"on":false},{"x":492,"y":467,"on":false},{"x":450,"y":466,"on":true},{"x":422,"y":466,"on":false},{"x":390,"y":419,"on":false},{"x":390,"y":362,"on":true}] + ] + }, + "uni2C78": { + "advanceWidth": 628, + "contours": [ + [{"x":627,"y":175,"on":true},{"x":640,"y":147,"on":false},{"x":640,"y":114,"on":true},{"x":640,"y":63,"on":false},{"x":580,"y":-10,"on":false},{"x":518,"y":-10,"on":true},{"x":489,"y":-10,"on":false},{"x":447,"y":6,"on":false},{"x":431,"y":20,"on":true},{"x":398,"y":5,"on":false},{"x":330,"y":-10,"on":false},{"x":287,"y":-10,"on":true},{"x":171,"y":-10,"on":false},{"x":47,"y":137,"on":false},{"x":47,"y":266,"on":true},{"x":47,"y":400,"on":false},{"x":164,"y":549,"on":false},{"x":269,"y":549,"on":true},{"x":369,"y":549,"on":false},{"x":476,"y":416,"on":false},{"x":476,"y":306,"on":true},{"x":476,"y":247,"on":true},{"x":150,"y":247,"on":true},{"x":153,"y":72,"on":false},{"x":294,"y":72,"on":true},{"x":337,"y":72,"on":false},{"x":410,"y":92,"on":false},{"x":451,"y":112,"on":true},{"x":454,"y":91,"on":false},{"x":484,"y":63,"on":false},{"x":508,"y":63,"on":true},{"x":534,"y":63,"on":false},{"x":567,"y":94,"on":false},{"x":567,"y":125,"on":true},{"x":567,"y":138,"on":false},{"x":560,"y":163,"on":false},{"x":555,"y":175,"on":true}], + [{"x":269,"y":471,"on":true},{"x":219,"y":471,"on":false},{"x":156,"y":397,"on":false},{"x":152,"y":321,"on":true},{"x":378,"y":321,"on":true},{"x":377,"y":385,"on":false},{"x":324,"y":471,"on":false}] + ] + }, + "uni2C79": { + "advanceWidth": 386, + "contours": [ + [{"x":311,"y":0,"on":true},{"x":231,"y":0,"on":true},{"x":217,"y":93,"on":true},{"x":212,"y":93,"on":true},{"x":190,"y":46,"on":false},{"x":119,"y":-10,"on":false},{"x":70,"y":-10,"on":true},{"x":58,"y":-10,"on":false},{"x":29,"y":-7,"on":false},{"x":16,"y":-4,"on":true},{"x":27,"y":96,"on":true},{"x":38,"y":93,"on":false},{"x":64,"y":89,"on":false},{"x":77,"y":89,"on":true},{"x":134,"y":89,"on":false},{"x":209,"y":180,"on":false},{"x":209,"y":257,"on":true},{"x":209,"y":597,"on":true},{"x":209,"y":639,"on":false},{"x":179,"y":679,"on":false},{"x":143,"y":679,"on":true},{"x":126,"y":679,"on":false},{"x":94,"y":674,"on":false},{"x":80,"y":669,"on":true},{"x":66,"y":750,"on":true},{"x":80,"y":756,"on":false},{"x":131,"y":765,"on":false},{"x":156,"y":765,"on":true},{"x":230,"y":765,"on":false},{"x":311,"y":693,"on":false},{"x":311,"y":605,"on":true}] + ] + }, + "uni2C7A": { + "advanceWidth": 557, + "contours": [ + [{"x":513,"y":271,"on":true},{"x":513,"y":141,"on":false},{"x":392,"y":-10,"on":false},{"x":279,"y":-10,"on":true},{"x":208,"y":-10,"on":false},{"x":104,"y":58,"on":false},{"x":47,"y":184,"on":false},{"x":47,"y":271,"on":true},{"x":47,"y":404,"on":false},{"x":168,"y":551,"on":false},{"x":281,"y":551,"on":true},{"x":385,"y":551,"on":false},{"x":513,"y":407,"on":false}], + [{"x":411,"y":270,"on":true},{"x":411,"y":363,"on":false},{"x":348,"y":465,"on":false},{"x":280,"y":465,"on":true},{"x":212,"y":465,"on":false},{"x":150,"y":364,"on":false},{"x":150,"y":270,"on":true},{"x":150,"y":188,"on":false},{"x":173,"y":139,"on":true},{"x":177,"y":182,"on":false},{"x":234,"y":234,"on":false},{"x":279,"y":234,"on":true},{"x":325,"y":234,"on":false},{"x":384,"y":180,"on":false},{"x":386,"y":136,"on":true},{"x":411,"y":185,"on":false}], + [{"x":332,"y":127,"on":true},{"x":332,"y":151,"on":false},{"x":302,"y":179,"on":false},{"x":279,"y":179,"on":true},{"x":256,"y":179,"on":false},{"x":227,"y":151,"on":false},{"x":227,"y":127,"on":true},{"x":227,"y":103,"on":false},{"x":254,"y":75,"on":false},{"x":279,"y":75,"on":true},{"x":302,"y":75,"on":false},{"x":332,"y":103,"on":false}] + ] + }, + "uni2C7B": { + "advanceWidth": 427, + "contours": [ + [{"x":50,"y":0,"on":true},{"x":50,"y":78,"on":true},{"x":254,"y":78,"on":true},{"x":254,"y":242,"on":true},{"x":62,"y":242,"on":true},{"x":62,"y":320,"on":true},{"x":254,"y":320,"on":true},{"x":254,"y":461,"on":true},{"x":50,"y":461,"on":true},{"x":50,"y":539,"on":true},{"x":349,"y":539,"on":true},{"x":349,"y":0,"on":true}] + ] + }, + "uni2C7C": { + "advanceWidth": 165, + "references": [ + {"glyph":"j","x":0,"y":-96,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2C7D": { + "advanceWidth": 363, + "references": [ + {"glyph":"V","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uni2C7E": { + "advanceWidth": 501, + "contours": [ + [{"x":453,"y":682,"on":true},{"x":419,"y":594,"on":true},{"x":378,"y":613,"on":false},{"x":304,"y":633,"on":false},{"x":269,"y":633,"on":true},{"x":217,"y":633,"on":false},{"x":157,"y":580,"on":false},{"x":157,"y":535,"on":true},{"x":157,"y":500,"on":false},{"x":187,"y":456,"on":false},{"x":247,"y":422,"on":false},{"x":292,"y":401,"on":true},{"x":344,"y":377,"on":false},{"x":419,"y":323,"on":false},{"x":461,"y":248,"on":false},{"x":461,"y":195,"on":true},{"x":461,"y":106,"on":false},{"x":350,"y":-4,"on":false},{"x":249,"y":-9,"on":true},{"x":241,"y":-9,"on":false},{"x":224,"y":-8,"on":false},{"x":217,"y":-8,"on":true},{"x":228,"y":-18,"on":false},{"x":245,"y":-46,"on":false},{"x":250,"y":-61,"on":true},{"x":269,"y":-111,"on":false},{"x":313,"y":-149,"on":false},{"x":348,"y":-149,"on":true},{"x":364,"y":-149,"on":false},{"x":396,"y":-142,"on":false},{"x":409,"y":-134,"on":true},{"x":409,"y":-217,"on":true},{"x":396,"y":-224,"on":false},{"x":351,"y":-233,"on":false},{"x":329,"y":-233,"on":true},{"x":276,"y":-233,"on":false},{"x":211,"y":-195,"on":false},{"x":172,"y":-128,"on":false},{"x":156,"y":-85,"on":true},{"x":142,"y":-46,"on":false},{"x":110,"y":-4,"on":false},{"x":82,"y":10,"on":true},{"x":73,"y":14,"on":false},{"x":53,"y":22,"on":false},{"x":45,"y":26,"on":true},{"x":45,"y":128,"on":true},{"x":87,"y":108,"on":false},{"x":182,"y":82,"on":false},{"x":231,"y":82,"on":true},{"x":290,"y":82,"on":false},{"x":355,"y":141,"on":false},{"x":355,"y":188,"on":true},{"x":355,"y":222,"on":false},{"x":323,"y":268,"on":false},{"x":260,"y":304,"on":false},{"x":216,"y":325,"on":true},{"x":172,"y":345,"on":false},{"x":97,"y":395,"on":false},{"x":52,"y":472,"on":false},{"x":52,"y":531,"on":true},{"x":52,"y":590,"on":false},{"x":107,"y":677,"on":false},{"x":205,"y":724,"on":false},{"x":269,"y":724,"on":true},{"x":318,"y":724,"on":false},{"x":410,"y":702,"on":false}] + ] + }, + "uni2C7F": { + "advanceWidth": 505, + "contours": [ + [{"x":29,"y":0,"on":true},{"x":29,"y":73,"on":true},{"x":346,"y":623,"on":true},{"x":39,"y":623,"on":true},{"x":39,"y":714,"on":true},{"x":470,"y":714,"on":true},{"x":470,"y":641,"on":true},{"x":150,"y":85,"on":true},{"x":208,"y":78,"on":false},{"x":273,"y":8,"on":false},{"x":294,"y":-43,"on":true},{"x":320,"y":-105,"on":false},{"x":380,"y":-145,"on":false},{"x":408,"y":-145,"on":true},{"x":428,"y":-145,"on":false},{"x":466,"y":-138,"on":false},{"x":481,"y":-131,"on":true},{"x":481,"y":-217,"on":true},{"x":465,"y":-224,"on":false},{"x":414,"y":-233,"on":false},{"x":390,"y":-233,"on":true},{"x":316,"y":-233,"on":false},{"x":228,"y":-153,"on":false},{"x":205,"y":-90,"on":true},{"x":185,"y":-40,"on":false},{"x":138,"y":0,"on":false},{"x":94,"y":0,"on":true}] + ] + }, + "uni2DE0": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0431","x":-114,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DE1": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0432","x":-111,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DE2": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0433","x":-81,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DE3": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0434","x":-115,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DE4": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0436","x":-152,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DE5": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0437","x":-93,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DE6": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni043A","x":-104,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DE7": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni043B","x":-112,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DE8": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni043C","x":-149,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DE9": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni043D","x":-121,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DEA": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni043E","x":-114,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DEB": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni043F","x":-119,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DEC": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0440","x":-117,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DED": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0441","x":-90,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DEE": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0442","x":-89,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DEF": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0445","x":-100,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DF0": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0446","x":-123,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DF1": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0447","x":-118,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DF2": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0448","x":-176,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DF3": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0449","x":-179,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DF4": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0473","x":-115,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DF5": { + "advanceWidth": 0, + "contours": [ + [{"x":-74,"y":616,"on":true},{"x":-121,"y":616,"on":false},{"x":-175,"y":670,"on":false},{"x":-175,"y":727,"on":true},{"x":-175,"y":782,"on":false},{"x":-119,"y":836,"on":false},{"x":-71,"y":836,"on":true},{"x":164,"y":836,"on":true},{"x":164,"y":802,"on":true},{"x":95,"y":802,"on":true},{"x":95,"y":620,"on":true},{"x":50,"y":620,"on":true},{"x":50,"y":802,"on":true},{"x":-71,"y":802,"on":true},{"x":-128,"y":802,"on":false},{"x":-128,"y":727,"on":true},{"x":-128,"y":650,"on":false},{"x":-71,"y":650,"on":true},{"x":-54,"y":650,"on":false},{"x":-27,"y":658,"on":false},{"x":-15,"y":664,"on":true},{"x":-15,"y":629,"on":true},{"x":-38,"y":616,"on":false}] + ] + }, + "uni2DF6": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0430","x":-107,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DF7": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0435","x":-107,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DF8": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniA649","x":-120,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DF9": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniA64B","x":-95,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DFA": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni1C87","x":-118,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DFB": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni044E","x":-164,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DFC": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniA657","x":-169,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DFD": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0467","x":-113,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DFE": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni046B","x":-124,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2DFF": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni046D","x":-173,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uni2E00": { + "advanceWidth": 500, + "contours": [ + [{"x":180,"y":276,"on":true},{"x":120,"y":276,"on":true},{"x":120,"y":714,"on":true},{"x":380,"y":714,"on":true},{"x":380,"y":654,"on":true},{"x":180,"y":654,"on":true}] + ] + }, + "uni2E01": { + "advanceWidth": 500, + "contours": [ + [{"x":179,"y":276,"on":true},{"x":120,"y":276,"on":true},{"x":120,"y":714,"on":true},{"x":380,"y":714,"on":true},{"x":380,"y":655,"on":true},{"x":179,"y":655,"on":true}], + [{"x":257,"y":509,"on":true},{"x":257,"y":536,"on":false},{"x":283,"y":562,"on":false},{"x":303,"y":562,"on":true},{"x":323,"y":562,"on":false},{"x":350,"y":536,"on":false},{"x":350,"y":509,"on":true},{"x":350,"y":482,"on":false},{"x":323,"y":457,"on":false},{"x":303,"y":457,"on":true},{"x":283,"y":457,"on":false},{"x":257,"y":482,"on":false}] + ] + }, + "uni2E02": { + "advanceWidth": 500, + "contours": [ + [{"x":187,"y":276,"on":true},{"x":129,"y":276,"on":true},{"x":129,"y":588,"on":true},{"x":341,"y":714,"on":true},{"x":371,"y":664,"on":true},{"x":187,"y":556,"on":true}] + ] + }, + "uni2E03": { + "advanceWidth": 500, + "contours": [ + [{"x":313,"y":276,"on":true},{"x":313,"y":556,"on":true},{"x":129,"y":664,"on":true},{"x":159,"y":714,"on":true},{"x":371,"y":588,"on":true},{"x":371,"y":276,"on":true}] + ] + }, + "uni2E04": { + "advanceWidth": 500, + "contours": [ + [{"x":122,"y":276,"on":true},{"x":122,"y":588,"on":true},{"x":334,"y":714,"on":true},{"x":364,"y":664,"on":true},{"x":180,"y":556,"on":true},{"x":180,"y":276,"on":true}], + [{"x":314,"y":406,"on":true},{"x":294,"y":406,"on":false},{"x":267,"y":432,"on":false},{"x":267,"y":459,"on":true},{"x":267,"y":485,"on":false},{"x":294,"y":511,"on":false},{"x":314,"y":511,"on":true},{"x":334,"y":511,"on":false},{"x":360,"y":485,"on":false},{"x":360,"y":459,"on":true},{"x":360,"y":432,"on":false},{"x":334,"y":406,"on":false}] + ] + }, + "uni2E05": { + "advanceWidth": 500, + "contours": [ + [{"x":320,"y":276,"on":true},{"x":320,"y":556,"on":true},{"x":135,"y":664,"on":true},{"x":166,"y":714,"on":true},{"x":378,"y":588,"on":true},{"x":378,"y":276,"on":true}], + [{"x":186,"y":406,"on":true},{"x":165,"y":406,"on":false},{"x":140,"y":432,"on":false},{"x":140,"y":459,"on":true},{"x":140,"y":485,"on":false},{"x":165,"y":511,"on":false},{"x":186,"y":511,"on":true},{"x":206,"y":511,"on":false},{"x":233,"y":485,"on":false},{"x":233,"y":459,"on":true},{"x":233,"y":432,"on":false},{"x":206,"y":406,"on":false}] + ] + }, + "uni2E06": { + "advanceWidth": 500, + "contours": [ + [{"x":279,"y":276,"on":true},{"x":220,"y":276,"on":true},{"x":220,"y":655,"on":true},{"x":35,"y":655,"on":true},{"x":35,"y":714,"on":true},{"x":464,"y":714,"on":true},{"x":464,"y":655,"on":true},{"x":279,"y":655,"on":true}] + ] + }, + "uni2E07": { + "advanceWidth": 500, + "contours": [ + [{"x":279,"y":276,"on":true},{"x":220,"y":276,"on":true},{"x":220,"y":655,"on":true},{"x":35,"y":655,"on":true},{"x":35,"y":714,"on":true},{"x":464,"y":714,"on":true},{"x":464,"y":655,"on":true},{"x":279,"y":655,"on":true}], + [{"x":351,"y":495,"on":true},{"x":351,"y":522,"on":false},{"x":377,"y":548,"on":false},{"x":398,"y":548,"on":true},{"x":418,"y":548,"on":false},{"x":444,"y":522,"on":false},{"x":444,"y":495,"on":true},{"x":444,"y":469,"on":false},{"x":418,"y":443,"on":false},{"x":398,"y":443,"on":true},{"x":377,"y":443,"on":false},{"x":351,"y":469,"on":false}] + ] + }, + "uni2E08": { + "advanceWidth": 500, + "contours": [ + [{"x":175,"y":281,"on":true},{"x":134,"y":282,"on":false},{"x":78,"y":308,"on":false},{"x":50,"y":342,"on":false},{"x":50,"y":354,"on":true},{"x":50,"y":366,"on":false},{"x":64,"y":384,"on":false},{"x":78,"y":384,"on":true},{"x":88,"y":384,"on":false},{"x":106,"y":372,"on":false},{"x":120,"y":360,"on":true},{"x":144,"y":339,"on":false},{"x":180,"y":339,"on":true},{"x":204,"y":339,"on":false},{"x":240,"y":370,"on":false},{"x":240,"y":409,"on":true},{"x":240,"y":429,"on":false},{"x":226,"y":475,"on":false},{"x":218,"y":500,"on":true},{"x":209,"y":527,"on":false},{"x":193,"y":583,"on":false},{"x":193,"y":610,"on":true},{"x":193,"y":663,"on":false},{"x":264,"y":726,"on":false},{"x":325,"y":726,"on":true},{"x":364,"y":726,"on":false},{"x":416,"y":703,"on":false},{"x":442,"y":671,"on":false},{"x":442,"y":658,"on":true},{"x":442,"y":649,"on":false},{"x":429,"y":629,"on":false},{"x":413,"y":629,"on":true},{"x":403,"y":629,"on":false},{"x":386,"y":637,"on":false},{"x":379,"y":644,"on":true},{"x":368,"y":653,"on":false},{"x":343,"y":667,"on":false},{"x":323,"y":667,"on":true},{"x":296,"y":667,"on":false},{"x":258,"y":639,"on":false},{"x":258,"y":609,"on":true},{"x":258,"y":585,"on":false},{"x":272,"y":537,"on":false},{"x":281,"y":512,"on":true},{"x":289,"y":488,"on":false},{"x":305,"y":433,"on":false},{"x":305,"y":408,"on":true},{"x":305,"y":377,"on":false},{"x":280,"y":318,"on":false},{"x":222,"y":280,"on":false}], + [{"x":396,"y":461,"on":true},{"x":376,"y":461,"on":false},{"x":351,"y":488,"on":false},{"x":351,"y":514,"on":true},{"x":351,"y":540,"on":false},{"x":376,"y":566,"on":false},{"x":396,"y":566,"on":true},{"x":415,"y":566,"on":false},{"x":441,"y":540,"on":false},{"x":441,"y":514,"on":true},{"x":441,"y":488,"on":false},{"x":415,"y":461,"on":false}] + ] + }, + "uni2E09": { + "advanceWidth": 491, + "contours": [ + [{"x":175,"y":281,"on":true},{"x":134,"y":282,"on":false},{"x":78,"y":308,"on":false},{"x":50,"y":342,"on":false},{"x":50,"y":354,"on":true},{"x":50,"y":366,"on":false},{"x":64,"y":384,"on":false},{"x":78,"y":384,"on":true},{"x":88,"y":384,"on":false},{"x":106,"y":372,"on":false},{"x":120,"y":360,"on":true},{"x":144,"y":339,"on":false},{"x":180,"y":339,"on":true},{"x":204,"y":339,"on":false},{"x":240,"y":370,"on":false},{"x":240,"y":409,"on":true},{"x":240,"y":429,"on":false},{"x":226,"y":475,"on":false},{"x":218,"y":500,"on":true},{"x":209,"y":527,"on":false},{"x":193,"y":583,"on":false},{"x":193,"y":610,"on":true},{"x":193,"y":663,"on":false},{"x":264,"y":726,"on":false},{"x":325,"y":726,"on":true},{"x":364,"y":726,"on":false},{"x":416,"y":703,"on":false},{"x":442,"y":671,"on":false},{"x":442,"y":658,"on":true},{"x":442,"y":649,"on":false},{"x":429,"y":629,"on":false},{"x":413,"y":629,"on":true},{"x":403,"y":629,"on":false},{"x":386,"y":637,"on":false},{"x":379,"y":644,"on":true},{"x":368,"y":653,"on":false},{"x":343,"y":667,"on":false},{"x":323,"y":667,"on":true},{"x":296,"y":667,"on":false},{"x":258,"y":639,"on":false},{"x":258,"y":609,"on":true},{"x":258,"y":585,"on":false},{"x":272,"y":537,"on":false},{"x":281,"y":512,"on":true},{"x":289,"y":488,"on":false},{"x":305,"y":433,"on":false},{"x":305,"y":408,"on":true},{"x":305,"y":377,"on":false},{"x":280,"y":318,"on":false},{"x":222,"y":280,"on":false}] + ] + }, + "uni2E0A": { + "advanceWidth": 500, + "contours": [ + [{"x":324,"y":281,"on":true},{"x":277,"y":280,"on":false},{"x":221,"y":318,"on":false},{"x":196,"y":377,"on":false},{"x":196,"y":408,"on":true},{"x":196,"y":433,"on":false},{"x":212,"y":488,"on":false},{"x":220,"y":512,"on":true},{"x":229,"y":537,"on":false},{"x":243,"y":585,"on":false},{"x":243,"y":609,"on":true},{"x":243,"y":639,"on":false},{"x":204,"y":667,"on":false},{"x":177,"y":667,"on":true},{"x":157,"y":667,"on":false},{"x":132,"y":653,"on":false},{"x":121,"y":644,"on":true},{"x":104,"y":629,"on":false},{"x":88,"y":629,"on":true},{"x":72,"y":629,"on":false},{"x":59,"y":649,"on":false},{"x":59,"y":658,"on":true},{"x":59,"y":671,"on":false},{"x":84,"y":703,"on":false},{"x":136,"y":726,"on":false},{"x":175,"y":726,"on":true},{"x":235,"y":726,"on":false},{"x":307,"y":663,"on":false},{"x":307,"y":610,"on":true},{"x":307,"y":583,"on":false},{"x":291,"y":527,"on":false},{"x":282,"y":500,"on":true},{"x":274,"y":475,"on":false},{"x":260,"y":429,"on":false},{"x":260,"y":409,"on":true},{"x":260,"y":370,"on":false},{"x":296,"y":339,"on":false},{"x":320,"y":339,"on":true},{"x":356,"y":339,"on":false},{"x":380,"y":360,"on":true},{"x":394,"y":372,"on":false},{"x":412,"y":384,"on":false},{"x":422,"y":384,"on":true},{"x":436,"y":384,"on":false},{"x":451,"y":366,"on":false},{"x":451,"y":354,"on":true},{"x":451,"y":342,"on":false},{"x":422,"y":308,"on":false},{"x":366,"y":282,"on":false}] + ] + }, + "uni2E0B": { + "advanceWidth": 500, + "contours": [ + [{"x":60,"y":335,"on":true},{"x":60,"y":714,"on":true},{"x":439,"y":714,"on":true},{"x":439,"y":335,"on":true}], + [{"x":119,"y":655,"on":true},{"x":119,"y":394,"on":true},{"x":381,"y":394,"on":true},{"x":381,"y":655,"on":true}] + ] + }, + "uni2E0C": { + "advanceWidth": 500, + "contours": [ + [{"x":399,"y":337,"on":true},{"x":61,"y":675,"on":true},{"x":102,"y":714,"on":true},{"x":439,"y":377,"on":true}] + ] + }, + "uni2E0D": { + "advanceWidth": 500, + "contours": [ + [{"x":101,"y":337,"on":true},{"x":61,"y":377,"on":true},{"x":398,"y":714,"on":true},{"x":439,"y":675,"on":true}] + ] + }, + "uni2E0E": { + "advanceWidth": 988, + "contours": [ + [{"x":441,"y":958,"on":true},{"x":441,"y":1037,"on":false},{"x":545,"y":1063,"on":true},{"x":545,"y":1032,"on":true},{"x":494,"y":1013,"on":false},{"x":494,"y":986,"on":true},{"x":494,"y":973,"on":false},{"x":515,"y":964,"on":false},{"x":536,"y":952,"on":false},{"x":536,"y":934,"on":true},{"x":536,"y":895,"on":false},{"x":494,"y":895,"on":true},{"x":470,"y":895,"on":false},{"x":441,"y":930,"on":false}], + [{"x":415,"y":795,"on":true},{"x":415,"y":838,"on":true},{"x":587,"y":838,"on":true},{"x":587,"y":795,"on":true}], + [{"x":286,"y":663,"on":true},{"x":286,"y":706,"on":true},{"x":716,"y":706,"on":true},{"x":716,"y":663,"on":true}], + [{"x":157,"y":521,"on":true},{"x":157,"y":564,"on":true},{"x":845,"y":564,"on":true},{"x":845,"y":521,"on":true}], + [{"x":442,"y":446,"on":true},{"x":442,"y":472,"on":false},{"x":477,"y":508,"on":false},{"x":501,"y":508,"on":true},{"x":525,"y":508,"on":false},{"x":560,"y":472,"on":false},{"x":560,"y":446,"on":true},{"x":560,"y":439,"on":false},{"x":556,"y":426,"on":false},{"x":554,"y":420,"on":true},{"x":974,"y":420,"on":true},{"x":974,"y":377,"on":true},{"x":554,"y":377,"on":true},{"x":556,"y":371,"on":false},{"x":560,"y":358,"on":false},{"x":560,"y":351,"on":true},{"x":560,"y":326,"on":false},{"x":525,"y":289,"on":false},{"x":501,"y":289,"on":true},{"x":477,"y":289,"on":false},{"x":442,"y":326,"on":false},{"x":442,"y":351,"on":true},{"x":442,"y":365,"on":false},{"x":448,"y":377,"on":true},{"x":14,"y":377,"on":true},{"x":14,"y":420,"on":true},{"x":448,"y":420,"on":true},{"x":442,"y":432,"on":false}], + [{"x":470,"y":446,"on":true},{"x":470,"y":428,"on":false},{"x":481,"y":420,"on":true},{"x":521,"y":420,"on":true},{"x":532,"y":429,"on":false},{"x":532,"y":446,"on":true},{"x":532,"y":460,"on":false},{"x":514,"y":479,"on":false},{"x":501,"y":479,"on":true},{"x":488,"y":479,"on":false},{"x":470,"y":460,"on":false}], + [{"x":470,"y":351,"on":true},{"x":470,"y":338,"on":false},{"x":488,"y":318,"on":false},{"x":501,"y":318,"on":true},{"x":514,"y":318,"on":false},{"x":532,"y":337,"on":false},{"x":532,"y":351,"on":true},{"x":532,"y":368,"on":false},{"x":521,"y":377,"on":true},{"x":480,"y":377,"on":true},{"x":470,"y":368,"on":false}], + [{"x":157,"y":233,"on":true},{"x":157,"y":276,"on":true},{"x":845,"y":276,"on":true},{"x":845,"y":233,"on":true}], + [{"x":286,"y":91,"on":true},{"x":286,"y":134,"on":true},{"x":716,"y":134,"on":true},{"x":716,"y":91,"on":true}], + [{"x":415,"y":-41,"on":true},{"x":415,"y":2,"on":true},{"x":587,"y":2,"on":true},{"x":587,"y":-41,"on":true}], + [{"x":545,"y":-182,"on":true},{"x":545,"y":-261,"on":false},{"x":441,"y":-287,"on":true},{"x":441,"y":-256,"on":true},{"x":491,"y":-238,"on":false},{"x":491,"y":-210,"on":true},{"x":491,"y":-197,"on":false},{"x":470,"y":-188,"on":false},{"x":449,"y":-176,"on":false},{"x":449,"y":-158,"on":true},{"x":449,"y":-139,"on":false},{"x":472,"y":-119,"on":false},{"x":491,"y":-119,"on":true},{"x":516,"y":-119,"on":false},{"x":545,"y":-154,"on":false}] + ] + }, + "uni2E0F": { + "advanceWidth": 1000, + "contours": [ + [{"x":1000,"y":-94,"on":true},{"x":1000,"y":-150,"on":true},{"x":0,"y":-150,"on":true},{"x":0,"y":-94,"on":true}] + ] + }, + "uni2E10": { + "advanceWidth": 1000, + "contours": [ + [{"x":1000,"y":-94,"on":true},{"x":1000,"y":-150,"on":true},{"x":360,"y":-150,"on":true},{"x":30,"y":-334,"on":true},{"x":3,"y":-284,"on":true},{"x":246,"y":-150,"on":true},{"x":0,"y":-150,"on":true},{"x":0,"y":-94,"on":true}] + ] + }, + "uni2E11": { + "advanceWidth": 1000, + "contours": [ + [{"x":970,"y":-334,"on":true},{"x":640,"y":-150,"on":true},{"x":0,"y":-150,"on":true},{"x":0,"y":-94,"on":true},{"x":1000,"y":-94,"on":true},{"x":1000,"y":-150,"on":true},{"x":754,"y":-150,"on":true},{"x":997,"y":-284,"on":true}] + ] + }, + "uni2E12": { + "advanceWidth": 309, + "contours": [ + [{"x":100,"y":-57,"on":true},{"x":100,"y":-14,"on":true},{"x":149,"y":-14,"on":false},{"x":209,"y":-70,"on":false},{"x":209,"y":-120,"on":true},{"x":209,"y":-170,"on":false},{"x":149,"y":-225,"on":false},{"x":100,"y":-225,"on":true},{"x":100,"y":-183,"on":true},{"x":128,"y":-183,"on":false},{"x":164,"y":-150,"on":false},{"x":164,"y":-120,"on":true},{"x":164,"y":-57,"on":false}] + ] + }, + "uni2E13": { + "advanceWidth": 573, + "contours": [ + [{"x":452,"y":715,"on":true},{"x":524,"y":715,"on":true},{"x":119,"y":-2,"on":true},{"x":50,"y":-2,"on":true}], + [{"x":74,"y":473,"on":true},{"x":74,"y":500,"on":false},{"x":104,"y":531,"on":false},{"x":129,"y":531,"on":true},{"x":154,"y":531,"on":false},{"x":184,"y":500,"on":false},{"x":184,"y":473,"on":true},{"x":184,"y":445,"on":false},{"x":154,"y":414,"on":false},{"x":129,"y":414,"on":true},{"x":104,"y":414,"on":false},{"x":74,"y":445,"on":false}], + [{"x":386,"y":241,"on":true},{"x":386,"y":268,"on":false},{"x":416,"y":300,"on":false},{"x":441,"y":300,"on":true},{"x":466,"y":300,"on":false},{"x":496,"y":268,"on":false},{"x":496,"y":241,"on":true},{"x":496,"y":213,"on":false},{"x":467,"y":182,"on":false},{"x":441,"y":182,"on":true},{"x":416,"y":182,"on":false},{"x":386,"y":213,"on":false}] + ] + }, + "uni2E14": { + "advanceWidth": 750, + "contours": [ + [{"x":459,"y":82,"on":true},{"x":389,"y":50,"on":false},{"x":266,"y":82,"on":false},{"x":214,"y":134,"on":true},{"x":162,"y":187,"on":false},{"x":130,"y":309,"on":false},{"x":162,"y":379,"on":true},{"x":200,"y":342,"on":true},{"x":184,"y":301,"on":false},{"x":197,"y":224,"on":false},{"x":231,"y":184,"on":true},{"x":619,"y":572,"on":true},{"x":652,"y":539,"on":true},{"x":265,"y":151,"on":true},{"x":305,"y":117,"on":false},{"x":380,"y":105,"on":false},{"x":421,"y":120,"on":true}] + ] + }, + "uni2E15": { + "advanceWidth": 750, + "contours": [ + [{"x":152,"y":39,"on":true},{"x":119,"y":72,"on":true},{"x":507,"y":460,"on":true},{"x":466,"y":494,"on":false},{"x":390,"y":506,"on":false},{"x":350,"y":491,"on":true},{"x":312,"y":529,"on":true},{"x":382,"y":561,"on":false},{"x":504,"y":530,"on":false},{"x":557,"y":477,"on":true},{"x":610,"y":424,"on":false},{"x":641,"y":302,"on":false},{"x":609,"y":232,"on":true},{"x":571,"y":269,"on":true},{"x":587,"y":310,"on":false},{"x":574,"y":386,"on":false},{"x":540,"y":427,"on":true}] + ] + }, + "uni2E16": { + "advanceWidth": 524, + "contours": [ + [{"x":194,"y":645,"on":true},{"x":194,"y":673,"on":false},{"x":223,"y":705,"on":false},{"x":247,"y":705,"on":true},{"x":271,"y":705,"on":false},{"x":299,"y":673,"on":false},{"x":299,"y":645,"on":true},{"x":299,"y":618,"on":false},{"x":270,"y":586,"on":false},{"x":247,"y":586,"on":true},{"x":223,"y":586,"on":false},{"x":194,"y":618,"on":false}], + [{"x":44,"y":133,"on":true},{"x":44,"y":207,"on":true},{"x":386,"y":365,"on":true},{"x":44,"y":530,"on":true},{"x":44,"y":604,"on":true},{"x":481,"y":388,"on":true},{"x":481,"y":342,"on":true}], + [{"x":194,"y":90,"on":true},{"x":194,"y":118,"on":false},{"x":223,"y":148,"on":false},{"x":247,"y":148,"on":true},{"x":270,"y":148,"on":false},{"x":299,"y":118,"on":false},{"x":299,"y":90,"on":true},{"x":299,"y":62,"on":false},{"x":270,"y":30,"on":false},{"x":247,"y":30,"on":true},{"x":223,"y":30,"on":false},{"x":194,"y":62,"on":false}] + ] + }, + "uni2E17": { + "advanceWidth": 307, + "contours": [ + [{"x":48,"y":257,"on":true},{"x":13,"y":308,"on":true},{"x":259,"y":475,"on":true},{"x":293,"y":424,"on":true}], + [{"x":49,"y":82,"on":true},{"x":14,"y":133,"on":true},{"x":259,"y":300,"on":true},{"x":293,"y":249,"on":true}] + ] + }, + "uni2E18": { + "advanceWidth": 409, + "references": [ + {"glyph":"uni203D","x":409,"y":713,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2E19": { + "advanceWidth": 750, + "contours": [ + [{"x":217,"y":4,"on":true},{"x":205,"y":4,"on":false},{"x":170,"y":23,"on":false},{"x":166,"y":36,"on":true},{"x":181,"y":52,"on":false},{"x":205,"y":86,"on":false},{"x":219,"y":110,"on":true},{"x":218,"y":129,"on":false},{"x":203,"y":191,"on":false},{"x":189,"y":249,"on":false},{"x":189,"y":261,"on":true},{"x":189,"y":267,"on":false},{"x":195,"y":286,"on":false},{"x":205,"y":286,"on":true},{"x":213,"y":286,"on":false},{"x":220,"y":273,"on":false},{"x":222,"y":264,"on":true},{"x":228,"y":241,"on":false},{"x":241,"y":188,"on":false},{"x":248,"y":168,"on":true},{"x":272,"y":215,"on":true},{"x":269,"y":219,"on":false},{"x":258,"y":252,"on":false},{"x":245,"y":293,"on":false},{"x":237,"y":330,"on":false},{"x":237,"y":339,"on":true},{"x":237,"y":345,"on":false},{"x":243,"y":358,"on":false},{"x":251,"y":358,"on":true},{"x":259,"y":358,"on":false},{"x":267,"y":344,"on":false},{"x":269,"y":332,"on":true},{"x":270,"y":326,"on":false},{"x":278,"y":294,"on":false},{"x":289,"y":264,"on":false},{"x":295,"y":261,"on":true},{"x":312,"y":288,"on":true},{"x":308,"y":302,"on":false},{"x":300,"y":343,"on":false},{"x":294,"y":380,"on":false},{"x":295,"y":389,"on":true},{"x":298,"y":409,"on":false},{"x":310,"y":409,"on":true},{"x":314,"y":409,"on":false},{"x":319,"y":393,"on":false},{"x":319,"y":386,"on":true},{"x":320,"y":375,"on":false},{"x":327,"y":328,"on":false},{"x":334,"y":317,"on":true},{"x":352,"y":344,"on":true},{"x":350,"y":350,"on":false},{"x":341,"y":388,"on":false},{"x":333,"y":430,"on":false},{"x":333,"y":445,"on":true},{"x":333,"y":464,"on":false},{"x":345,"y":475,"on":false},{"x":351,"y":475,"on":true},{"x":360,"y":475,"on":false},{"x":368,"y":457,"on":false},{"x":368,"y":446,"on":true},{"x":368,"y":435,"on":false},{"x":370,"y":401,"on":false},{"x":376,"y":373,"on":true},{"x":393,"y":401,"on":true},{"x":389,"y":412,"on":false},{"x":376,"y":468,"on":false},{"x":376,"y":494,"on":true},{"x":376,"y":523,"on":false},{"x":390,"y":534,"on":false},{"x":394,"y":534,"on":true},{"x":402,"y":534,"on":false},{"x":405,"y":520,"on":false},{"x":406,"y":513,"on":true},{"x":408,"y":489,"on":false},{"x":422,"y":440,"on":false},{"x":423,"y":439,"on":true},{"x":442,"y":469,"on":true},{"x":438,"y":479,"on":false},{"x":427,"y":522,"on":false},{"x":427,"y":540,"on":true},{"x":427,"y":561,"on":false},{"x":440,"y":574,"on":false},{"x":444,"y":574,"on":true},{"x":449,"y":574,"on":false},{"x":451,"y":560,"on":false},{"x":451,"y":549,"on":true},{"x":451,"y":540,"on":false},{"x":454,"y":513,"on":false},{"x":462,"y":497,"on":true},{"x":474,"y":516,"on":true},{"x":472,"y":524,"on":false},{"x":469,"y":559,"on":false},{"x":469,"y":569,"on":true},{"x":469,"y":579,"on":false},{"x":478,"y":592,"on":false},{"x":484,"y":592,"on":true},{"x":489,"y":592,"on":false},{"x":492,"y":580,"on":false},{"x":492,"y":573,"on":true},{"x":492,"y":566,"on":false},{"x":494,"y":552,"on":false},{"x":496,"y":550,"on":true},{"x":498,"y":558,"on":false},{"x":511,"y":585,"on":false},{"x":530,"y":605,"on":false},{"x":541,"y":605,"on":true},{"x":554,"y":605,"on":false},{"x":554,"y":592,"on":true},{"x":554,"y":584,"on":false},{"x":530,"y":555,"on":false},{"x":517,"y":535,"on":true},{"x":536,"y":538,"on":false},{"x":560,"y":562,"on":false},{"x":570,"y":562,"on":true},{"x":580,"y":562,"on":false},{"x":584,"y":552,"on":false},{"x":584,"y":550,"on":true},{"x":584,"y":544,"on":false},{"x":555,"y":521,"on":false},{"x":517,"y":502,"on":false},{"x":503,"y":501,"on":true},{"x":481,"y":464,"on":true},{"x":492,"y":464,"on":false},{"x":522,"y":473,"on":false},{"x":551,"y":482,"on":false},{"x":558,"y":482,"on":true},{"x":564,"y":482,"on":false},{"x":575,"y":478,"on":false},{"x":575,"y":469,"on":true},{"x":575,"y":453,"on":false},{"x":538,"y":444,"on":true},{"x":509,"y":436,"on":false},{"x":462,"y":420,"on":false},{"x":454,"y":417,"on":true},{"x":439,"y":393,"on":true},{"x":444,"y":393,"on":false},{"x":479,"y":406,"on":false},{"x":520,"y":418,"on":false},{"x":532,"y":418,"on":true},{"x":542,"y":418,"on":false},{"x":548,"y":411,"on":false},{"x":548,"y":409,"on":true},{"x":548,"y":403,"on":false},{"x":528,"y":388,"on":false},{"x":491,"y":380,"on":true},{"x":460,"y":375,"on":false},{"x":432,"y":367,"on":false},{"x":424,"y":365,"on":true},{"x":403,"y":330,"on":true},{"x":421,"y":330,"on":false},{"x":460,"y":340,"on":false},{"x":492,"y":351,"on":false},{"x":501,"y":351,"on":true},{"x":512,"y":351,"on":false},{"x":518,"y":342,"on":false},{"x":518,"y":340,"on":true},{"x":518,"y":331,"on":false},{"x":494,"y":317,"on":false},{"x":451,"y":309,"on":true},{"x":381,"y":297,"on":true},{"x":361,"y":261,"on":true},{"x":374,"y":261,"on":false},{"x":419,"y":276,"on":false},{"x":463,"y":291,"on":false},{"x":474,"y":291,"on":true},{"x":486,"y":291,"on":false},{"x":486,"y":279,"on":true},{"x":486,"y":273,"on":false},{"x":453,"y":255,"on":false},{"x":404,"y":238,"on":false},{"x":355,"y":223,"on":false},{"x":339,"y":220,"on":true},{"x":321,"y":191,"on":true},{"x":324,"y":192,"on":false},{"x":354,"y":203,"on":false},{"x":393,"y":215,"on":false},{"x":430,"y":224,"on":false},{"x":442,"y":224,"on":true},{"x":453,"y":224,"on":false},{"x":471,"y":219,"on":false},{"x":470,"y":212,"on":true},{"x":469,"y":202,"on":false},{"x":432,"y":182,"on":false},{"x":403,"y":179,"on":true},{"x":384,"y":177,"on":false},{"x":341,"y":168,"on":false},{"x":308,"y":159,"on":false},{"x":303,"y":157,"on":true},{"x":289,"y":136,"on":true},{"x":314,"y":132,"on":false},{"x":368,"y":142,"on":false},{"x":416,"y":155,"on":false},{"x":428,"y":155,"on":true},{"x":440,"y":155,"on":false},{"x":440,"y":142,"on":true},{"x":440,"y":134,"on":false},{"x":411,"y":118,"on":false},{"x":370,"y":106,"on":false},{"x":354,"y":103,"on":true},{"x":318,"y":96,"on":false},{"x":274,"y":96,"on":false},{"x":270,"y":98,"on":true}] + ] + }, + "uni2E1A": { + "advanceWidth": 308, + "references": [ + {"glyph":"hyphen","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"dieresis","x":-129,"y":-226,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E1B": { + "advanceWidth": 525, + "references": [ + {"glyph":"asciitilde","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"ring","x":118,"y":-158,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E1C": { + "advanceWidth": 500, + "contours": [ + [{"x":399,"y":-82,"on":true},{"x":61,"y":256,"on":true},{"x":102,"y":295,"on":true},{"x":439,"y":-42,"on":true}] + ] + }, + "uni2E1D": { + "advanceWidth": 500, + "contours": [ + [{"x":101,"y":-82,"on":true},{"x":61,"y":-42,"on":true},{"x":398,"y":295,"on":true},{"x":439,"y":256,"on":true}] + ] + }, + "uni2E1E": { + "advanceWidth": 524, + "contours": [ + [{"x":212,"y":532,"on":true},{"x":212,"y":564,"on":false},{"x":239,"y":592,"on":false},{"x":261,"y":592,"on":true},{"x":282,"y":592,"on":false},{"x":311,"y":564,"on":false},{"x":311,"y":532,"on":true},{"x":311,"y":501,"on":false},{"x":282,"y":471,"on":false},{"x":261,"y":471,"on":true},{"x":239,"y":471,"on":false},{"x":212,"y":500,"on":false}], + [{"x":247,"y":314,"on":true},{"x":216,"y":329,"on":false},{"x":169,"y":341,"on":false},{"x":148,"y":341,"on":true},{"x":122,"y":341,"on":false},{"x":65,"y":308,"on":false},{"x":41,"y":282,"on":true},{"x":41,"y":370,"on":true},{"x":87,"y":422,"on":false},{"x":155,"y":422,"on":true},{"x":184,"y":422,"on":false},{"x":237,"y":408,"on":false},{"x":277,"y":391,"on":true},{"x":309,"y":376,"on":false},{"x":355,"y":364,"on":false},{"x":376,"y":364,"on":true},{"x":403,"y":364,"on":false},{"x":460,"y":398,"on":false},{"x":483,"y":423,"on":true},{"x":483,"y":335,"on":true},{"x":437,"y":283,"on":false},{"x":370,"y":283,"on":true},{"x":340,"y":283,"on":false},{"x":287,"y":297,"on":false}] + ] + }, + "uni2E1F": { + "advanceWidth": 525, + "contours": [ + [{"x":247,"y":314,"on":true},{"x":216,"y":329,"on":false},{"x":169,"y":341,"on":false},{"x":148,"y":341,"on":true},{"x":122,"y":341,"on":false},{"x":65,"y":308,"on":false},{"x":41,"y":282,"on":true},{"x":41,"y":370,"on":true},{"x":87,"y":422,"on":false},{"x":155,"y":422,"on":true},{"x":184,"y":422,"on":false},{"x":237,"y":408,"on":false},{"x":277,"y":391,"on":true},{"x":309,"y":376,"on":false},{"x":355,"y":364,"on":false},{"x":376,"y":364,"on":true},{"x":403,"y":364,"on":false},{"x":460,"y":398,"on":false},{"x":483,"y":423,"on":true},{"x":483,"y":335,"on":true},{"x":437,"y":283,"on":false},{"x":370,"y":283,"on":true},{"x":340,"y":283,"on":false},{"x":287,"y":297,"on":false}], + [{"x":212,"y":175,"on":true},{"x":212,"y":207,"on":false},{"x":239,"y":236,"on":false},{"x":261,"y":236,"on":true},{"x":281,"y":236,"on":false},{"x":310,"y":207,"on":false},{"x":310,"y":175,"on":true},{"x":310,"y":145,"on":false},{"x":281,"y":115,"on":false},{"x":261,"y":115,"on":true},{"x":239,"y":115,"on":false},{"x":212,"y":144,"on":false}] + ] + }, + "uni2E20": { + "advanceWidth": 551, + "contours": [ + [{"x":164,"y":-241,"on":true},{"x":164,"y":760,"on":true},{"x":227,"y":760,"on":true},{"x":227,"y":288,"on":true},{"x":375,"y":288,"on":true},{"x":375,"y":231,"on":true},{"x":227,"y":231,"on":true},{"x":227,"y":-241,"on":true}] + ] + }, + "uni2E21": { + "advanceWidth": 551, + "contours": [ + [{"x":324,"y":-241,"on":true},{"x":324,"y":231,"on":true},{"x":176,"y":231,"on":true},{"x":176,"y":288,"on":true},{"x":324,"y":288,"on":true},{"x":324,"y":760,"on":true},{"x":387,"y":760,"on":true},{"x":387,"y":-241,"on":true}] + ] + }, + "uni2E22": { + "advanceWidth": 324, + "contours": [ + [{"x":153,"y":277,"on":true},{"x":75,"y":277,"on":true},{"x":75,"y":717,"on":true},{"x":298,"y":717,"on":true},{"x":298,"y":649,"on":true},{"x":153,"y":649,"on":true}] + ] + }, + "uni2E23": { + "advanceWidth": 324, + "contours": [ + [{"x":171,"y":277,"on":true},{"x":171,"y":649,"on":true},{"x":26,"y":649,"on":true},{"x":26,"y":717,"on":true},{"x":249,"y":717,"on":true},{"x":249,"y":277,"on":true}] + ] + }, + "uni2E24": { + "advanceWidth": 324, + "contours": [ + [{"x":75,"y":-159,"on":true},{"x":75,"y":281,"on":true},{"x":153,"y":281,"on":true},{"x":153,"y":-91,"on":true},{"x":298,"y":-91,"on":true},{"x":298,"y":-159,"on":true}] + ] + }, + "uni2E25": { + "advanceWidth": 324, + "contours": [ + [{"x":171,"y":281,"on":true},{"x":249,"y":281,"on":true},{"x":249,"y":-159,"on":true},{"x":26,"y":-159,"on":true},{"x":26,"y":-91,"on":true},{"x":171,"y":-91,"on":true}] + ] + }, + "uni2E26": { + "advanceWidth": 1000, + "contours": [ + [{"x":257,"y":354,"on":true},{"x":257,"y":310,"on":false},{"x":298,"y":263,"on":false},{"x":367,"y":244,"on":false},{"x":455,"y":241,"on":false},{"x":502,"y":241,"on":true},{"x":788,"y":241,"on":true},{"x":788,"y":193,"on":true},{"x":502,"y":193,"on":true},{"x":450,"y":193,"on":false},{"x":346,"y":199,"on":false},{"x":262,"y":228,"on":false},{"x":211,"y":294,"on":false},{"x":211,"y":354,"on":true},{"x":211,"y":414,"on":false},{"x":261,"y":480,"on":false},{"x":346,"y":509,"on":false},{"x":449,"y":515,"on":false},{"x":502,"y":515,"on":true},{"x":788,"y":515,"on":true},{"x":788,"y":467,"on":true},{"x":502,"y":467,"on":true},{"x":455,"y":467,"on":false},{"x":367,"y":464,"on":false},{"x":298,"y":445,"on":false},{"x":257,"y":398,"on":false}] + ] + }, + "uni2E27": { + "advanceWidth": 1000, + "contours": [ + [{"x":212,"y":193,"on":true},{"x":212,"y":241,"on":true},{"x":516,"y":241,"on":true},{"x":563,"y":241,"on":false},{"x":646,"y":246,"on":false},{"x":708,"y":267,"on":false},{"x":743,"y":313,"on":false},{"x":743,"y":354,"on":true},{"x":743,"y":395,"on":false},{"x":708,"y":441,"on":false},{"x":646,"y":462,"on":false},{"x":563,"y":467,"on":false},{"x":516,"y":467,"on":true},{"x":212,"y":467,"on":true},{"x":212,"y":515,"on":true},{"x":516,"y":515,"on":true},{"x":571,"y":515,"on":false},{"x":669,"y":506,"on":false},{"x":745,"y":474,"on":false},{"x":789,"y":410,"on":false},{"x":789,"y":354,"on":true},{"x":789,"y":298,"on":false},{"x":746,"y":234,"on":false},{"x":670,"y":202,"on":false},{"x":571,"y":193,"on":false},{"x":516,"y":193,"on":true}] + ] + }, + "uni2E28": { + "advanceWidth": 530, + "references": [ + {"glyph":"parenleft","x":227,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"parenleft","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E29": { + "advanceWidth": 530, + "references": [ + {"glyph":"parenright","x":-2,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"parenright","x":225,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E2A": { + "advanceWidth": 830, + "contours": [ + [{"x":53,"y":664,"on":true},{"x":53,"y":698,"on":false},{"x":88,"y":730,"on":false},{"x":119,"y":730,"on":true},{"x":149,"y":730,"on":false},{"x":185,"y":698,"on":false},{"x":185,"y":664,"on":true},{"x":185,"y":630,"on":false},{"x":149,"y":598,"on":false},{"x":119,"y":598,"on":true},{"x":88,"y":598,"on":false},{"x":53,"y":630,"on":false}], + [{"x":645,"y":664,"on":true},{"x":645,"y":698,"on":false},{"x":681,"y":730,"on":false},{"x":711,"y":730,"on":true},{"x":742,"y":730,"on":false},{"x":777,"y":698,"on":false},{"x":777,"y":664,"on":true},{"x":777,"y":630,"on":false},{"x":742,"y":598,"on":false},{"x":711,"y":598,"on":true},{"x":681,"y":598,"on":false},{"x":645,"y":630,"on":false}], + [{"x":349,"y":49,"on":true},{"x":349,"y":82,"on":false},{"x":385,"y":115,"on":false},{"x":416,"y":115,"on":true},{"x":446,"y":115,"on":false},{"x":481,"y":82,"on":false},{"x":481,"y":49,"on":true},{"x":481,"y":15,"on":false},{"x":446,"y":-17,"on":false},{"x":416,"y":-17,"on":true},{"x":385,"y":-17,"on":false},{"x":349,"y":15,"on":false}] + ] + }, + "uni2E2B": { + "advanceWidth": 830, + "contours": [ + [{"x":342,"y":664,"on":true},{"x":342,"y":698,"on":false},{"x":377,"y":730,"on":false},{"x":408,"y":730,"on":true},{"x":438,"y":730,"on":false},{"x":474,"y":698,"on":false},{"x":474,"y":664,"on":true},{"x":474,"y":631,"on":false},{"x":438,"y":598,"on":false},{"x":408,"y":598,"on":true},{"x":377,"y":598,"on":false},{"x":342,"y":631,"on":false}], + [{"x":53,"y":49,"on":true},{"x":53,"y":83,"on":false},{"x":88,"y":115,"on":false},{"x":119,"y":115,"on":true},{"x":149,"y":115,"on":false},{"x":185,"y":83,"on":false},{"x":185,"y":49,"on":true},{"x":185,"y":15,"on":false},{"x":149,"y":-17,"on":false},{"x":119,"y":-17,"on":true},{"x":88,"y":-17,"on":false},{"x":53,"y":15,"on":false}], + [{"x":645,"y":49,"on":true},{"x":645,"y":83,"on":false},{"x":681,"y":115,"on":false},{"x":711,"y":115,"on":true},{"x":742,"y":115,"on":false},{"x":777,"y":83,"on":false},{"x":777,"y":49,"on":true},{"x":777,"y":15,"on":false},{"x":742,"y":-17,"on":false},{"x":711,"y":-17,"on":true},{"x":681,"y":-17,"on":false},{"x":645,"y":15,"on":false}] + ] + }, + "uni2E2C": { + "advanceWidth": 837, + "contours": [ + [{"x":53,"y":664,"on":true},{"x":53,"y":698,"on":false},{"x":88,"y":730,"on":false},{"x":119,"y":730,"on":true},{"x":149,"y":730,"on":false},{"x":185,"y":698,"on":false},{"x":185,"y":664,"on":true},{"x":185,"y":631,"on":false},{"x":149,"y":598,"on":false},{"x":119,"y":598,"on":true},{"x":88,"y":598,"on":false},{"x":53,"y":631,"on":false}], + [{"x":652,"y":664,"on":true},{"x":652,"y":698,"on":false},{"x":688,"y":730,"on":false},{"x":718,"y":730,"on":true},{"x":749,"y":730,"on":false},{"x":784,"y":698,"on":false},{"x":784,"y":664,"on":true},{"x":784,"y":631,"on":false},{"x":749,"y":598,"on":false},{"x":718,"y":598,"on":true},{"x":688,"y":598,"on":false},{"x":652,"y":631,"on":false}], + [{"x":53,"y":49,"on":true},{"x":53,"y":83,"on":false},{"x":88,"y":115,"on":false},{"x":119,"y":115,"on":true},{"x":149,"y":115,"on":false},{"x":185,"y":83,"on":false},{"x":185,"y":49,"on":true},{"x":185,"y":15,"on":false},{"x":149,"y":-17,"on":false},{"x":119,"y":-17,"on":true},{"x":88,"y":-17,"on":false},{"x":53,"y":15,"on":false}], + [{"x":645,"y":49,"on":true},{"x":645,"y":83,"on":false},{"x":681,"y":115,"on":false},{"x":711,"y":115,"on":true},{"x":741,"y":115,"on":false},{"x":777,"y":83,"on":false},{"x":777,"y":49,"on":true},{"x":777,"y":15,"on":false},{"x":741,"y":-17,"on":false},{"x":711,"y":-17,"on":true},{"x":681,"y":-17,"on":false},{"x":645,"y":15,"on":false}] + ] + }, + "uni2E2D": { + "advanceWidth": 837, + "contours": [ + [{"x":349,"y":665,"on":true},{"x":349,"y":700,"on":false},{"x":384,"y":731,"on":false},{"x":414,"y":731,"on":true},{"x":445,"y":731,"on":false},{"x":480,"y":700,"on":false},{"x":480,"y":665,"on":true},{"x":480,"y":632,"on":false},{"x":445,"y":600,"on":false},{"x":414,"y":600,"on":true},{"x":384,"y":600,"on":false},{"x":349,"y":632,"on":false}], + [{"x":52,"y":356,"on":true},{"x":52,"y":390,"on":false},{"x":87,"y":422,"on":false},{"x":118,"y":422,"on":true},{"x":148,"y":422,"on":false},{"x":184,"y":390,"on":false},{"x":184,"y":356,"on":true},{"x":184,"y":323,"on":false},{"x":148,"y":290,"on":false},{"x":118,"y":290,"on":true},{"x":87,"y":290,"on":false},{"x":52,"y":323,"on":false}], + [{"x":653,"y":356,"on":true},{"x":653,"y":390,"on":false},{"x":689,"y":422,"on":false},{"x":719,"y":422,"on":true},{"x":750,"y":422,"on":false},{"x":785,"y":390,"on":false},{"x":785,"y":356,"on":true},{"x":785,"y":323,"on":false},{"x":750,"y":290,"on":false},{"x":719,"y":290,"on":true},{"x":689,"y":290,"on":false},{"x":653,"y":323,"on":false}], + [{"x":351,"y":356,"on":true},{"x":351,"y":390,"on":false},{"x":386,"y":422,"on":false},{"x":416,"y":422,"on":true},{"x":447,"y":422,"on":false},{"x":482,"y":390,"on":false},{"x":482,"y":356,"on":true},{"x":482,"y":323,"on":false},{"x":447,"y":290,"on":false},{"x":416,"y":290,"on":true},{"x":386,"y":290,"on":false},{"x":351,"y":323,"on":false}], + [{"x":349,"y":49,"on":true},{"x":349,"y":83,"on":false},{"x":384,"y":115,"on":false},{"x":414,"y":115,"on":true},{"x":445,"y":115,"on":false},{"x":480,"y":83,"on":false},{"x":480,"y":49,"on":true},{"x":480,"y":15,"on":false},{"x":445,"y":-17,"on":false},{"x":414,"y":-17,"on":true},{"x":384,"y":-17,"on":false},{"x":349,"y":15,"on":false}] + ] + }, + "uni2E2E": { + "advanceWidth": 409, + "references": [ + {"glyph":"question","x":409,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E2F": { + "advanceWidth": 578, + "contours": [ + [{"x":356,"y":999,"on":true},{"x":356,"y":941,"on":true},{"x":322,"y":934,"on":false},{"x":294,"y":906,"on":false},{"x":294,"y":888,"on":true},{"x":294,"y":866,"on":false},{"x":325,"y":818,"on":false},{"x":357,"y":766,"on":false},{"x":357,"y":738,"on":true},{"x":357,"y":692,"on":false},{"x":288,"y":629,"on":false},{"x":220,"y":623,"on":true},{"x":220,"y":681,"on":true},{"x":255,"y":688,"on":false},{"x":284,"y":716,"on":false},{"x":284,"y":733,"on":true},{"x":284,"y":757,"on":false},{"x":252,"y":805,"on":false},{"x":220,"y":856,"on":false},{"x":220,"y":884,"on":true},{"x":220,"y":929,"on":false},{"x":286,"y":992,"on":false}] + ] + }, + "uni2E30": { + "advanceWidth": 572, + "contours": [ + [{"x":287,"y":165,"on":true},{"x":236,"y":165,"on":false},{"x":152,"y":215,"on":false},{"x":102,"y":299,"on":false},{"x":102,"y":350,"on":true},{"x":102,"y":402,"on":false},{"x":152,"y":485,"on":false},{"x":236,"y":535,"on":false},{"x":287,"y":535,"on":true},{"x":338,"y":535,"on":false},{"x":421,"y":485,"on":false},{"x":470,"y":402,"on":false},{"x":470,"y":350,"on":true},{"x":470,"y":299,"on":false},{"x":421,"y":215,"on":false},{"x":338,"y":165,"on":false}], + [{"x":286,"y":235,"on":true},{"x":318,"y":235,"on":false},{"x":371,"y":266,"on":false},{"x":402,"y":318,"on":false},{"x":402,"y":351,"on":true},{"x":402,"y":383,"on":false},{"x":371,"y":435,"on":false},{"x":318,"y":466,"on":false},{"x":286,"y":466,"on":true},{"x":254,"y":466,"on":false},{"x":201,"y":435,"on":false},{"x":170,"y":383,"on":false},{"x":170,"y":351,"on":true},{"x":170,"y":318,"on":false},{"x":201,"y":266,"on":false},{"x":254,"y":235,"on":false}] + ] + }, + "uni2E31": { + "advanceWidth": 259, + "references": [ + {"glyph":"periodcentered","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2E32": { + "advanceWidth": 259, + "references": [ + {"glyph":"comma","x":259,"y":-13,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2E33": { + "advanceWidth": 259, + "references": [ + {"glyph":"period","x":0,"y":149,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2E34": { + "advanceWidth": 259, + "references": [ + {"glyph":"comma","x":0,"y":149,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uni2E35": { + "advanceWidth": 260, + "references": [ + {"glyph":"semicolon","x":260,"y":537,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2E36": { + "advanceWidth": 437, + "contours": [ + [{"x":271,"y":492,"on":true},{"x":291,"y":0,"on":true},{"x":189,"y":0,"on":true},{"x":209,"y":492,"on":true},{"x":57,"y":480,"on":true},{"x":57,"y":568,"on":true},{"x":209,"y":554,"on":true},{"x":189,"y":760,"on":true},{"x":291,"y":760,"on":true},{"x":271,"y":554,"on":true}] + ] + }, + "uni2E37": { + "advanceWidth": 441, + "contours": [ + [{"x":166,"y":492,"on":true},{"x":166,"y":554,"on":true},{"x":145,"y":760,"on":true},{"x":247,"y":760,"on":true},{"x":227,"y":554,"on":true},{"x":384,"y":568,"on":true},{"x":384,"y":480,"on":true},{"x":227,"y":492,"on":true},{"x":247,"y":0,"on":true},{"x":145,"y":0,"on":true}] + ] + }, + "uni2E38": { + "advanceWidth": 500, + "references": [ + {"glyph":"dagger","x":496,"y":760,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uni2E39": { + "advanceWidth": 459, + "contours": [ + [{"x":55,"y":396,"on":true},{"x":55,"y":437,"on":false},{"x":100,"y":499,"on":false},{"x":136,"y":517,"on":true},{"x":66,"y":561,"on":false},{"x":66,"y":629,"on":true},{"x":66,"y":695,"on":false},{"x":166,"y":763,"on":false},{"x":242,"y":763,"on":true},{"x":284,"y":763,"on":false},{"x":360,"y":746,"on":false},{"x":396,"y":729,"on":true},{"x":367,"y":662,"on":true},{"x":334,"y":678,"on":false},{"x":273,"y":695,"on":false},{"x":242,"y":695,"on":true},{"x":198,"y":695,"on":false},{"x":151,"y":662,"on":false},{"x":151,"y":630,"on":true},{"x":151,"y":599,"on":false},{"x":206,"y":562,"on":false},{"x":253,"y":542,"on":true},{"x":298,"y":523,"on":false},{"x":367,"y":481,"on":false},{"x":406,"y":426,"on":false},{"x":406,"y":385,"on":true},{"x":406,"y":322,"on":false},{"x":323,"y":242,"on":false},{"x":248,"y":242,"on":true},{"x":160,"y":242,"on":false},{"x":55,"y":328,"on":false}], + [{"x":139,"y":408,"on":true},{"x":139,"y":369,"on":false},{"x":194,"y":310,"on":false},{"x":254,"y":310,"on":true},{"x":289,"y":310,"on":false},{"x":322,"y":350,"on":false},{"x":322,"y":376,"on":true},{"x":322,"y":398,"on":false},{"x":300,"y":432,"on":false},{"x":246,"y":464,"on":false},{"x":196,"y":485,"on":true},{"x":170,"y":476,"on":false},{"x":139,"y":435,"on":false}] + ] + }, + "uni2E3A": { + "advanceWidth": 1920, + "references": [ + {"glyph":"glyph2787","x":920,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2787","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E3B": { + "advanceWidth": 2840, + "references": [ + {"glyph":"glyph2787","x":1840,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2787","x":920,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"glyph2787","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E3C": { + "advanceWidth": 0, + "contours": [ + [{"x":93,"y":-94,"on":true},{"x":39,"y":-150,"on":true},{"x":94,"y":-204,"on":true},{"x":54,"y":-244,"on":true},{"x":-1,"y":-189,"on":true},{"x":-57,"y":-246,"on":true},{"x":-95,"y":-209,"on":true},{"x":-38,"y":-152,"on":true},{"x":-92,"y":-97,"on":true},{"x":-53,"y":-57,"on":true},{"x":1,"y":-112,"on":true},{"x":56,"y":-57,"on":true}] + ] + }, + "uni2E3D": { + "advanceWidth": 244, + "contours": [ + [{"x":122,"y":750,"on":true},{"x":94,"y":750,"on":false},{"x":58,"y":782,"on":false},{"x":58,"y":817,"on":true},{"x":58,"y":854,"on":false},{"x":94,"y":885,"on":false},{"x":122,"y":885,"on":true},{"x":150,"y":885,"on":false},{"x":186,"y":854,"on":false},{"x":186,"y":817,"on":true},{"x":186,"y":782,"on":false},{"x":150,"y":750,"on":false}], + [{"x":122,"y":562,"on":true},{"x":94,"y":562,"on":false},{"x":58,"y":594,"on":false},{"x":58,"y":629,"on":true},{"x":58,"y":666,"on":false},{"x":94,"y":697,"on":false},{"x":122,"y":697,"on":true},{"x":150,"y":697,"on":false},{"x":186,"y":666,"on":false},{"x":186,"y":629,"on":true},{"x":186,"y":594,"on":false},{"x":150,"y":562,"on":false}], + [{"x":122,"y":374,"on":true},{"x":94,"y":374,"on":false},{"x":58,"y":406,"on":false},{"x":58,"y":441,"on":true},{"x":58,"y":477,"on":false},{"x":94,"y":509,"on":false},{"x":122,"y":509,"on":true},{"x":150,"y":509,"on":false},{"x":186,"y":477,"on":false},{"x":186,"y":441,"on":true},{"x":186,"y":406,"on":false},{"x":150,"y":374,"on":false}], + [{"x":122,"y":185,"on":true},{"x":94,"y":185,"on":false},{"x":58,"y":218,"on":false},{"x":58,"y":253,"on":true},{"x":58,"y":289,"on":false},{"x":94,"y":321,"on":false},{"x":122,"y":321,"on":true},{"x":150,"y":321,"on":false},{"x":186,"y":289,"on":false},{"x":186,"y":253,"on":true},{"x":186,"y":218,"on":false},{"x":150,"y":185,"on":false}], + [{"x":122,"y":0,"on":true},{"x":94,"y":0,"on":false},{"x":58,"y":32,"on":false},{"x":58,"y":67,"on":true},{"x":58,"y":103,"on":false},{"x":94,"y":135,"on":false},{"x":122,"y":135,"on":true},{"x":150,"y":135,"on":false},{"x":186,"y":103,"on":false},{"x":186,"y":67,"on":true},{"x":186,"y":32,"on":false},{"x":150,"y":0,"on":false}], + [{"x":122,"y":-188,"on":true},{"x":94,"y":-188,"on":false},{"x":58,"y":-156,"on":false},{"x":58,"y":-121,"on":true},{"x":58,"y":-84,"on":false},{"x":94,"y":-53,"on":false},{"x":122,"y":-53,"on":true},{"x":150,"y":-53,"on":false},{"x":186,"y":-84,"on":false},{"x":186,"y":-121,"on":true},{"x":186,"y":-156,"on":false},{"x":150,"y":-188,"on":false}] + ] + }, + "uni2E3E": { + "advanceWidth": 344, + "contours": [ + [{"x":135,"y":6,"on":true},{"x":135,"y":-13,"on":false},{"x":163,"y":-40,"on":false},{"x":205,"y":-64,"on":false},{"x":247,"y":-94,"on":false},{"x":275,"y":-140,"on":false},{"x":275,"y":-174,"on":true},{"x":275,"y":-226,"on":false},{"x":218,"y":-289,"on":false},{"x":124,"y":-321,"on":false},{"x":69,"y":-324,"on":true},{"x":69,"y":-262,"on":true},{"x":130,"y":-254,"on":false},{"x":209,"y":-212,"on":false},{"x":209,"y":-178,"on":true},{"x":209,"y":-156,"on":false},{"x":181,"y":-127,"on":false},{"x":139,"y":-104,"on":false},{"x":97,"y":-75,"on":false},{"x":69,"y":-30,"on":false},{"x":69,"y":6,"on":true},{"x":69,"y":44,"on":false},{"x":97,"y":89,"on":false},{"x":139,"y":115,"on":false},{"x":181,"y":134,"on":false},{"x":209,"y":156,"on":false},{"x":209,"y":176,"on":true},{"x":209,"y":198,"on":false},{"x":181,"y":222,"on":false},{"x":139,"y":241,"on":false},{"x":97,"y":266,"on":false},{"x":69,"y":309,"on":false},{"x":69,"y":347,"on":true},{"x":69,"y":384,"on":false},{"x":97,"y":427,"on":false},{"x":139,"y":452,"on":false},{"x":181,"y":471,"on":false},{"x":209,"y":496,"on":false},{"x":209,"y":518,"on":true},{"x":209,"y":538,"on":false},{"x":181,"y":564,"on":false},{"x":139,"y":589,"on":false},{"x":97,"y":619,"on":false},{"x":69,"y":664,"on":false},{"x":69,"y":698,"on":true},{"x":69,"y":750,"on":false},{"x":126,"y":814,"on":false},{"x":220,"y":846,"on":false},{"x":275,"y":849,"on":true},{"x":275,"y":786,"on":true},{"x":214,"y":779,"on":false},{"x":135,"y":736,"on":false},{"x":135,"y":702,"on":true},{"x":135,"y":680,"on":false},{"x":163,"y":651,"on":false},{"x":205,"y":628,"on":false},{"x":247,"y":598,"on":false},{"x":275,"y":554,"on":false},{"x":275,"y":518,"on":true},{"x":275,"y":480,"on":false},{"x":247,"y":435,"on":false},{"x":205,"y":409,"on":false},{"x":163,"y":390,"on":false},{"x":135,"y":367,"on":false},{"x":135,"y":347,"on":true},{"x":135,"y":327,"on":false},{"x":163,"y":303,"on":false},{"x":205,"y":284,"on":false},{"x":247,"y":257,"on":false},{"x":275,"y":213,"on":false},{"x":275,"y":176,"on":true},{"x":275,"y":140,"on":false},{"x":247,"y":98,"on":false},{"x":205,"y":73,"on":false},{"x":163,"y":54,"on":false},{"x":135,"y":28,"on":false}] + ] + }, + "uni2E3F": { + "advanceWidth": 645, + "contours": [ + [{"x":289,"y":760,"on":true},{"x":351,"y":760,"on":true},{"x":351,"y":700,"on":true},{"x":353,"y":700,"on":true},{"x":396,"y":700,"on":false},{"x":437,"y":696,"on":true},{"x":437,"y":760,"on":true},{"x":499,"y":760,"on":true},{"x":499,"y":688,"on":true},{"x":559,"y":678,"on":false},{"x":614,"y":660,"on":true},{"x":583,"y":574,"on":true},{"x":560,"y":581,"on":false},{"x":519,"y":591,"on":false},{"x":499,"y":595,"on":true},{"x":499,"y":292,"on":true},{"x":526,"y":297,"on":false},{"x":579,"y":314,"on":false},{"x":603,"y":325,"on":true},{"x":603,"y":180,"on":true},{"x":579,"y":171,"on":false},{"x":528,"y":155,"on":false},{"x":499,"y":150,"on":true},{"x":499,"y":-127,"on":true},{"x":437,"y":-127,"on":true},{"x":437,"y":140,"on":true},{"x":397,"y":136,"on":false},{"x":352,"y":136,"on":true},{"x":351,"y":-127,"on":true},{"x":289,"y":-127,"on":true},{"x":289,"y":139,"on":true},{"x":179,"y":152,"on":false},{"x":49,"y":290,"on":false},{"x":49,"y":426,"on":true},{"x":49,"y":506,"on":false},{"x":110,"y":619,"on":false},{"x":219,"y":686,"on":false},{"x":289,"y":696,"on":true}], + [{"x":343,"y":190,"on":true},{"x":408,"y":190,"on":false},{"x":513,"y":206,"on":false},{"x":553,"y":219,"on":true},{"x":553,"y":251,"on":true},{"x":506,"y":238,"on":false},{"x":406,"y":227,"on":false},{"x":363,"y":227,"on":true},{"x":264,"y":227,"on":false},{"x":149,"y":319,"on":false},{"x":149,"y":424,"on":true},{"x":149,"y":510,"on":false},{"x":226,"y":614,"on":false},{"x":289,"y":633,"on":true},{"x":289,"y":649,"on":true},{"x":209,"y":634,"on":false},{"x":104,"y":518,"on":false},{"x":104,"y":421,"on":true},{"x":105,"y":317,"on":false},{"x":219,"y":190,"on":false}], + [{"x":382,"y":607,"on":true},{"x":366,"y":607,"on":false},{"x":351,"y":605,"on":true},{"x":351,"y":280,"on":true},{"x":358,"y":280,"on":false},{"x":366,"y":280,"on":true},{"x":403,"y":280,"on":false},{"x":437,"y":283,"on":true},{"x":437,"y":605,"on":true},{"x":411,"y":607,"on":false}], + [{"x":202,"y":430,"on":true},{"x":202,"y":317,"on":false},{"x":289,"y":290,"on":true},{"x":289,"y":586,"on":true},{"x":250,"y":566,"on":false},{"x":202,"y":489,"on":false}] + ] + }, + "uni2E40": { + "advanceWidth": 305, + "references": [ + {"glyph":"hyphen","x":0,"y":205,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"hyphen","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E41": { + "advanceWidth": 245, + "references": [ + {"glyph":"comma","x":243,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E42": { + "advanceWidth": 432, + "references": [ + {"glyph":"quotedblbase","x":427,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uni2E43": { + "advanceWidth": 890, + "contours": [ + [{"x":243,"y":226,"on":true},{"x":137,"y":226,"on":false},{"x":39,"y":318,"on":false},{"x":39,"y":395,"on":true},{"x":39,"y":441,"on":false},{"x":81,"y":493,"on":false},{"x":111,"y":493,"on":true},{"x":139,"y":493,"on":false},{"x":170,"y":456,"on":false},{"x":170,"y":426,"on":true},{"x":170,"y":410,"on":false},{"x":162,"y":383,"on":false},{"x":162,"y":371,"on":true},{"x":162,"y":343,"on":false},{"x":194,"y":311,"on":false},{"x":241,"y":311,"on":true},{"x":852,"y":311,"on":true},{"x":852,"y":226,"on":true}] + ] + }, + "uni2E44": { + "advanceWidth": 331, + "contours": [ + [{"x":88,"y":510,"on":true},{"x":40,"y":551,"on":true},{"x":216,"y":763,"on":true},{"x":291,"y":706,"on":true}], + [{"x":88,"y":-58,"on":true},{"x":40,"y":-17,"on":true},{"x":216,"y":195,"on":true},{"x":291,"y":138,"on":true}] + ] + }, + "uniA640": { + "advanceWidth": 505, + "contours": [ + [{"x":51,"y":-220,"on":true},{"x":51,"y":-137,"on":true},{"x":59,"y":-130,"on":false},{"x":111,"y":-114,"on":false},{"x":158,"y":-114,"on":true},{"x":186,"y":-114,"on":false},{"x":250,"y":-121,"on":false},{"x":299,"y":-121,"on":true},{"x":348,"y":-121,"on":false},{"x":386,"y":-86,"on":false},{"x":386,"y":-60,"on":true},{"x":386,"y":-30,"on":false},{"x":337,"y":0,"on":false},{"x":276,"y":0,"on":true},{"x":29,"y":0,"on":true},{"x":29,"y":73,"on":true},{"x":346,"y":623,"on":true},{"x":39,"y":623,"on":true},{"x":39,"y":714,"on":true},{"x":470,"y":714,"on":true},{"x":470,"y":641,"on":true},{"x":152,"y":91,"on":true},{"x":282,"y":91,"on":true},{"x":360,"y":92,"on":false},{"x":450,"y":53,"on":false},{"x":488,"y":-16,"on":false},{"x":488,"y":-60,"on":true},{"x":488,"y":-124,"on":false},{"x":404,"y":-204,"on":false},{"x":320,"y":-204,"on":true},{"x":270,"y":-204,"on":false},{"x":182,"y":-198,"on":false},{"x":156,"y":-198,"on":true},{"x":128,"y":-198,"on":false},{"x":64,"y":-210,"on":false}] + ] + }, + "uniA641": { + "advanceWidth": 419, + "contours": [ + [{"x":42,"y":-218,"on":true},{"x":42,"y":-136,"on":true},{"x":48,"y":-127,"on":false},{"x":84,"y":-115,"on":false},{"x":115,"y":-115,"on":true},{"x":144,"y":-115,"on":false},{"x":190,"y":-121,"on":false},{"x":231,"y":-121,"on":true},{"x":268,"y":-121,"on":false},{"x":320,"y":-95,"on":false},{"x":320,"y":-62,"on":true},{"x":320,"y":-34,"on":false},{"x":275,"y":0,"on":false},{"x":212,"y":0,"on":true},{"x":29,"y":0,"on":true},{"x":29,"y":64,"on":true},{"x":266,"y":457,"on":true},{"x":45,"y":457,"on":true},{"x":45,"y":540,"on":true},{"x":383,"y":540,"on":true},{"x":383,"y":471,"on":true},{"x":150,"y":83,"on":true},{"x":222,"y":83,"on":true},{"x":320,"y":83,"on":false},{"x":412,"y":10,"on":false},{"x":412,"y":-62,"on":true},{"x":412,"y":-127,"on":false},{"x":332,"y":-204,"on":false},{"x":252,"y":-204,"on":true},{"x":204,"y":-204,"on":false},{"x":138,"y":-198,"on":false},{"x":112,"y":-198,"on":true},{"x":92,"y":-198,"on":false},{"x":50,"y":-208,"on":false}] + ] + }, + "uniA642": { + "advanceWidth": 505, + "contours": [ + [{"x":51,"y":-220,"on":true},{"x":51,"y":-137,"on":true},{"x":59,"y":-130,"on":false},{"x":111,"y":-114,"on":false},{"x":158,"y":-114,"on":true},{"x":186,"y":-114,"on":false},{"x":250,"y":-121,"on":false},{"x":299,"y":-121,"on":true},{"x":348,"y":-121,"on":false},{"x":386,"y":-86,"on":false},{"x":386,"y":-60,"on":true},{"x":386,"y":-30,"on":false},{"x":337,"y":0,"on":false},{"x":276,"y":0,"on":true},{"x":29,"y":0,"on":true},{"x":29,"y":73,"on":true},{"x":167,"y":312,"on":true},{"x":48,"y":312,"on":true},{"x":48,"y":396,"on":true},{"x":215,"y":396,"on":true},{"x":346,"y":623,"on":true},{"x":39,"y":623,"on":true},{"x":39,"y":714,"on":true},{"x":470,"y":714,"on":true},{"x":470,"y":641,"on":true},{"x":328,"y":396,"on":true},{"x":449,"y":396,"on":true},{"x":449,"y":312,"on":true},{"x":280,"y":312,"on":true},{"x":152,"y":91,"on":true},{"x":282,"y":91,"on":true},{"x":360,"y":92,"on":false},{"x":450,"y":53,"on":false},{"x":488,"y":-16,"on":false},{"x":488,"y":-60,"on":true},{"x":488,"y":-124,"on":false},{"x":404,"y":-204,"on":false},{"x":320,"y":-204,"on":true},{"x":270,"y":-204,"on":false},{"x":182,"y":-198,"on":false},{"x":156,"y":-198,"on":true},{"x":128,"y":-198,"on":false},{"x":64,"y":-210,"on":false}] + ] + }, + "uniA643": { + "advanceWidth": 419, + "contours": [ + [{"x":42,"y":-218,"on":true},{"x":42,"y":-136,"on":true},{"x":48,"y":-127,"on":false},{"x":84,"y":-115,"on":false},{"x":115,"y":-115,"on":true},{"x":144,"y":-115,"on":false},{"x":190,"y":-121,"on":false},{"x":231,"y":-121,"on":true},{"x":268,"y":-121,"on":false},{"x":320,"y":-95,"on":false},{"x":320,"y":-62,"on":true},{"x":320,"y":-34,"on":false},{"x":275,"y":0,"on":false},{"x":212,"y":0,"on":true},{"x":29,"y":0,"on":true},{"x":29,"y":64,"on":true},{"x":136,"y":241,"on":true},{"x":47,"y":241,"on":true},{"x":47,"y":315,"on":true},{"x":180,"y":315,"on":true},{"x":266,"y":457,"on":true},{"x":45,"y":457,"on":true},{"x":45,"y":540,"on":true},{"x":383,"y":540,"on":true},{"x":383,"y":471,"on":true},{"x":289,"y":315,"on":true},{"x":372,"y":315,"on":true},{"x":372,"y":241,"on":true},{"x":245,"y":241,"on":true},{"x":150,"y":83,"on":true},{"x":222,"y":83,"on":true},{"x":320,"y":83,"on":false},{"x":412,"y":10,"on":false},{"x":412,"y":-62,"on":true},{"x":412,"y":-127,"on":false},{"x":332,"y":-204,"on":false},{"x":252,"y":-204,"on":true},{"x":204,"y":-204,"on":false},{"x":138,"y":-198,"on":false},{"x":112,"y":-198,"on":true},{"x":92,"y":-198,"on":false},{"x":50,"y":-208,"on":false}] + ] + }, + "uniA644": { + "advanceWidth": 501, + "references": [ + {"glyph":"S","x":501,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA645": { + "advanceWidth": 435, + "references": [ + {"glyph":"s","x":435,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA646": { + "advanceWidth": 381, + "contours": [ + [{"x":113,"y":167,"on":true},{"x":113,"y":629,"on":true},{"x":38,"y":654,"on":true},{"x":38,"y":714,"on":true},{"x":293,"y":714,"on":true},{"x":293,"y":654,"on":true},{"x":218,"y":629,"on":true},{"x":218,"y":172,"on":true},{"x":218,"y":123,"on":false},{"x":253,"y":78,"on":false},{"x":291,"y":78,"on":true},{"x":310,"y":78,"on":false},{"x":345,"y":85,"on":false},{"x":362,"y":90,"on":true},{"x":362,"y":6,"on":true},{"x":346,"y":-1,"on":false},{"x":297,"y":-10,"on":false},{"x":272,"y":-10,"on":true},{"x":197,"y":-10,"on":false},{"x":113,"y":70,"on":false}] + ] + }, + "uniA647": { + "advanceWidth": 328, + "references": [ + {"glyph":"iota","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA648": { + "advanceWidth": 665, + "contours": [ + [{"x":131,"y":535,"on":true},{"x":131,"y":625,"on":true},{"x":281,"y":625,"on":true},{"x":281,"y":714,"on":true},{"x":386,"y":714,"on":true},{"x":386,"y":625,"on":true},{"x":535,"y":625,"on":true},{"x":535,"y":535,"on":true},{"x":386,"y":535,"on":true},{"x":386,"y":442,"on":true},{"x":484,"y":428,"on":false},{"x":585,"y":297,"on":false},{"x":585,"y":192,"on":true},{"x":585,"y":0,"on":true},{"x":480,"y":0,"on":true},{"x":480,"y":183,"on":true},{"x":480,"y":355,"on":false},{"x":332,"y":355,"on":true},{"x":260,"y":355,"on":false},{"x":185,"y":274,"on":false},{"x":185,"y":185,"on":true},{"x":185,"y":0,"on":true},{"x":80,"y":0,"on":true},{"x":80,"y":192,"on":true},{"x":80,"y":300,"on":false},{"x":184,"y":429,"on":false},{"x":281,"y":443,"on":true},{"x":281,"y":535,"on":true}] + ] + }, + "uniA649": { + "advanceWidth": 580, + "contours": [ + [{"x":112,"y":388,"on":true},{"x":112,"y":462,"on":true},{"x":238,"y":462,"on":true},{"x":238,"y":540,"on":true},{"x":340,"y":540,"on":true},{"x":340,"y":462,"on":true},{"x":465,"y":462,"on":true},{"x":465,"y":388,"on":true},{"x":340,"y":388,"on":true},{"x":340,"y":317,"on":true},{"x":508,"y":293,"on":false},{"x":508,"y":111,"on":true},{"x":508,"y":0,"on":true},{"x":406,"y":0,"on":true},{"x":406,"y":102,"on":true},{"x":406,"y":170,"on":false},{"x":349,"y":234,"on":false},{"x":290,"y":234,"on":true},{"x":231,"y":234,"on":false},{"x":174,"y":170,"on":false},{"x":174,"y":102,"on":true},{"x":174,"y":0,"on":true},{"x":72,"y":0,"on":true},{"x":72,"y":111,"on":true},{"x":72,"y":292,"on":false},{"x":238,"y":316,"on":true},{"x":238,"y":388,"on":true}] + ] + }, + "uniA64A": { + "advanceWidth": 711, + "contours": [ + [{"x":358,"y":439,"on":true},{"x":509,"y":714,"on":true},{"x":621,"y":714,"on":true},{"x":454,"y":430,"on":true},{"x":557,"y":411,"on":false},{"x":656,"y":295,"on":false},{"x":656,"y":215,"on":true},{"x":656,"y":150,"on":false},{"x":591,"y":48,"on":false},{"x":458,"y":-10,"on":false},{"x":356,"y":-10,"on":true},{"x":254,"y":-10,"on":false},{"x":121,"y":48,"on":false},{"x":56,"y":150,"on":false},{"x":56,"y":215,"on":true},{"x":56,"y":299,"on":false},{"x":157,"y":412,"on":false},{"x":258,"y":430,"on":true},{"x":93,"y":714,"on":true},{"x":206,"y":714,"on":true}], + [{"x":165,"y":218,"on":true},{"x":165,"y":154,"on":false},{"x":258,"y":80,"on":false},{"x":356,"y":80,"on":true},{"x":454,"y":80,"on":false},{"x":547,"y":154,"on":false},{"x":547,"y":218,"on":true},{"x":547,"y":273,"on":false},{"x":478,"y":342,"on":false},{"x":409,"y":351,"on":true},{"x":409,"y":222,"on":true},{"x":306,"y":222,"on":true},{"x":306,"y":348,"on":true},{"x":304,"y":351,"on":true},{"x":234,"y":341,"on":false},{"x":165,"y":272,"on":false}] + ] + }, + "uniA64B": { + "advanceWidth": 468, + "contours": [ + [{"x":237,"y":-10,"on":true},{"x":148,"y":-10,"on":false},{"x":55,"y":82,"on":false},{"x":55,"y":157,"on":true},{"x":55,"y":214,"on":false},{"x":118,"y":314,"on":false},{"x":171,"y":368,"on":true},{"x":117,"y":419,"on":false},{"x":58,"y":506,"on":false},{"x":34,"y":601,"on":false},{"x":34,"y":664,"on":true},{"x":135,"y":664,"on":true},{"x":135,"y":614,"on":false},{"x":153,"y":539,"on":false},{"x":198,"y":472,"on":false},{"x":236,"y":434,"on":true},{"x":270,"y":474,"on":false},{"x":318,"y":562,"on":false},{"x":342,"y":678,"on":false},{"x":342,"y":761,"on":true},{"x":446,"y":761,"on":true},{"x":446,"y":672,"on":false},{"x":410,"y":536,"on":false},{"x":344,"y":424,"on":false},{"x":298,"y":375,"on":true},{"x":359,"y":322,"on":false},{"x":417,"y":220,"on":false},{"x":417,"y":161,"on":true},{"x":417,"y":88,"on":false},{"x":323,"y":-10,"on":false}], + [{"x":235,"y":69,"on":true},{"x":275,"y":69,"on":false},{"x":322,"y":117,"on":false},{"x":322,"y":159,"on":true},{"x":322,"y":202,"on":false},{"x":277,"y":273,"on":false},{"x":234,"y":311,"on":true},{"x":190,"y":268,"on":false},{"x":148,"y":198,"on":false},{"x":148,"y":161,"on":true},{"x":148,"y":119,"on":false},{"x":194,"y":69,"on":false}] + ] + }, + "uniA64C": { + "advanceWidth": 939, + "contours": [ + [{"x":311,"y":-10,"on":true},{"x":227,"y":-10,"on":false},{"x":114,"y":86,"on":false},{"x":56,"y":256,"on":false},{"x":56,"y":367,"on":true},{"x":56,"y":471,"on":false},{"x":111,"y":632,"on":false},{"x":218,"y":724,"on":false},{"x":295,"y":724,"on":true},{"x":330,"y":724,"on":false},{"x":400,"y":699,"on":false},{"x":427,"y":679,"on":true},{"x":389,"y":601,"on":true},{"x":370,"y":616,"on":false},{"x":327,"y":635,"on":false},{"x":302,"y":635,"on":true},{"x":256,"y":635,"on":false},{"x":194,"y":566,"on":false},{"x":162,"y":444,"on":false},{"x":162,"y":365,"on":true},{"x":162,"y":234,"on":false},{"x":248,"y":83,"on":false},{"x":327,"y":83,"on":true},{"x":352,"y":83,"on":false},{"x":397,"y":102,"on":false},{"x":417,"y":119,"on":true},{"x":417,"y":332,"on":true},{"x":520,"y":332,"on":true},{"x":520,"y":119,"on":true},{"x":541,"y":102,"on":false},{"x":587,"y":83,"on":false},{"x":613,"y":83,"on":true},{"x":693,"y":83,"on":false},{"x":778,"y":234,"on":false},{"x":778,"y":365,"on":true},{"x":778,"y":445,"on":false},{"x":746,"y":567,"on":false},{"x":684,"y":635,"on":false},{"x":638,"y":635,"on":true},{"x":613,"y":635,"on":false},{"x":569,"y":616,"on":false},{"x":551,"y":601,"on":true},{"x":513,"y":679,"on":true},{"x":540,"y":700,"on":false},{"x":610,"y":724,"on":false},{"x":645,"y":724,"on":true},{"x":722,"y":724,"on":false},{"x":829,"y":632,"on":false},{"x":884,"y":471,"on":false},{"x":884,"y":367,"on":true},{"x":884,"y":256,"on":false},{"x":826,"y":86,"on":false},{"x":712,"y":-10,"on":false},{"x":627,"y":-10,"on":true},{"x":531,"y":-10,"on":false},{"x":470,"y":52,"on":true},{"x":407,"y":-10,"on":false}] + ] + }, + "uniA64D": { + "advanceWidth": 805, + "contours": [ + [{"x":260,"y":-10,"on":true},{"x":157,"y":-10,"on":false},{"x":51,"y":139,"on":false},{"x":51,"y":269,"on":true},{"x":51,"y":407,"on":false},{"x":158,"y":550,"on":false},{"x":252,"y":550,"on":true},{"x":284,"y":550,"on":false},{"x":336,"y":534,"on":false},{"x":359,"y":520,"on":true},{"x":325,"y":443,"on":true},{"x":307,"y":453,"on":false},{"x":274,"y":464,"on":false},{"x":257,"y":464,"on":true},{"x":156,"y":464,"on":false},{"x":156,"y":270,"on":true},{"x":156,"y":183,"on":false},{"x":216,"y":76,"on":false},{"x":271,"y":76,"on":true},{"x":294,"y":76,"on":false},{"x":334,"y":94,"on":false},{"x":354,"y":116,"on":true},{"x":354,"y":284,"on":true},{"x":456,"y":284,"on":true},{"x":456,"y":117,"on":true},{"x":476,"y":94,"on":false},{"x":517,"y":76,"on":false},{"x":541,"y":76,"on":true},{"x":594,"y":76,"on":false},{"x":654,"y":177,"on":false},{"x":654,"y":270,"on":true},{"x":654,"y":464,"on":false},{"x":553,"y":464,"on":true},{"x":536,"y":464,"on":false},{"x":503,"y":453,"on":false},{"x":484,"y":443,"on":true},{"x":450,"y":520,"on":true},{"x":473,"y":534,"on":false},{"x":526,"y":550,"on":false},{"x":558,"y":550,"on":true},{"x":652,"y":550,"on":false},{"x":759,"y":407,"on":false},{"x":759,"y":269,"on":true},{"x":759,"y":132,"on":false},{"x":650,"y":-10,"on":false},{"x":549,"y":-10,"on":true},{"x":502,"y":-10,"on":false},{"x":430,"y":25,"on":false},{"x":405,"y":58,"on":true},{"x":379,"y":24,"on":false},{"x":308,"y":-10,"on":false}] + ] + }, + "uniA64E": { + "advanceWidth": 609, + "contours": [ + [{"x":147,"y":531,"on":true},{"x":147,"y":583,"on":false},{"x":114,"y":636,"on":false},{"x":74,"y":636,"on":true},{"x":54,"y":636,"on":false},{"x":19,"y":629,"on":false},{"x":3,"y":624,"on":true},{"x":-14,"y":708,"on":true},{"x":6,"y":716,"on":false},{"x":56,"y":724,"on":false},{"x":85,"y":724,"on":true},{"x":164,"y":724,"on":false},{"x":252,"y":643,"on":false},{"x":252,"y":542,"on":true},{"x":252,"y":423,"on":true},{"x":327,"y":423,"on":true},{"x":454,"y":423,"on":false},{"x":579,"y":316,"on":false},{"x":579,"y":215,"on":true},{"x":579,"y":113,"on":false},{"x":455,"y":0,"on":false},{"x":331,"y":0,"on":true},{"x":147,"y":0,"on":true}], + [{"x":252,"y":89,"on":true},{"x":325,"y":89,"on":true},{"x":397,"y":89,"on":false},{"x":472,"y":150,"on":false},{"x":472,"y":215,"on":true},{"x":472,"y":282,"on":false},{"x":392,"y":335,"on":false},{"x":318,"y":335,"on":true},{"x":252,"y":335,"on":true}] + ] + }, + "uniA64F": { + "advanceWidth": 608, + "contours": [ + [{"x":154,"y":378,"on":true},{"x":154,"y":419,"on":false},{"x":123,"y":465,"on":false},{"x":86,"y":465,"on":true},{"x":69,"y":465,"on":false},{"x":38,"y":458,"on":false},{"x":24,"y":454,"on":true},{"x":2,"y":534,"on":true},{"x":18,"y":540,"on":false},{"x":68,"y":550,"on":false},{"x":99,"y":550,"on":true},{"x":175,"y":550,"on":false},{"x":256,"y":474,"on":false},{"x":256,"y":386,"on":true},{"x":256,"y":323,"on":true},{"x":358,"y":323,"on":true},{"x":566,"y":323,"on":false},{"x":566,"y":167,"on":true},{"x":566,"y":88,"on":false},{"x":463,"y":0,"on":false},{"x":359,"y":0,"on":true},{"x":154,"y":0,"on":true}], + [{"x":462,"y":165,"on":true},{"x":462,"y":208,"on":false},{"x":408,"y":246,"on":false},{"x":355,"y":246,"on":true},{"x":255,"y":246,"on":true},{"x":255,"y":78,"on":true},{"x":356,"y":78,"on":true},{"x":407,"y":78,"on":false},{"x":462,"y":121,"on":false}] + ] + }, + "uniA650": { + "advanceWidth": 880, + "contours": [ + [{"x":166,"y":0,"on":true},{"x":166,"y":623,"on":true},{"x":6,"y":623,"on":true},{"x":6,"y":714,"on":true},{"x":271,"y":714,"on":true},{"x":271,"y":423,"on":true},{"x":344,"y":423,"on":true},{"x":470,"y":423,"on":false},{"x":595,"y":316,"on":false},{"x":595,"y":215,"on":true},{"x":595,"y":113,"on":false},{"x":471,"y":0,"on":false},{"x":347,"y":0,"on":true}], + [{"x":684,"y":0,"on":true},{"x":684,"y":714,"on":true},{"x":789,"y":714,"on":true},{"x":789,"y":0,"on":true}], + [{"x":271,"y":89,"on":true},{"x":343,"y":89,"on":true},{"x":414,"y":89,"on":false},{"x":488,"y":150,"on":false},{"x":488,"y":215,"on":true},{"x":488,"y":282,"on":false},{"x":410,"y":335,"on":false},{"x":337,"y":335,"on":true},{"x":271,"y":335,"on":true}] + ] + }, + "uniA651": { + "advanceWidth": 814, + "contours": [ + [{"x":159,"y":0,"on":true},{"x":159,"y":457,"on":true},{"x":10,"y":457,"on":true},{"x":10,"y":540,"on":true},{"x":261,"y":540,"on":true},{"x":261,"y":323,"on":true},{"x":350,"y":323,"on":true},{"x":558,"y":323,"on":false},{"x":558,"y":167,"on":true},{"x":558,"y":88,"on":false},{"x":454,"y":0,"on":false},{"x":351,"y":0,"on":true}], + [{"x":637,"y":0,"on":true},{"x":637,"y":540,"on":true},{"x":739,"y":540,"on":true},{"x":739,"y":0,"on":true}], + [{"x":261,"y":78,"on":true},{"x":348,"y":78,"on":true},{"x":398,"y":78,"on":false},{"x":454,"y":120,"on":false},{"x":454,"y":164,"on":true},{"x":454,"y":208,"on":false},{"x":400,"y":246,"on":false},{"x":347,"y":246,"on":true},{"x":261,"y":246,"on":true}] + ] + }, + "uniA652": { + "advanceWidth": 804, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":623,"on":true},{"x":332,"y":623,"on":true},{"x":332,"y":714,"on":true},{"x":437,"y":714,"on":true},{"x":437,"y":623,"on":true},{"x":639,"y":623,"on":true},{"x":639,"y":537,"on":true},{"x":437,"y":537,"on":true},{"x":437,"y":423,"on":true},{"x":510,"y":423,"on":true},{"x":637,"y":423,"on":false},{"x":761,"y":316,"on":false},{"x":761,"y":215,"on":true},{"x":761,"y":113,"on":false},{"x":636,"y":0,"on":false},{"x":513,"y":0,"on":true},{"x":332,"y":0,"on":true},{"x":332,"y":537,"on":true},{"x":191,"y":537,"on":true},{"x":191,"y":0,"on":true}], + [{"x":437,"y":89,"on":true},{"x":509,"y":89,"on":true},{"x":579,"y":89,"on":false},{"x":654,"y":150,"on":false},{"x":654,"y":215,"on":true},{"x":654,"y":282,"on":false},{"x":576,"y":335,"on":false},{"x":503,"y":335,"on":true},{"x":437,"y":335,"on":true}] + ] + }, + "uniA653": { + "advanceWidth": 761, + "contours": [ + [{"x":75,"y":0,"on":true},{"x":75,"y":642,"on":true},{"x":178,"y":642,"on":true},{"x":178,"y":540,"on":true},{"x":317,"y":540,"on":true},{"x":317,"y":642,"on":true},{"x":420,"y":642,"on":true},{"x":420,"y":540,"on":true},{"x":589,"y":540,"on":true},{"x":589,"y":461,"on":true},{"x":420,"y":461,"on":true},{"x":420,"y":323,"on":true},{"x":514,"y":323,"on":true},{"x":721,"y":323,"on":false},{"x":721,"y":167,"on":true},{"x":721,"y":88,"on":false},{"x":618,"y":0,"on":false},{"x":514,"y":0,"on":true},{"x":317,"y":0,"on":true},{"x":317,"y":461,"on":true},{"x":178,"y":461,"on":true},{"x":178,"y":0,"on":true}], + [{"x":420,"y":78,"on":true},{"x":512,"y":78,"on":true},{"x":562,"y":78,"on":false},{"x":618,"y":120,"on":false},{"x":618,"y":164,"on":true},{"x":618,"y":208,"on":false},{"x":562,"y":246,"on":false},{"x":509,"y":246,"on":true},{"x":420,"y":246,"on":true}] + ] + }, + "uniA654": { + "advanceWidth": 942, + "contours": [ + [{"x":56,"y":358,"on":true},{"x":56,"y":471,"on":false},{"x":117,"y":636,"on":false},{"x":240,"y":725,"on":false},{"x":333,"y":725,"on":true},{"x":459,"y":725,"on":false},{"x":599,"y":562,"on":false},{"x":610,"y":418,"on":true},{"x":751,"y":418,"on":true},{"x":751,"y":714,"on":true},{"x":856,"y":714,"on":true},{"x":856,"y":0,"on":true},{"x":751,"y":0,"on":true},{"x":751,"y":327,"on":true},{"x":612,"y":327,"on":true},{"x":605,"y":171,"on":false},{"x":466,"y":-10,"on":false},{"x":334,"y":-10,"on":true},{"x":239,"y":-10,"on":false},{"x":116,"y":84,"on":false},{"x":56,"y":250,"on":false}], + [{"x":503,"y":358,"on":true},{"x":503,"y":487,"on":false},{"x":420,"y":633,"on":false},{"x":333,"y":633,"on":true},{"x":247,"y":633,"on":false},{"x":165,"y":488,"on":false},{"x":165,"y":358,"on":true},{"x":165,"y":228,"on":false},{"x":246,"y":82,"on":false},{"x":334,"y":82,"on":true},{"x":420,"y":82,"on":false},{"x":503,"y":228,"on":false}] + ] + }, + "uniA655": { + "advanceWidth": 772, + "references": [ + {"glyph":"uni044E","x":772,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA656": { + "advanceWidth": 909, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":408,"on":true},{"x":445,"y":408,"on":true},{"x":548,"y":716,"on":true},{"x":670,"y":716,"on":true},{"x":909,"y":0,"on":true},{"x":802,"y":0,"on":true},{"x":703,"y":319,"on":true},{"x":515,"y":319,"on":true},{"x":416,"y":0,"on":true},{"x":309,"y":0,"on":true},{"x":415,"y":319,"on":true},{"x":191,"y":319,"on":true},{"x":191,"y":0,"on":true}], + [{"x":540,"y":408,"on":true},{"x":677,"y":408,"on":true},{"x":643,"y":517,"on":true},{"x":636,"y":539,"on":false},{"x":614,"y":608,"on":false},{"x":609,"y":631,"on":true},{"x":604,"y":608,"on":false},{"x":582,"y":540,"on":false},{"x":574,"y":517,"on":true}] + ] + }, + "uniA657": { + "advanceWidth": 793, + "contours": [ + [{"x":464,"y":-10,"on":true},{"x":393,"y":-10,"on":false},{"x":313,"y":76,"on":false},{"x":313,"y":147,"on":true},{"x":313,"y":177,"on":false},{"x":333,"y":227,"on":false},{"x":350,"y":244,"on":true},{"x":178,"y":244,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true},{"x":178,"y":540,"on":true},{"x":178,"y":325,"on":true},{"x":620,"y":325,"on":true},{"x":620,"y":358,"on":true},{"x":620,"y":470,"on":false},{"x":529,"y":470,"on":true},{"x":496,"y":470,"on":false},{"x":429,"y":450,"on":false},{"x":394,"y":431,"on":true},{"x":360,"y":506,"on":true},{"x":400,"y":527,"on":false},{"x":490,"y":550,"on":false},{"x":538,"y":550,"on":true},{"x":721,"y":550,"on":false},{"x":721,"y":360,"on":true},{"x":721,"y":0,"on":true},{"x":647,"y":0,"on":true},{"x":628,"y":77,"on":true},{"x":625,"y":77,"on":true},{"x":594,"y":32,"on":false},{"x":521,"y":-10,"on":false}], + [{"x":498,"y":70,"on":true},{"x":553,"y":70,"on":false},{"x":620,"y":144,"on":false},{"x":620,"y":211,"on":true},{"x":620,"y":261,"on":true},{"x":557,"y":258,"on":true},{"x":418,"y":254,"on":false},{"x":418,"y":153,"on":true},{"x":418,"y":110,"on":false},{"x":460,"y":70,"on":false}] + ] + }, + "uniA658": { + "advanceWidth": 600, + "contours": [ + [{"x":361,"y":716,"on":true},{"x":600,"y":0,"on":true},{"x":0,"y":0,"on":true},{"x":240,"y":716,"on":true}], + [{"x":301,"y":633,"on":true},{"x":296,"y":610,"on":false},{"x":274,"y":536,"on":false},{"x":267,"y":511,"on":true},{"x":215,"y":340,"on":true},{"x":385,"y":340,"on":true},{"x":334,"y":511,"on":true},{"x":327,"y":536,"on":false},{"x":306,"y":609,"on":false}], + [{"x":189,"y":253,"on":true},{"x":136,"y":87,"on":true},{"x":465,"y":87,"on":true},{"x":411,"y":253,"on":true}] + ] + }, + "uniA659": { + "advanceWidth": 510, + "contours": [ + [{"x":0,"y":0,"on":true},{"x":192,"y":540,"on":true},{"x":317,"y":540,"on":true},{"x":510,"y":0,"on":true}], + [{"x":196,"y":282,"on":true},{"x":313,"y":282,"on":true},{"x":288,"y":364,"on":true},{"x":282,"y":382,"on":false},{"x":262,"y":440,"on":false},{"x":256,"y":463,"on":true},{"x":253,"y":463,"on":true},{"x":247,"y":441,"on":false},{"x":226,"y":381,"on":false},{"x":220,"y":363,"on":true}], + [{"x":172,"y":206,"on":true},{"x":130,"y":76,"on":true},{"x":380,"y":76,"on":true},{"x":338,"y":206,"on":true}] + ] + }, + "uniA65A": { + "advanceWidth": 694, + "contours": [ + [{"x":534,"y":153,"on":true},{"x":395,"y":153,"on":true},{"x":395,"y":0,"on":true},{"x":299,"y":0,"on":true},{"x":299,"y":153,"on":true},{"x":160,"y":153,"on":true},{"x":120,"y":0,"on":true},{"x":12,"y":0,"on":true},{"x":79,"y":227,"on":true},{"x":104,"y":312,"on":false},{"x":177,"y":401,"on":false},{"x":250,"y":411,"on":true},{"x":76,"y":656,"on":true},{"x":76,"y":714,"on":true},{"x":619,"y":714,"on":true},{"x":619,"y":656,"on":true},{"x":443,"y":411,"on":true},{"x":515,"y":401,"on":false},{"x":590,"y":312,"on":false},{"x":614,"y":230,"on":true},{"x":682,"y":0,"on":true},{"x":574,"y":0,"on":true}], + [{"x":347,"y":419,"on":true},{"x":487,"y":625,"on":true},{"x":207,"y":625,"on":true}], + [{"x":322,"y":342,"on":true},{"x":280,"y":342,"on":false},{"x":226,"y":322,"on":false},{"x":194,"y":273,"on":false},{"x":181,"y":231,"on":true},{"x":513,"y":231,"on":true},{"x":494,"y":292,"on":false},{"x":436,"y":342,"on":false},{"x":376,"y":342,"on":true}] + ] + }, + "uniA65B": { + "advanceWidth": 582, + "contours": [ + [{"x":447,"y":112,"on":true},{"x":334,"y":112,"on":true},{"x":334,"y":0,"on":true},{"x":249,"y":0,"on":true},{"x":249,"y":112,"on":true},{"x":136,"y":112,"on":true},{"x":102,"y":0,"on":true},{"x":7,"y":0,"on":true},{"x":62,"y":167,"on":true},{"x":82,"y":232,"on":false},{"x":142,"y":302,"on":false},{"x":201,"y":311,"on":true},{"x":61,"y":491,"on":true},{"x":61,"y":540,"on":true},{"x":521,"y":540,"on":true},{"x":521,"y":491,"on":true},{"x":381,"y":311,"on":true},{"x":437,"y":300,"on":false},{"x":498,"y":234,"on":false},{"x":520,"y":167,"on":true},{"x":575,"y":0,"on":true},{"x":479,"y":0,"on":true}], + [{"x":180,"y":465,"on":true},{"x":291,"y":318,"on":true},{"x":402,"y":465,"on":true}], + [{"x":267,"y":252,"on":true},{"x":214,"y":251,"on":false},{"x":168,"y":221,"on":false},{"x":153,"y":178,"on":true},{"x":429,"y":178,"on":true},{"x":414,"y":221,"on":false},{"x":368,"y":252,"on":false},{"x":316,"y":252,"on":true}] + ] + }, + "uniA65C": { + "advanceWidth": 909, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":408,"on":true},{"x":445,"y":408,"on":true},{"x":548,"y":716,"on":true},{"x":670,"y":716,"on":true},{"x":909,"y":0,"on":true},{"x":309,"y":0,"on":true},{"x":415,"y":319,"on":true},{"x":191,"y":319,"on":true},{"x":191,"y":0,"on":true}], + [{"x":540,"y":408,"on":true},{"x":677,"y":408,"on":true},{"x":643,"y":517,"on":true},{"x":636,"y":539,"on":false},{"x":614,"y":608,"on":false},{"x":609,"y":631,"on":true},{"x":604,"y":608,"on":false},{"x":582,"y":540,"on":false},{"x":574,"y":517,"on":true}], + [{"x":515,"y":319,"on":true},{"x":443,"y":87,"on":true},{"x":775,"y":87,"on":true},{"x":703,"y":319,"on":true}] + ] + }, + "uniA65D": { + "advanceWidth": 787, + "contours": [ + [{"x":177,"y":540,"on":true},{"x":177,"y":311,"on":true},{"x":388,"y":311,"on":true},{"x":469,"y":540,"on":true},{"x":594,"y":540,"on":true},{"x":787,"y":0,"on":true},{"x":277,"y":0,"on":true},{"x":360,"y":233,"on":true},{"x":177,"y":233,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true}], + [{"x":533,"y":465,"on":true},{"x":529,"y":465,"on":true},{"x":524,"y":443,"on":false},{"x":504,"y":383,"on":false},{"x":497,"y":364,"on":true},{"x":477,"y":298,"on":true},{"x":585,"y":298,"on":true},{"x":565,"y":366,"on":true},{"x":560,"y":383,"on":false},{"x":539,"y":442,"on":false}], + [{"x":454,"y":222,"on":true},{"x":406,"y":76,"on":true},{"x":658,"y":76,"on":true},{"x":609,"y":222,"on":true}] + ] + }, + "uniA65E": { + "advanceWidth": 622, + "contours": [ + [{"x":621,"y":1,"on":true},{"x":516,"y":1,"on":true},{"x":431,"y":296,"on":true},{"x":403,"y":396,"on":false},{"x":390,"y":482,"on":true},{"x":382,"y":482,"on":true},{"x":384,"y":-130,"on":true},{"x":286,"y":-130,"on":true},{"x":288,"y":482,"on":true},{"x":280,"y":482,"on":true},{"x":273,"y":436,"on":false},{"x":251,"y":329,"on":false},{"x":240,"y":287,"on":true},{"x":212,"y":186,"on":true},{"x":196,"y":128,"on":false},{"x":160,"y":42,"on":false},{"x":108,"y":-6,"on":false},{"x":68,"y":-6,"on":true},{"x":47,"y":-6,"on":false},{"x":16,"y":2,"on":false},{"x":5,"y":6,"on":true},{"x":5,"y":92,"on":true},{"x":14,"y":88,"on":false},{"x":34,"y":83,"on":false},{"x":44,"y":83,"on":true},{"x":74,"y":83,"on":false},{"x":106,"y":141,"on":false},{"x":125,"y":207,"on":true},{"x":278,"y":715,"on":true},{"x":395,"y":715,"on":true}] + ] + }, + "uniA65F": { + "advanceWidth": 519, + "contours": [ + [{"x":518,"y":0,"on":true},{"x":416,"y":0,"on":true},{"x":354,"y":217,"on":true},{"x":334,"y":289,"on":false},{"x":326,"y":338,"on":true},{"x":318,"y":338,"on":true},{"x":321,"y":-152,"on":true},{"x":225,"y":-152,"on":true},{"x":229,"y":338,"on":true},{"x":221,"y":338,"on":true},{"x":216,"y":313,"on":false},{"x":204,"y":255,"on":false},{"x":195,"y":222,"on":true},{"x":171,"y":138,"on":true},{"x":152,"y":62,"on":false},{"x":99,"y":-6,"on":false},{"x":49,"y":-7,"on":true},{"x":24,"y":-7,"on":false},{"x":0,"y":2,"on":true},{"x":0,"y":82,"on":true},{"x":18,"y":75,"on":false},{"x":32,"y":76,"on":true},{"x":54,"y":76,"on":false},{"x":79,"y":117,"on":false},{"x":90,"y":153,"on":true},{"x":219,"y":539,"on":true},{"x":330,"y":539,"on":true}] + ] + }, + "uniA660": { + "advanceWidth": 686, + "references": [ + {"glyph":"uni0426","x":686,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA661": { + "advanceWidth": 592, + "references": [ + {"glyph":"uni0446","x":592,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA662": { + "advanceWidth": 825, + "contours": [ + [{"x":807,"y":714,"on":true},{"x":807,"y":624,"on":true},{"x":547,"y":624,"on":true},{"x":547,"y":92,"on":true},{"x":629,"y":92,"on":true},{"x":629,"y":-196,"on":true},{"x":528,"y":-196,"on":true},{"x":528,"y":0,"on":true},{"x":106,"y":0,"on":true},{"x":106,"y":-196,"on":true},{"x":5,"y":-196,"on":true},{"x":5,"y":92,"on":true},{"x":56,"y":92,"on":true},{"x":119,"y":224,"on":false},{"x":203,"y":543,"on":false},{"x":212,"y":714,"on":true}], + [{"x":442,"y":622,"on":true},{"x":304,"y":622,"on":true},{"x":298,"y":538,"on":false},{"x":260,"y":350,"on":false},{"x":202,"y":168,"on":false},{"x":167,"y":92,"on":true},{"x":442,"y":92,"on":true}] + ] + }, + "uniA663": { + "advanceWidth": 691, + "contours": [ + [{"x":674,"y":540,"on":true},{"x":674,"y":457,"on":true},{"x":467,"y":457,"on":true},{"x":467,"y":84,"on":true},{"x":538,"y":84,"on":true},{"x":538,"y":-189,"on":true},{"x":441,"y":-189,"on":true},{"x":441,"y":0,"on":true},{"x":111,"y":0,"on":true},{"x":111,"y":-189,"on":true},{"x":14,"y":-189,"on":true},{"x":14,"y":84,"on":true},{"x":58,"y":84,"on":true},{"x":114,"y":176,"on":false},{"x":170,"y":417,"on":false},{"x":174,"y":539,"on":true},{"x":365,"y":539,"on":true},{"x":365,"y":540,"on":true}], + [{"x":163,"y":84,"on":true},{"x":365,"y":84,"on":true},{"x":365,"y":458,"on":true},{"x":262,"y":458,"on":true},{"x":255,"y":362,"on":false},{"x":206,"y":163,"on":false}] + ] + }, + "uniA664": { + "advanceWidth": 837, + "contours": [ + [{"x":560,"y":0,"on":true},{"x":454,"y":0,"on":true},{"x":454,"y":621,"on":true},{"x":279,"y":621,"on":true},{"x":273,"y":567,"on":false},{"x":260,"y":445,"on":false},{"x":245,"y":327,"on":false},{"x":230,"y":223,"on":false},{"x":223,"y":187,"on":true},{"x":205,"y":89,"on":false},{"x":138,"y":-10,"on":false},{"x":64,"y":-10,"on":true},{"x":27,"y":-10,"on":false},{"x":2,"y":1,"on":true},{"x":2,"y":90,"on":true},{"x":22,"y":79,"on":false},{"x":49,"y":79,"on":true},{"x":85,"y":79,"on":false},{"x":117,"y":158,"on":false},{"x":128,"y":228,"on":true},{"x":134,"y":267,"on":false},{"x":155,"y":417,"on":false},{"x":178,"y":610,"on":false},{"x":190,"y":714,"on":true},{"x":819,"y":714,"on":true},{"x":819,"y":624,"on":true},{"x":560,"y":624,"on":true}] + ] + }, + "uniA665": { + "advanceWidth": 696, + "contours": [ + [{"x":678,"y":540,"on":true},{"x":678,"y":456,"on":true},{"x":471,"y":456,"on":true},{"x":471,"y":0,"on":true},{"x":366,"y":0,"on":true},{"x":366,"y":454,"on":true},{"x":235,"y":454,"on":true},{"x":224,"y":290,"on":false},{"x":184,"y":86,"on":false},{"x":114,"y":-8,"on":false},{"x":57,"y":-8,"on":true},{"x":24,"y":-8,"on":false},{"x":4,"y":2,"on":true},{"x":4,"y":83,"on":true},{"x":17,"y":78,"on":false},{"x":34,"y":78,"on":true},{"x":64,"y":78,"on":false},{"x":106,"y":173,"on":false},{"x":135,"y":376,"on":false},{"x":145,"y":539,"on":true},{"x":369,"y":539,"on":true},{"x":369,"y":540,"on":true}] + ] + }, + "uniA666": { + "advanceWidth": 1027, + "contours": [ + [{"x":376,"y":0,"on":true},{"x":180,"y":596,"on":true},{"x":176,"y":596,"on":true},{"x":178,"y":558,"on":false},{"x":183,"y":458,"on":false},{"x":183,"y":414,"on":true},{"x":183,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":235,"y":714,"on":true},{"x":422,"y":147,"on":true},{"x":425,"y":147,"on":true},{"x":616,"y":714,"on":true},{"x":1013,"y":714,"on":true},{"x":1013,"y":624,"on":true},{"x":765,"y":624,"on":true},{"x":765,"y":0,"on":true},{"x":663,"y":0,"on":true},{"x":663,"y":417,"on":true},{"x":663,"y":459,"on":false},{"x":668,"y":558,"on":false},{"x":670,"y":595,"on":true},{"x":666,"y":595,"on":true},{"x":466,"y":0,"on":true}] + ] + }, + "uniA667": { + "advanceWidth": 857, + "contours": [ + [{"x":839,"y":540,"on":true},{"x":839,"y":457,"on":true},{"x":632,"y":457,"on":true},{"x":632,"y":0,"on":true},{"x":538,"y":0,"on":true},{"x":538,"y":305,"on":true},{"x":538,"y":331,"on":false},{"x":541,"y":393,"on":false},{"x":543,"y":425,"on":true},{"x":540,"y":425,"on":true},{"x":394,"y":0,"on":true},{"x":312,"y":0,"on":true},{"x":168,"y":425,"on":true},{"x":164,"y":425,"on":true},{"x":166,"y":394,"on":false},{"x":169,"y":332,"on":false},{"x":169,"y":304,"on":true},{"x":169,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":217,"y":539,"on":true},{"x":353,"y":132,"on":true},{"x":493,"y":539,"on":true},{"x":545,"y":539,"on":true},{"x":544,"y":540,"on":true}] + ] + }, + "uniA668": { + "advanceWidth": 704, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"period","x":229,"y":303,"a":0.974609375,"b":0,"c":0,"d":0.9969482421875,"roundToGrid":true} + ] + }, + "uniA669": { + "advanceWidth": 569, + "contours": [ + [{"x":283,"y":-10,"on":true},{"x":211,"y":-10,"on":false},{"x":106,"y":58,"on":false},{"x":48,"y":184,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":403,"on":false},{"x":171,"y":549,"on":false},{"x":286,"y":549,"on":true},{"x":392,"y":549,"on":false},{"x":522,"y":405,"on":false},{"x":522,"y":271,"on":true},{"x":522,"y":140,"on":false},{"x":398,"y":-10,"on":false}], + [{"x":285,"y":73,"on":true},{"x":356,"y":73,"on":false},{"x":421,"y":176,"on":false},{"x":421,"y":271,"on":true},{"x":421,"y":366,"on":false},{"x":355,"y":465,"on":false},{"x":284,"y":465,"on":true},{"x":213,"y":465,"on":false},{"x":149,"y":365,"on":false},{"x":149,"y":270,"on":true},{"x":149,"y":176,"on":false},{"x":214,"y":73,"on":false}], + [{"x":286,"y":210,"on":true},{"x":262,"y":210,"on":false},{"x":231,"y":240,"on":false},{"x":231,"y":271,"on":true},{"x":231,"y":302,"on":false},{"x":261,"y":331,"on":false},{"x":286,"y":331,"on":true},{"x":310,"y":331,"on":false},{"x":341,"y":303,"on":false},{"x":341,"y":271,"on":true},{"x":341,"y":240,"on":false},{"x":309,"y":210,"on":false}] + ] + }, + "uniA66A": { + "advanceWidth": 722, + "contours": [ + [{"x":362,"y":-10,"on":true},{"x":256,"y":-10,"on":false},{"x":121,"y":84,"on":false},{"x":56,"y":251,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":208,"y":725,"on":false},{"x":363,"y":725,"on":true},{"x":466,"y":725,"on":false},{"x":601,"y":632,"on":false},{"x":668,"y":467,"on":false},{"x":668,"y":358,"on":true},{"x":668,"y":249,"on":false},{"x":601,"y":83,"on":false},{"x":466,"y":-10,"on":false}], + [{"x":362,"y":81,"on":true},{"x":464,"y":81,"on":false},{"x":559,"y":225,"on":false},{"x":559,"y":358,"on":true},{"x":559,"y":490,"on":false},{"x":464,"y":634,"on":false},{"x":363,"y":634,"on":true},{"x":261,"y":634,"on":false},{"x":164,"y":490,"on":false},{"x":164,"y":358,"on":true},{"x":164,"y":226,"on":false},{"x":262,"y":81,"on":false}], + [{"x":274,"y":301,"on":true},{"x":250,"y":301,"on":false},{"x":222,"y":330,"on":false},{"x":222,"y":359,"on":true},{"x":222,"y":388,"on":false},{"x":250,"y":417,"on":false},{"x":274,"y":417,"on":true},{"x":297,"y":417,"on":false},{"x":326,"y":389,"on":false},{"x":326,"y":359,"on":true},{"x":326,"y":329,"on":false},{"x":297,"y":301,"on":false}], + [{"x":446,"y":301,"on":true},{"x":422,"y":301,"on":false},{"x":394,"y":330,"on":false},{"x":394,"y":359,"on":true},{"x":394,"y":417,"on":false},{"x":446,"y":417,"on":true},{"x":469,"y":417,"on":false},{"x":498,"y":389,"on":false},{"x":498,"y":359,"on":true},{"x":498,"y":329,"on":false},{"x":469,"y":301,"on":false}] + ] + }, + "uniA66B": { + "advanceWidth": 618, + "contours": [ + [{"x":571,"y":271,"on":true},{"x":571,"y":144,"on":false},{"x":438,"y":-10,"on":false},{"x":307,"y":-10,"on":true},{"x":226,"y":-10,"on":false},{"x":110,"y":59,"on":false},{"x":47,"y":186,"on":false},{"x":47,"y":271,"on":true},{"x":47,"y":401,"on":false},{"x":181,"y":550,"on":false},{"x":310,"y":550,"on":true},{"x":430,"y":550,"on":false},{"x":571,"y":403,"on":false}], + [{"x":146,"y":270,"on":true},{"x":146,"y":178,"on":false},{"x":224,"y":76,"on":false},{"x":309,"y":76,"on":true},{"x":394,"y":76,"on":false},{"x":472,"y":177,"on":false},{"x":472,"y":271,"on":true},{"x":472,"y":364,"on":false},{"x":394,"y":464,"on":false},{"x":309,"y":464,"on":true},{"x":225,"y":464,"on":false},{"x":146,"y":366,"on":false}], + [{"x":186,"y":278,"on":true},{"x":186,"y":332,"on":false},{"x":234,"y":332,"on":true},{"x":256,"y":332,"on":false},{"x":282,"y":306,"on":false},{"x":282,"y":278,"on":true},{"x":282,"y":251,"on":false},{"x":256,"y":224,"on":false},{"x":234,"y":224,"on":true},{"x":186,"y":224,"on":false}], + [{"x":335,"y":278,"on":true},{"x":335,"y":306,"on":false},{"x":361,"y":332,"on":false},{"x":383,"y":332,"on":true},{"x":405,"y":332,"on":false},{"x":432,"y":306,"on":false},{"x":432,"y":278,"on":true},{"x":432,"y":251,"on":false},{"x":405,"y":224,"on":false},{"x":383,"y":224,"on":true},{"x":361,"y":224,"on":false},{"x":335,"y":251,"on":false}] + ] + }, + "uniA66C": { + "advanceWidth": 1184, + "references": [ + {"glyph":"uniA668","x":482,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uniA668","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA66D": { + "advanceWidth": 943, + "references": [ + {"glyph":"uniA669","x":374,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uniA669","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA66E": { + "advanceWidth": 779, + "references": [ + {"glyph":"uniA668","x":450,"y":137,"a":0.44671630859375,"b":0,"c":0,"d":0.44671630859375,"roundToGrid":true}, + {"glyph":"uniA668","x":16,"y":137,"a":0.44671630859375,"b":0,"c":0,"d":0.44671630859375,"roundToGrid":true}, + {"glyph":"uniA668","x":341,"y":400,"a":0.44671630859375,"b":0,"c":0,"d":0.44671630859375,"roundToGrid":true}, + {"glyph":"uniA668","x":232,"y":137,"a":0.44671630859375,"b":0,"c":0,"d":0.44671630859375,"roundToGrid":true}, + {"glyph":"uniA668","x":125,"y":401,"a":0.44671630859375,"b":0,"c":0,"d":0.44671630859375,"roundToGrid":true}, + {"glyph":"uniA668","x":341,"y":-127,"a":0.44671630859375,"b":0,"c":0,"d":0.44671630859375,"roundToGrid":true}, + {"glyph":"uniA668","x":125,"y":-127,"a":0.44671630859375,"b":0,"c":0,"d":0.44671630859375,"roundToGrid":true} + ] + }, + "uniA66F": { + "advanceWidth": 0, + "contours": [ + [{"x":-150,"y":618,"on":true},{"x":-151,"y":573,"on":false},{"x":-193,"y":573,"on":true},{"x":-216,"y":573,"on":false},{"x":-238,"y":601,"on":false},{"x":-238,"y":624,"on":true},{"x":-238,"y":681,"on":false},{"x":-191,"y":681,"on":true},{"x":190,"y":681,"on":true},{"x":216,"y":681,"on":false},{"x":238,"y":650,"on":false},{"x":238,"y":624,"on":true},{"x":238,"y":573,"on":false},{"x":193,"y":573,"on":true},{"x":174,"y":573,"on":false},{"x":150,"y":596,"on":false},{"x":149,"y":618,"on":true}] + ] + }, + "uniA670": { + "advanceWidth": 0, + "references": [ + {"glyph":"X","x":-386,"y":-187,"a":0.2960205078125,"b":0,"c":0,"d":0.2960205078125,"roundToGrid":true}, + {"glyph":"X","x":220,"y":-187,"a":0.2960205078125,"b":0,"c":0,"d":0.2960205078125,"roundToGrid":true}, + {"glyph":"X","x":-529,"y":175,"a":0.2960205078125,"b":0,"c":0,"d":0.2960205078125,"roundToGrid":true}, + {"glyph":"X","x":-77,"y":-297,"a":0.2960205078125,"b":0,"c":0,"d":0.2960205078125,"roundToGrid":true}, + {"glyph":"X","x":368,"y":175,"a":0.2960205078125,"b":0,"c":0,"d":0.2960205078125,"roundToGrid":true}, + {"glyph":"X","x":-386,"y":527,"a":0.2960205078125,"b":0,"c":0,"d":0.2960205078125,"roundToGrid":true}, + {"glyph":"X","x":220,"y":527,"a":0.2960205078125,"b":0,"c":0,"d":0.2960205078125,"roundToGrid":true}, + {"glyph":"X","x":-77,"y":625,"a":0.2960205078125,"b":0,"c":0,"d":0.2960205078125,"roundToGrid":true} + ] + }, + "uniA671": { + "advanceWidth": 0, + "references": [ + {"glyph":"bracketleft","x":278,"y":-369,"a":0,"b":1,"c":-1,"d":0,"roundToGrid":true}, + {"glyph":"bracketleft","x":278,"y":892,"a":0,"b":-1,"c":-1,"d":0,"roundToGrid":true} + ] + }, + "uniA672": { + "advanceWidth": 0, + "contours": [ + [{"x":25,"y":769,"on":true},{"x":144,"y":769,"on":true},{"x":144,"y":715,"on":true},{"x":25,"y":715,"on":true},{"x":25,"y":583,"on":true},{"x":-29,"y":583,"on":true},{"x":-29,"y":715,"on":true},{"x":-149,"y":715,"on":true},{"x":-149,"y":769,"on":true},{"x":-29,"y":769,"on":true},{"x":-29,"y":903,"on":true},{"x":25,"y":903,"on":true}], + [{"x":-594,"y":428,"on":true},{"x":-594,"y":482,"on":true},{"x":-301,"y":482,"on":true},{"x":-301,"y":428,"on":true}], + [{"x":300,"y":428,"on":true},{"x":300,"y":482,"on":true},{"x":594,"y":482,"on":true},{"x":594,"y":428,"on":true}], + [{"x":-594,"y":243,"on":true},{"x":-594,"y":297,"on":true},{"x":-301,"y":297,"on":true},{"x":-301,"y":243,"on":true}], + [{"x":300,"y":243,"on":true},{"x":300,"y":297,"on":true},{"x":594,"y":297,"on":true},{"x":594,"y":243,"on":true}], + [{"x":-594,"y":58,"on":true},{"x":-594,"y":112,"on":true},{"x":-301,"y":112,"on":true},{"x":-301,"y":58,"on":true}], + [{"x":300,"y":58,"on":true},{"x":300,"y":112,"on":true},{"x":594,"y":112,"on":true},{"x":594,"y":58,"on":true}], + [{"x":155,"y":-60,"on":true},{"x":209,"y":-60,"on":true},{"x":209,"y":-354,"on":true},{"x":155,"y":-354,"on":true}], + [{"x":-214,"y":-60,"on":true},{"x":-160,"y":-60,"on":true},{"x":-160,"y":-354,"on":true},{"x":-214,"y":-354,"on":true}], + [{"x":-30,"y":-60,"on":true},{"x":24,"y":-60,"on":true},{"x":24,"y":-354,"on":true},{"x":-30,"y":-354,"on":true}] + ] + }, + "uniA673": { + "advanceWidth": 547, + "contours": [ + [{"x":274,"y":285,"on":true},{"x":206,"y":402,"on":true},{"x":67,"y":402,"on":true},{"x":136,"y":522,"on":true},{"x":67,"y":643,"on":true},{"x":206,"y":643,"on":true},{"x":274,"y":760,"on":true},{"x":341,"y":643,"on":true},{"x":480,"y":643,"on":true},{"x":410,"y":522,"on":true},{"x":480,"y":402,"on":true},{"x":341,"y":402,"on":true}], + [{"x":274,"y":359,"on":true},{"x":319,"y":437,"on":true},{"x":416,"y":437,"on":true},{"x":367,"y":522,"on":true},{"x":416,"y":608,"on":true},{"x":319,"y":608,"on":true},{"x":274,"y":686,"on":true},{"x":229,"y":608,"on":true},{"x":130,"y":608,"on":true},{"x":179,"y":522,"on":true},{"x":130,"y":437,"on":true},{"x":229,"y":437,"on":true}] + ] + }, + "uniA674": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0454","x":-93,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uniA675": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0438","x":-126,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uniA676": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0457","x":-47,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uniA677": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0443","x":-98,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uniA678": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni044A","x":-130,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uniA679": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni044B","x":-155,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uniA67A": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni044C","x":-110,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uniA67B": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0461","x":-161,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uniA67C": { + "advanceWidth": 0, + "contours": [ + [{"x":169,"y":773,"on":true},{"x":165,"y":721,"on":false},{"x":85,"y":658,"on":false},{"x":-2,"y":658,"on":true},{"x":-89,"y":658,"on":false},{"x":-166,"y":719,"on":false},{"x":-169,"y":773,"on":true},{"x":-94,"y":773,"on":true},{"x":-91,"y":741,"on":false},{"x":-50,"y":708,"on":false},{"x":-1,"y":708,"on":true},{"x":46,"y":708,"on":false},{"x":89,"y":742,"on":false},{"x":93,"y":773,"on":true}] + ] + }, + "uniA67D": { + "advanceWidth": 0, + "contours": [ + [{"x":117,"y":807,"on":true},{"x":65,"y":619,"on":true},{"x":-6,"y":619,"on":true},{"x":12,"y":683,"on":true},{"x":2,"y":681,"on":false},{"x":-23,"y":677,"on":false},{"x":-40,"y":677,"on":true},{"x":-78,"y":677,"on":false},{"x":-118,"y":719,"on":false},{"x":-118,"y":766,"on":true},{"x":-118,"y":807,"on":true},{"x":-46,"y":807,"on":true},{"x":-46,"y":769,"on":true},{"x":-46,"y":750,"on":false},{"x":-32,"y":734,"on":false},{"x":-19,"y":734,"on":true},{"x":6,"y":734,"on":false},{"x":28,"y":743,"on":true},{"x":46,"y":807,"on":true}] + ] + }, + "uniA67E": { + "advanceWidth": 578, + "references": [ + {"glyph":"uniA67C","x":289,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA67F": { + "advanceWidth": 578, + "references": [ + {"glyph":"uniA67D","x":289,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA680": { + "advanceWidth": 649, + "contours": [ + [{"x":546,"y":714,"on":true},{"x":546,"y":92,"on":true},{"x":629,"y":92,"on":true},{"x":629,"y":-196,"on":true},{"x":528,"y":-196,"on":true},{"x":528,"y":0,"on":true},{"x":106,"y":0,"on":true},{"x":106,"y":-196,"on":true},{"x":5,"y":-196,"on":true},{"x":5,"y":92,"on":true},{"x":56,"y":92,"on":true},{"x":117,"y":221,"on":false},{"x":200,"y":530,"on":false},{"x":211,"y":697,"on":true},{"x":211,"y":920,"on":true},{"x":308,"y":920,"on":true},{"x":308,"y":714,"on":true}], + [{"x":442,"y":622,"on":true},{"x":304,"y":622,"on":true},{"x":298,"y":538,"on":false},{"x":260,"y":350,"on":false},{"x":202,"y":168,"on":false},{"x":167,"y":92,"on":true},{"x":442,"y":92,"on":true}] + ] + }, + "uniA681": { + "advanceWidth": 556, + "contours": [ + [{"x":467,"y":539,"on":true},{"x":467,"y":84,"on":true},{"x":538,"y":84,"on":true},{"x":538,"y":-189,"on":true},{"x":441,"y":-189,"on":true},{"x":441,"y":0,"on":true},{"x":111,"y":0,"on":true},{"x":111,"y":-189,"on":true},{"x":14,"y":-189,"on":true},{"x":14,"y":84,"on":true},{"x":58,"y":84,"on":true},{"x":114,"y":176,"on":false},{"x":170,"y":417,"on":false},{"x":174,"y":539,"on":true},{"x":174,"y":739,"on":true},{"x":266,"y":739,"on":true},{"x":266,"y":539,"on":true}], + [{"x":366,"y":458,"on":true},{"x":262,"y":458,"on":true},{"x":255,"y":362,"on":false},{"x":206,"y":163,"on":false},{"x":163,"y":84,"on":true},{"x":366,"y":84,"on":true}] + ] + }, + "uniA682": { + "advanceWidth": 501, + "contours": [ + [{"x":221,"y":-240,"on":true},{"x":166,"y":-240,"on":false},{"x":79,"y":-218,"on":false},{"x":45,"y":-199,"on":true},{"x":45,"y":-96,"on":true},{"x":81,"y":-119,"on":false},{"x":167,"y":-148,"on":false},{"x":214,"y":-148,"on":true},{"x":279,"y":-148,"on":false},{"x":355,"y":-71,"on":false},{"x":355,"y":2,"on":true},{"x":355,"y":48,"on":false},{"x":318,"y":119,"on":false},{"x":254,"y":180,"on":false},{"x":214,"y":212,"on":true},{"x":172,"y":247,"on":false},{"x":98,"y":320,"on":false},{"x":52,"y":418,"on":false},{"x":51,"y":490,"on":true},{"x":51,"y":563,"on":false},{"x":109,"y":668,"on":false},{"x":210,"y":724,"on":false},{"x":274,"y":724,"on":true},{"x":331,"y":724,"on":false},{"x":416,"y":697,"on":false},{"x":453,"y":676,"on":true},{"x":420,"y":590,"on":true},{"x":385,"y":610,"on":false},{"x":318,"y":633,"on":false},{"x":281,"y":633,"on":true},{"x":223,"y":633,"on":false},{"x":157,"y":560,"on":false},{"x":157,"y":493,"on":true},{"x":157,"y":445,"on":false},{"x":192,"y":377,"on":false},{"x":254,"y":319,"on":false},{"x":293,"y":287,"on":true},{"x":338,"y":250,"on":false},{"x":415,"y":172,"on":false},{"x":461,"y":76,"on":false},{"x":461,"y":13,"on":true},{"x":461,"y":-112,"on":false},{"x":328,"y":-240,"on":false}] + ] + }, + "uniA683": { + "advanceWidth": 438, + "contours": [ + [{"x":401,"y":-27,"on":true},{"x":401,"y":-126,"on":false},{"x":296,"y":-240,"on":false},{"x":198,"y":-240,"on":true},{"x":147,"y":-240,"on":false},{"x":70,"y":-221,"on":false},{"x":39,"y":-204,"on":true},{"x":39,"y":-115,"on":true},{"x":74,"y":-134,"on":false},{"x":152,"y":-157,"on":false},{"x":190,"y":-157,"on":true},{"x":242,"y":-157,"on":false},{"x":300,"y":-98,"on":false},{"x":300,"y":-43,"on":true},{"x":300,"y":12,"on":false},{"x":242,"y":87,"on":false},{"x":184,"y":131,"on":true},{"x":143,"y":162,"on":false},{"x":80,"y":222,"on":false},{"x":44,"y":299,"on":false},{"x":44,"y":356,"on":true},{"x":44,"y":450,"on":false},{"x":152,"y":550,"on":false},{"x":238,"y":550,"on":true},{"x":284,"y":550,"on":false},{"x":360,"y":528,"on":false},{"x":398,"y":505,"on":true},{"x":367,"y":429,"on":true},{"x":340,"y":447,"on":false},{"x":278,"y":468,"on":false},{"x":245,"y":468,"on":true},{"x":197,"y":468,"on":false},{"x":145,"y":410,"on":false},{"x":145,"y":363,"on":true},{"x":145,"y":328,"on":false},{"x":167,"y":280,"on":false},{"x":216,"y":233,"on":false},{"x":257,"y":202,"on":true},{"x":298,"y":170,"on":false},{"x":363,"y":108,"on":false},{"x":401,"y":30,"on":false}] + ] + }, + "uniA684": { + "advanceWidth": 1095, + "contours": [ + [{"x":480,"y":548,"on":true},{"x":480,"y":504,"on":false},{"x":446,"y":436,"on":false},{"x":416,"y":413,"on":true},{"x":613,"y":413,"on":true},{"x":613,"y":714,"on":true},{"x":718,"y":714,"on":true},{"x":718,"y":370,"on":true},{"x":973,"y":714,"on":true},{"x":1088,"y":714,"on":true},{"x":831,"y":369,"on":true},{"x":1100,"y":0,"on":true},{"x":978,"y":0,"on":true},{"x":718,"y":364,"on":true},{"x":718,"y":0,"on":true},{"x":613,"y":0,"on":true},{"x":613,"y":329,"on":true},{"x":439,"y":329,"on":true},{"x":496,"y":284,"on":false},{"x":496,"y":200,"on":true},{"x":496,"y":106,"on":false},{"x":364,"y":-10,"on":false},{"x":232,"y":-10,"on":true},{"x":176,"y":-10,"on":false},{"x":77,"y":7,"on":false},{"x":37,"y":26,"on":true},{"x":37,"y":122,"on":true},{"x":76,"y":101,"on":false},{"x":178,"y":78,"on":false},{"x":222,"y":78,"on":true},{"x":307,"y":78,"on":false},{"x":388,"y":142,"on":false},{"x":388,"y":204,"on":true},{"x":388,"y":268,"on":false},{"x":288,"y":326,"on":false},{"x":196,"y":326,"on":true},{"x":118,"y":326,"on":true},{"x":118,"y":414,"on":true},{"x":192,"y":414,"on":true},{"x":287,"y":414,"on":false},{"x":374,"y":476,"on":false},{"x":374,"y":534,"on":true},{"x":374,"y":584,"on":false},{"x":308,"y":636,"on":false},{"x":251,"y":636,"on":true},{"x":198,"y":636,"on":false},{"x":121,"y":606,"on":false},{"x":87,"y":581,"on":true},{"x":39,"y":653,"on":true},{"x":82,"y":686,"on":false},{"x":190,"y":724,"on":false},{"x":262,"y":724,"on":true},{"x":366,"y":724,"on":false},{"x":480,"y":626,"on":false}] + ] + }, + "uniA685": { + "advanceWidth": 942, + "contours": [ + [{"x":212,"y":549,"on":true},{"x":294,"y":549,"on":false},{"x":399,"y":476,"on":false},{"x":399,"y":408,"on":true},{"x":399,"y":354,"on":false},{"x":363,"y":320,"on":true},{"x":514,"y":320,"on":true},{"x":514,"y":539,"on":true},{"x":617,"y":539,"on":true},{"x":617,"y":279,"on":true},{"x":810,"y":539,"on":true},{"x":922,"y":539,"on":true},{"x":723,"y":281,"on":true},{"x":938,"y":0,"on":true},{"x":822,"y":0,"on":true},{"x":617,"y":275,"on":true},{"x":617,"y":0,"on":true},{"x":514,"y":0,"on":true},{"x":514,"y":247,"on":true},{"x":378,"y":247,"on":true},{"x":395,"y":231,"on":false},{"x":416,"y":184,"on":false},{"x":416,"y":152,"on":true},{"x":416,"y":83,"on":false},{"x":309,"y":-10,"on":false},{"x":202,"y":-10,"on":true},{"x":94,"y":-10,"on":false},{"x":32,"y":25,"on":true},{"x":32,"y":116,"on":true},{"x":63,"y":99,"on":false},{"x":145,"y":74,"on":false},{"x":193,"y":74,"on":true},{"x":246,"y":74,"on":false},{"x":315,"y":113,"on":false},{"x":315,"y":158,"on":true},{"x":315,"y":242,"on":false},{"x":183,"y":242,"on":true},{"x":127,"y":242,"on":true},{"x":127,"y":321,"on":true},{"x":175,"y":321,"on":true},{"x":234,"y":321,"on":false},{"x":302,"y":357,"on":false},{"x":302,"y":398,"on":true},{"x":302,"y":467,"on":false},{"x":202,"y":467,"on":true},{"x":168,"y":467,"on":false},{"x":105,"y":451,"on":false},{"x":71,"y":435,"on":true},{"x":36,"y":512,"on":true},{"x":116,"y":549,"on":false}] + ] + }, + "uniA686": { + "advanceWidth": 965, + "contours": [ + [{"x":880,"y":0,"on":true},{"x":775,"y":0,"on":true},{"x":775,"y":289,"on":true},{"x":676,"y":244,"on":false},{"x":592,"y":244,"on":true},{"x":507,"y":244,"on":false},{"x":461,"y":297,"on":true},{"x":403,"y":272,"on":false},{"x":290,"y":244,"on":false},{"x":241,"y":244,"on":true},{"x":156,"y":244,"on":false},{"x":64,"y":337,"on":false},{"x":64,"y":428,"on":true},{"x":64,"y":714,"on":true},{"x":169,"y":714,"on":true},{"x":169,"y":450,"on":true},{"x":169,"y":392,"on":false},{"x":217,"y":335,"on":false},{"x":272,"y":335,"on":true},{"x":311,"y":335,"on":false},{"x":382,"y":351,"on":false},{"x":425,"y":369,"on":true},{"x":419,"y":396,"on":false},{"x":419,"y":428,"on":true},{"x":419,"y":714,"on":true},{"x":524,"y":714,"on":true},{"x":524,"y":450,"on":true},{"x":524,"y":392,"on":false},{"x":571,"y":335,"on":false},{"x":622,"y":335,"on":true},{"x":662,"y":335,"on":false},{"x":732,"y":354,"on":false},{"x":775,"y":373,"on":true},{"x":775,"y":714,"on":true},{"x":880,"y":714,"on":true}] + ] + }, + "uniA687": { + "advanceWidth": 862, + "contours": [ + [{"x":475,"y":540,"on":true},{"x":475,"y":342,"on":true},{"x":475,"y":296,"on":false},{"x":513,"y":254,"on":false},{"x":550,"y":254,"on":true},{"x":586,"y":254,"on":false},{"x":652,"y":281,"on":false},{"x":685,"y":305,"on":true},{"x":685,"y":540,"on":true},{"x":787,"y":540,"on":true},{"x":787,"y":0,"on":true},{"x":685,"y":0,"on":true},{"x":685,"y":229,"on":true},{"x":650,"y":203,"on":false},{"x":571,"y":173,"on":false},{"x":525,"y":173,"on":true},{"x":433,"y":173,"on":false},{"x":396,"y":237,"on":true},{"x":357,"y":209,"on":false},{"x":264,"y":173,"on":false},{"x":214,"y":173,"on":true},{"x":140,"y":173,"on":false},{"x":62,"y":257,"on":false},{"x":62,"y":340,"on":true},{"x":62,"y":540,"on":true},{"x":164,"y":540,"on":true},{"x":164,"y":342,"on":true},{"x":164,"y":296,"on":false},{"x":202,"y":254,"on":false},{"x":239,"y":254,"on":true},{"x":276,"y":254,"on":false},{"x":342,"y":279,"on":false},{"x":375,"y":301,"on":true},{"x":373,"y":319,"on":false},{"x":373,"y":340,"on":true},{"x":373,"y":540,"on":true}] + ] + }, + "uniA688": { + "advanceWidth": 813, + "contours": [ + [{"x":709,"y":103,"on":true},{"x":758,"y":103,"on":false},{"x":824,"y":64,"on":false},{"x":824,"y":26,"on":true},{"x":824,"y":-27,"on":false},{"x":767,"y":-41,"on":true},{"x":767,"y":-43,"on":true},{"x":833,"y":-57,"on":false},{"x":833,"y":-113,"on":true},{"x":833,"y":-153,"on":false},{"x":765,"y":-203,"on":false},{"x":695,"y":-203,"on":true},{"x":663,"y":-203,"on":false},{"x":611,"y":-193,"on":false},{"x":589,"y":-183,"on":true},{"x":589,"y":-121,"on":true},{"x":610,"y":-132,"on":false},{"x":660,"y":-145,"on":false},{"x":688,"y":-145,"on":true},{"x":722,"y":-145,"on":false},{"x":759,"y":-124,"on":false},{"x":759,"y":-107,"on":true},{"x":759,"y":-88,"on":false},{"x":724,"y":-69,"on":false},{"x":683,"y":-69,"on":true},{"x":649,"y":-69,"on":true},{"x":649,"y":-18,"on":true},{"x":682,"y":-18,"on":true},{"x":755,"y":-18,"on":false},{"x":755,"y":16,"on":true},{"x":755,"y":30,"on":false},{"x":728,"y":47,"on":false},{"x":700,"y":47,"on":true},{"x":664,"y":47,"on":false},{"x":630,"y":31,"on":true},{"x":630,"y":0,"on":true},{"x":107,"y":0,"on":true},{"x":107,"y":-197,"on":true},{"x":5,"y":-197,"on":true},{"x":5,"y":91,"on":true},{"x":56,"y":91,"on":true},{"x":116,"y":222,"on":false},{"x":197,"y":537,"on":false},{"x":209,"y":714,"on":true},{"x":551,"y":714,"on":true},{"x":551,"y":91,"on":true},{"x":627,"y":91,"on":true},{"x":663,"y":103,"on":false}], + [{"x":446,"y":624,"on":true},{"x":298,"y":624,"on":true},{"x":291,"y":536,"on":false},{"x":255,"y":349,"on":false},{"x":201,"y":168,"on":false},{"x":167,"y":91,"on":true},{"x":446,"y":91,"on":true}] + ] + }, + "uniA689": { + "advanceWidth": 701, + "contours": [ + [{"x":606,"y":95,"on":true},{"x":653,"y":95,"on":false},{"x":718,"y":56,"on":false},{"x":718,"y":19,"on":true},{"x":718,"y":-6,"on":false},{"x":688,"y":-38,"on":false},{"x":662,"y":-45,"on":true},{"x":662,"y":-48,"on":true},{"x":693,"y":-54,"on":false},{"x":727,"y":-87,"on":false},{"x":727,"y":-114,"on":true},{"x":727,"y":-153,"on":false},{"x":660,"y":-202,"on":false},{"x":593,"y":-202,"on":true},{"x":532,"y":-202,"on":false},{"x":490,"y":-182,"on":true},{"x":490,"y":-122,"on":true},{"x":510,"y":-132,"on":false},{"x":558,"y":-146,"on":false},{"x":585,"y":-146,"on":true},{"x":618,"y":-146,"on":false},{"x":654,"y":-126,"on":false},{"x":654,"y":-109,"on":true},{"x":654,"y":-91,"on":false},{"x":620,"y":-73,"on":false},{"x":583,"y":-73,"on":true},{"x":550,"y":-73,"on":true},{"x":550,"y":-23,"on":true},{"x":582,"y":-23,"on":true},{"x":650,"y":-23,"on":false},{"x":650,"y":10,"on":true},{"x":650,"y":23,"on":false},{"x":624,"y":40,"on":false},{"x":598,"y":40,"on":true},{"x":571,"y":40,"on":false},{"x":543,"y":30,"on":true},{"x":543,"y":0,"on":true},{"x":109,"y":0,"on":true},{"x":109,"y":-189,"on":true},{"x":14,"y":-189,"on":true},{"x":14,"y":82,"on":true},{"x":56,"y":82,"on":true},{"x":108,"y":172,"on":false},{"x":164,"y":411,"on":false},{"x":169,"y":540,"on":true},{"x":473,"y":540,"on":true},{"x":473,"y":82,"on":true},{"x":524,"y":82,"on":true},{"x":542,"y":88,"on":false},{"x":582,"y":95,"on":false}], + [{"x":372,"y":457,"on":true},{"x":256,"y":457,"on":true},{"x":249,"y":355,"on":false},{"x":205,"y":165,"on":false},{"x":163,"y":82,"on":true},{"x":372,"y":82,"on":true}] + ] + }, + "uniA68A": { + "advanceWidth": 674, + "contours": [ + [{"x":509,"y":257,"on":true},{"x":509,"y":310,"on":false},{"x":460,"y":354,"on":false},{"x":408,"y":354,"on":true},{"x":271,"y":354,"on":true},{"x":271,"y":0,"on":true},{"x":166,"y":0,"on":true},{"x":166,"y":623,"on":true},{"x":13,"y":623,"on":true},{"x":13,"y":714,"on":true},{"x":465,"y":714,"on":true},{"x":465,"y":623,"on":true},{"x":271,"y":623,"on":true},{"x":271,"y":444,"on":true},{"x":417,"y":444,"on":true},{"x":614,"y":444,"on":false},{"x":614,"y":261,"on":true},{"x":614,"y":-58,"on":true},{"x":614,"y":-141,"on":false},{"x":536,"y":-240,"on":false},{"x":456,"y":-240,"on":true},{"x":414,"y":-240,"on":false},{"x":384,"y":-230,"on":true},{"x":384,"y":-142,"on":true},{"x":410,"y":-151,"on":false},{"x":438,"y":-151,"on":true},{"x":471,"y":-151,"on":false},{"x":509,"y":-106,"on":false},{"x":509,"y":-53,"on":true}] + ] + }, + "uniA68B": { + "advanceWidth": 670, + "contours": [ + [{"x":427,"y":540,"on":true},{"x":427,"y":458,"on":true},{"x":274,"y":458,"on":true},{"x":274,"y":292,"on":true},{"x":306,"y":316,"on":false},{"x":387,"y":347,"on":false},{"x":435,"y":347,"on":true},{"x":517,"y":347,"on":false},{"x":602,"y":260,"on":false},{"x":602,"y":171,"on":true},{"x":602,"y":-77,"on":true},{"x":602,"y":-151,"on":false},{"x":534,"y":-240,"on":false},{"x":461,"y":-240,"on":true},{"x":442,"y":-240,"on":false},{"x":404,"y":-234,"on":false},{"x":391,"y":-229,"on":true},{"x":391,"y":-144,"on":true},{"x":418,"y":-153,"on":false},{"x":443,"y":-153,"on":true},{"x":470,"y":-153,"on":false},{"x":500,"y":-115,"on":false},{"x":500,"y":-71,"on":true},{"x":500,"y":165,"on":true},{"x":500,"y":216,"on":false},{"x":456,"y":261,"on":false},{"x":415,"y":261,"on":true},{"x":374,"y":261,"on":false},{"x":304,"y":233,"on":false},{"x":274,"y":213,"on":true},{"x":274,"y":0,"on":true},{"x":172,"y":0,"on":true},{"x":172,"y":458,"on":true},{"x":18,"y":458,"on":true},{"x":18,"y":540,"on":true}] + ] + }, + "uniA68C": { + "advanceWidth": 497, + "contours": [ + [{"x":193,"y":191,"on":true},{"x":193,"y":623,"on":true},{"x":13,"y":623,"on":true},{"x":13,"y":714,"on":true},{"x":484,"y":714,"on":true},{"x":484,"y":623,"on":true},{"x":298,"y":623,"on":true},{"x":298,"y":194,"on":true},{"x":298,"y":131,"on":false},{"x":340,"y":81,"on":false},{"x":377,"y":81,"on":true},{"x":393,"y":81,"on":false},{"x":420,"y":86,"on":false},{"x":434,"y":90,"on":true},{"x":434,"y":1,"on":true},{"x":420,"y":-4,"on":false},{"x":385,"y":-10,"on":false},{"x":361,"y":-10,"on":true},{"x":283,"y":-10,"on":false},{"x":193,"y":88,"on":false}] + ] + }, + "uniA68D": { + "advanceWidth": 444, + "contours": [ + [{"x":169,"y":151,"on":true},{"x":169,"y":458,"on":true},{"x":18,"y":458,"on":true},{"x":18,"y":540,"on":true},{"x":427,"y":540,"on":true},{"x":427,"y":458,"on":true},{"x":271,"y":458,"on":true},{"x":271,"y":164,"on":true},{"x":271,"y":118,"on":false},{"x":306,"y":76,"on":false},{"x":342,"y":76,"on":true},{"x":370,"y":76,"on":false},{"x":399,"y":85,"on":true},{"x":399,"y":1,"on":true},{"x":386,"y":-4,"on":false},{"x":341,"y":-10,"on":false},{"x":321,"y":-10,"on":true},{"x":242,"y":-10,"on":false},{"x":169,"y":75,"on":false}] + ] + }, + "uniA68E": { + "advanceWidth": 672, + "contours": [ + [{"x":183,"y":-221,"on":true},{"x":132,"y":-221,"on":false},{"x":82,"y":-176,"on":false},{"x":82,"y":-136,"on":true},{"x":82,"y":-98,"on":false},{"x":130,"y":-51,"on":false},{"x":177,"y":-51,"on":true},{"x":448,"y":-51,"on":true},{"x":448,"y":-107,"on":true},{"x":195,"y":-107,"on":true},{"x":176,"y":-107,"on":false},{"x":159,"y":-123,"on":false},{"x":159,"y":-136,"on":true},{"x":159,"y":-162,"on":false},{"x":198,"y":-162,"on":true},{"x":445,"y":-162,"on":true},{"x":497,"y":-162,"on":false},{"x":564,"y":-124,"on":false},{"x":564,"y":-80,"on":true},{"x":564,"y":-46,"on":false},{"x":517,"y":0,"on":false},{"x":462,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":91,"on":true},{"x":473,"y":91,"on":true},{"x":473,"y":714,"on":true},{"x":578,"y":714,"on":true},{"x":578,"y":66,"on":true},{"x":618,"y":48,"on":false},{"x":659,"y":-18,"on":false},{"x":659,"y":-61,"on":true},{"x":659,"y":-105,"on":false},{"x":623,"y":-177,"on":false},{"x":538,"y":-220,"on":false},{"x":464,"y":-221,"on":true}] + ] + }, + "uniA68F": { + "advanceWidth": 587, + "contours": [ + [{"x":177,"y":-221,"on":true},{"x":126,"y":-221,"on":false},{"x":77,"y":-175,"on":false},{"x":77,"y":-136,"on":true},{"x":77,"y":-98,"on":false},{"x":124,"y":-51,"on":false},{"x":171,"y":-51,"on":true},{"x":376,"y":-51,"on":true},{"x":376,"y":-106,"on":true},{"x":190,"y":-106,"on":true},{"x":170,"y":-106,"on":false},{"x":153,"y":-123,"on":false},{"x":153,"y":-136,"on":true},{"x":153,"y":-148,"on":false},{"x":171,"y":-163,"on":false},{"x":192,"y":-163,"on":true},{"x":359,"y":-163,"on":true},{"x":477,"y":-163,"on":false},{"x":477,"y":-78,"on":true},{"x":477,"y":-43,"on":false},{"x":433,"y":0,"on":false},{"x":376,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true},{"x":177,"y":540,"on":true},{"x":177,"y":83,"on":true},{"x":404,"y":83,"on":true},{"x":404,"y":540,"on":true},{"x":507,"y":540,"on":true},{"x":507,"y":53,"on":true},{"x":569,"y":17,"on":false},{"x":569,"y":-63,"on":true},{"x":569,"y":-107,"on":false},{"x":534,"y":-178,"on":false},{"x":451,"y":-220,"on":false},{"x":378,"y":-221,"on":true}] + ] + }, + "uniA690": { + "advanceWidth": 497, + "contours": [ + [{"x":194,"y":-198,"on":true},{"x":144,"y":-198,"on":false},{"x":80,"y":-141,"on":false},{"x":80,"y":-87,"on":true},{"x":80,"y":-33,"on":false},{"x":146,"y":36,"on":false},{"x":196,"y":44,"on":true},{"x":196,"y":623,"on":true},{"x":13,"y":623,"on":true},{"x":13,"y":714,"on":true},{"x":484,"y":714,"on":true},{"x":484,"y":623,"on":true},{"x":301,"y":623,"on":true},{"x":301,"y":0,"on":true},{"x":248,"y":0,"on":true},{"x":202,"y":0,"on":false},{"x":159,"y":-45,"on":false},{"x":159,"y":-74,"on":true},{"x":159,"y":-128,"on":false},{"x":212,"y":-128,"on":true},{"x":239,"y":-128,"on":false},{"x":261,"y":-119,"on":true},{"x":261,"y":-188,"on":true},{"x":248,"y":-192,"on":false},{"x":214,"y":-198,"on":false}] + ] + }, + "uniA691": { + "advanceWidth": 444, + "contours": [ + [{"x":175,"y":-198,"on":true},{"x":129,"y":-198,"on":false},{"x":66,"y":-141,"on":false},{"x":66,"y":-87,"on":true},{"x":66,"y":-35,"on":false},{"x":126,"y":32,"on":false},{"x":172,"y":42,"on":true},{"x":172,"y":458,"on":true},{"x":18,"y":458,"on":true},{"x":18,"y":540,"on":true},{"x":427,"y":540,"on":true},{"x":427,"y":458,"on":true},{"x":274,"y":458,"on":true},{"x":274,"y":0,"on":true},{"x":231,"y":0,"on":true},{"x":186,"y":0,"on":false},{"x":146,"y":-45,"on":false},{"x":146,"y":-74,"on":true},{"x":146,"y":-128,"on":false},{"x":195,"y":-128,"on":true},{"x":220,"y":-128,"on":false},{"x":242,"y":-119,"on":true},{"x":242,"y":-188,"on":true},{"x":229,"y":-192,"on":false},{"x":196,"y":-198,"on":false}] + ] + }, + "uniA692": { + "advanceWidth": 777, + "contours": [ + [{"x":13,"y":623,"on":true},{"x":13,"y":714,"on":true},{"x":473,"y":714,"on":true},{"x":473,"y":623,"on":true},{"x":295,"y":623,"on":true},{"x":295,"y":450,"on":true},{"x":295,"y":392,"on":false},{"x":348,"y":335,"on":false},{"x":407,"y":335,"on":true},{"x":451,"y":335,"on":false},{"x":534,"y":354,"on":false},{"x":587,"y":373,"on":true},{"x":587,"y":714,"on":true},{"x":692,"y":714,"on":true},{"x":692,"y":0,"on":true},{"x":587,"y":0,"on":true},{"x":587,"y":289,"on":true},{"x":528,"y":266,"on":false},{"x":426,"y":244,"on":false},{"x":379,"y":244,"on":true},{"x":288,"y":244,"on":false},{"x":191,"y":337,"on":false},{"x":191,"y":428,"on":true},{"x":191,"y":623,"on":true}] + ] + }, + "uniA693": { + "advanceWidth": 695, + "contours": [ + [{"x":419,"y":458,"on":true},{"x":269,"y":458,"on":true},{"x":269,"y":342,"on":true},{"x":269,"y":296,"on":false},{"x":312,"y":254,"on":false},{"x":353,"y":254,"on":true},{"x":397,"y":254,"on":false},{"x":476,"y":281,"on":false},{"x":517,"y":305,"on":true},{"x":517,"y":540,"on":true},{"x":619,"y":540,"on":true},{"x":619,"y":0,"on":true},{"x":517,"y":0,"on":true},{"x":517,"y":229,"on":true},{"x":476,"y":204,"on":false},{"x":384,"y":173,"on":false},{"x":330,"y":173,"on":true},{"x":251,"y":173,"on":false},{"x":167,"y":257,"on":false},{"x":167,"y":340,"on":true},{"x":167,"y":458,"on":true},{"x":18,"y":458,"on":true},{"x":18,"y":540,"on":true},{"x":419,"y":540,"on":true}] + ] + }, + "uniA694": { + "advanceWidth": 637, + "contours": [ + [{"x":86,"y":515,"on":true},{"x":86,"y":622,"on":false},{"x":179,"y":724,"on":false},{"x":261,"y":724,"on":true},{"x":284,"y":724,"on":false},{"x":319,"y":718,"on":false},{"x":332,"y":714,"on":true},{"x":332,"y":623,"on":true},{"x":319,"y":627,"on":false},{"x":290,"y":633,"on":false},{"x":274,"y":633,"on":true},{"x":236,"y":633,"on":false},{"x":191,"y":581,"on":false},{"x":191,"y":518,"on":true},{"x":191,"y":425,"on":true},{"x":300,"y":470,"on":false},{"x":388,"y":470,"on":true},{"x":477,"y":470,"on":false},{"x":574,"y":378,"on":false},{"x":574,"y":286,"on":true},{"x":574,"y":0,"on":true},{"x":468,"y":0,"on":true},{"x":468,"y":264,"on":true},{"x":468,"y":322,"on":false},{"x":416,"y":379,"on":false},{"x":360,"y":379,"on":true},{"x":316,"y":379,"on":false},{"x":240,"y":360,"on":false},{"x":191,"y":341,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true}] + ] + }, + "uniA695": { + "advanceWidth": 570, + "contours": [ + [{"x":75,"y":602,"on":true},{"x":75,"y":688,"on":false},{"x":152,"y":765,"on":false},{"x":222,"y":765,"on":true},{"x":248,"y":765,"on":false},{"x":294,"y":756,"on":false},{"x":309,"y":750,"on":true},{"x":295,"y":668,"on":true},{"x":267,"y":679,"on":false},{"x":235,"y":679,"on":true},{"x":205,"y":679,"on":false},{"x":178,"y":640,"on":false},{"x":178,"y":605,"on":true},{"x":178,"y":541,"on":true},{"x":178,"y":519,"on":false},{"x":174,"y":472,"on":false},{"x":172,"y":459,"on":true},{"x":178,"y":459,"on":true},{"x":201,"y":502,"on":false},{"x":278,"y":542,"on":false},{"x":329,"y":542,"on":true},{"x":411,"y":542,"on":false},{"x":498,"y":446,"on":false},{"x":498,"y":349,"on":true},{"x":498,"y":0,"on":true},{"x":396,"y":0,"on":true},{"x":396,"y":326,"on":true},{"x":396,"y":394,"on":false},{"x":351,"y":456,"on":false},{"x":304,"y":456,"on":true},{"x":234,"y":456,"on":false},{"x":178,"y":361,"on":false},{"x":178,"y":266,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true}] + ] + }, + "uniA696": { + "advanceWidth": 955, + "contours": [ + [{"x":299,"y":-221,"on":true},{"x":248,"y":-221,"on":false},{"x":197,"y":-176,"on":false},{"x":197,"y":-136,"on":true},{"x":197,"y":-98,"on":false},{"x":246,"y":-51,"on":false},{"x":292,"y":-51,"on":true},{"x":717,"y":-51,"on":true},{"x":717,"y":-107,"on":true},{"x":311,"y":-107,"on":true},{"x":292,"y":-107,"on":false},{"x":275,"y":-123,"on":false},{"x":275,"y":-136,"on":true},{"x":275,"y":-148,"on":false},{"x":292,"y":-162,"on":false},{"x":313,"y":-162,"on":true},{"x":727,"y":-162,"on":true},{"x":779,"y":-162,"on":false},{"x":846,"y":-124,"on":false},{"x":846,"y":-80,"on":true},{"x":846,"y":-46,"on":false},{"x":799,"y":0,"on":false},{"x":744,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":91,"on":true},{"x":421,"y":91,"on":true},{"x":421,"y":714,"on":true},{"x":526,"y":714,"on":true},{"x":526,"y":91,"on":true},{"x":756,"y":91,"on":true},{"x":756,"y":714,"on":true},{"x":861,"y":714,"on":true},{"x":861,"y":66,"on":true},{"x":901,"y":48,"on":false},{"x":941,"y":-18,"on":false},{"x":941,"y":-61,"on":true},{"x":941,"y":-105,"on":false},{"x":905,"y":-178,"on":false},{"x":820,"y":-221,"on":false},{"x":746,"y":-221,"on":true}] + ] + }, + "uniA697": { + "advanceWidth": 834, + "contours": [ + [{"x":261,"y":-221,"on":true},{"x":210,"y":-221,"on":false},{"x":162,"y":-175,"on":false},{"x":162,"y":-136,"on":true},{"x":162,"y":-98,"on":false},{"x":209,"y":-51,"on":false},{"x":256,"y":-51,"on":true},{"x":613,"y":-51,"on":true},{"x":613,"y":-106,"on":true},{"x":274,"y":-106,"on":true},{"x":254,"y":-106,"on":false},{"x":238,"y":-123,"on":false},{"x":238,"y":-136,"on":true},{"x":238,"y":-163,"on":false},{"x":276,"y":-163,"on":true},{"x":604,"y":-163,"on":true},{"x":721,"y":-163,"on":false},{"x":721,"y":-78,"on":true},{"x":721,"y":-43,"on":false},{"x":678,"y":0,"on":false},{"x":621,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true},{"x":177,"y":540,"on":true},{"x":177,"y":83,"on":true},{"x":363,"y":83,"on":true},{"x":363,"y":540,"on":true},{"x":465,"y":540,"on":true},{"x":465,"y":83,"on":true},{"x":651,"y":83,"on":true},{"x":651,"y":540,"on":true},{"x":753,"y":540,"on":true},{"x":753,"y":51,"on":true},{"x":814,"y":14,"on":false},{"x":814,"y":-63,"on":true},{"x":814,"y":-107,"on":false},{"x":779,"y":-179,"on":false},{"x":696,"y":-221,"on":false},{"x":622,"y":-221,"on":true}] + ] + }, + "uniA698": { + "advanceWidth": 1188, + "references": [ + {"glyph":"uniA74E","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA699": { + "advanceWidth": 909, + "references": [ + {"glyph":"uniA74F","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA69A": { + "advanceWidth": 707, + "contours": [ + [{"x":651,"y":358,"on":true},{"x":651,"y":249,"on":false},{"x":586,"y":83,"on":false},{"x":454,"y":-10,"on":false},{"x":354,"y":-10,"on":true},{"x":252,"y":-10,"on":false},{"x":120,"y":84,"on":false},{"x":56,"y":251,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":204,"y":725,"on":false},{"x":355,"y":725,"on":true},{"x":455,"y":725,"on":false},{"x":586,"y":632,"on":false},{"x":651,"y":467,"on":false}], + [{"x":540,"y":409,"on":true},{"x":533,"y":505,"on":false},{"x":461,"y":619,"on":false},{"x":392,"y":631,"on":true},{"x":392,"y":409,"on":true}], + [{"x":166,"y":409,"on":true},{"x":316,"y":409,"on":true},{"x":316,"y":631,"on":true},{"x":247,"y":618,"on":false},{"x":173,"y":504,"on":false}], + [{"x":166,"y":320,"on":true},{"x":171,"y":219,"on":false},{"x":245,"y":97,"on":false},{"x":316,"y":84,"on":true},{"x":316,"y":320,"on":true}], + [{"x":541,"y":320,"on":true},{"x":392,"y":320,"on":true},{"x":392,"y":84,"on":true},{"x":463,"y":97,"on":false},{"x":536,"y":218,"on":false}] + ] + }, + "uniA69B": { + "advanceWidth": 558, + "contours": [ + [{"x":280,"y":549,"on":true},{"x":350,"y":549,"on":false},{"x":454,"y":481,"on":false},{"x":510,"y":356,"on":false},{"x":510,"y":271,"on":true},{"x":510,"y":137,"on":false},{"x":386,"y":-10,"on":false},{"x":277,"y":-10,"on":true},{"x":209,"y":-10,"on":false},{"x":106,"y":56,"on":false},{"x":48,"y":182,"on":false},{"x":48,"y":271,"on":true},{"x":48,"y":405,"on":false},{"x":170,"y":549,"on":false}], + [{"x":248,"y":463,"on":true},{"x":153,"y":447,"on":false},{"x":144,"y":311,"on":true},{"x":248,"y":311,"on":true}], + [{"x":414,"y":311,"on":true},{"x":409,"y":376,"on":false},{"x":359,"y":452,"on":false},{"x":312,"y":462,"on":true},{"x":312,"y":311,"on":true}], + [{"x":144,"y":240,"on":true},{"x":147,"y":170,"on":false},{"x":198,"y":85,"on":false},{"x":248,"y":76,"on":true},{"x":248,"y":240,"on":true}], + [{"x":312,"y":76,"on":true},{"x":406,"y":95,"on":false},{"x":414,"y":240,"on":true},{"x":312,"y":240,"on":true}] + ] + }, + "uniA69C": { + "advanceWidth": 404, + "references": [ + {"glyph":"uni044A","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uniA69D": { + "advanceWidth": 348, + "references": [ + {"glyph":"uni044C","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uniA69E": { + "advanceWidth": 0, + "contours": [ + [{"x":33,"y":760,"on":true},{"x":33,"y":624,"on":true},{"x":112,"y":616,"on":false},{"x":195,"y":523,"on":false},{"x":195,"y":448,"on":true},{"x":195,"y":373,"on":false},{"x":113,"y":278,"on":false},{"x":33,"y":271,"on":true},{"x":33,"y":123,"on":true},{"x":-33,"y":123,"on":true},{"x":-33,"y":271,"on":true},{"x":-111,"y":278,"on":false},{"x":-196,"y":373,"on":false},{"x":-196,"y":448,"on":true},{"x":-196,"y":524,"on":false},{"x":-116,"y":617,"on":false},{"x":-33,"y":624,"on":true},{"x":-33,"y":760,"on":true}], + [{"x":-33,"y":567,"on":true},{"x":-74,"y":562,"on":false},{"x":-122,"y":499,"on":false},{"x":-122,"y":448,"on":true},{"x":-122,"y":397,"on":false},{"x":-75,"y":334,"on":false},{"x":-33,"y":329,"on":true}], + [{"x":33,"y":566,"on":true},{"x":33,"y":329,"on":true},{"x":74,"y":334,"on":false},{"x":121,"y":397,"on":false},{"x":121,"y":448,"on":true},{"x":121,"y":499,"on":false},{"x":74,"y":562,"on":false}] + ] + }, + "uniA69F": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni0465","x":-146,"y":620,"a":0.45001220703125,"b":0,"c":0,"d":0.4000244140625,"roundToGrid":true} + ] + }, + "uniA700": { + "advanceWidth": 340, + "contours": [ + [{"x":180,"y":-98,"on":true},{"x":112,"y":-98,"on":false},{"x":40,"y":-28,"on":false},{"x":40,"y":36,"on":true},{"x":40,"y":100,"on":false},{"x":112,"y":167,"on":false},{"x":180,"y":167,"on":true},{"x":300,"y":167,"on":true},{"x":300,"y":122,"on":true},{"x":180,"y":122,"on":true},{"x":87,"y":122,"on":false},{"x":87,"y":35,"on":true},{"x":87,"y":-53,"on":false},{"x":180,"y":-53,"on":true},{"x":300,"y":-53,"on":true},{"x":300,"y":-98,"on":true}] + ] + }, + "uniA701": { + "advanceWidth": 340, + "contours": [ + [{"x":180,"y":-98,"on":true},{"x":112,"y":-98,"on":false},{"x":40,"y":-28,"on":false},{"x":40,"y":36,"on":true},{"x":40,"y":100,"on":false},{"x":112,"y":167,"on":false},{"x":180,"y":167,"on":true},{"x":300,"y":167,"on":true},{"x":300,"y":122,"on":true},{"x":180,"y":122,"on":true},{"x":87,"y":122,"on":false},{"x":87,"y":35,"on":true},{"x":87,"y":-53,"on":false},{"x":180,"y":-53,"on":true},{"x":300,"y":-53,"on":true},{"x":300,"y":-98,"on":true}], + [{"x":50,"y":-220,"on":true},{"x":50,"y":-175,"on":true},{"x":300,"y":-175,"on":true},{"x":300,"y":-220,"on":true}] + ] + }, + "uniA702": { + "advanceWidth": 340, + "references": [ + {"glyph":"uniA700","x":0,"y":521,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA703": { + "advanceWidth": 340, + "references": [ + {"glyph":"uniA701","x":0,"y":521,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA704": { + "advanceWidth": 340, + "contours": [ + [{"x":40,"y":423,"on":true},{"x":40,"y":468,"on":true},{"x":160,"y":468,"on":true},{"x":208,"y":468,"on":false},{"x":253,"y":510,"on":false},{"x":253,"y":555,"on":true},{"x":253,"y":643,"on":false},{"x":160,"y":643,"on":true},{"x":40,"y":643,"on":true},{"x":40,"y":688,"on":true},{"x":160,"y":688,"on":true},{"x":229,"y":688,"on":false},{"x":300,"y":618,"on":false},{"x":300,"y":554,"on":true},{"x":300,"y":490,"on":false},{"x":228,"y":423,"on":false},{"x":160,"y":423,"on":true}] + ] + }, + "uniA705": { + "advanceWidth": 340, + "contours": [ + [{"x":40,"y":423,"on":true},{"x":40,"y":468,"on":true},{"x":160,"y":468,"on":true},{"x":208,"y":468,"on":false},{"x":253,"y":510,"on":false},{"x":253,"y":555,"on":true},{"x":253,"y":643,"on":false},{"x":160,"y":643,"on":true},{"x":40,"y":643,"on":true},{"x":40,"y":688,"on":true},{"x":160,"y":688,"on":true},{"x":229,"y":688,"on":false},{"x":300,"y":618,"on":false},{"x":300,"y":554,"on":true},{"x":300,"y":490,"on":false},{"x":228,"y":423,"on":false},{"x":160,"y":423,"on":true}], + [{"x":40,"y":301,"on":true},{"x":40,"y":346,"on":true},{"x":290,"y":346,"on":true},{"x":290,"y":301,"on":true}] + ] + }, + "uniA706": { + "advanceWidth": 340, + "references": [ + {"glyph":"uniA700","x":340,"y":69,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA707": { + "advanceWidth": 340, + "references": [ + {"glyph":"uniA705","x":0,"y":-521,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA708": { + "advanceWidth": 418, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":688,"on":true},{"x":340,"y":688,"on":true},{"x":340,"y":0,"on":true}], + [{"x":130,"y":575,"on":true},{"x":108,"y":575,"on":false},{"x":78,"y":602,"on":false},{"x":78,"y":631,"on":true},{"x":78,"y":660,"on":false},{"x":108,"y":687,"on":false},{"x":130,"y":687,"on":true},{"x":151,"y":687,"on":false},{"x":182,"y":660,"on":false},{"x":182,"y":631,"on":true},{"x":182,"y":602,"on":false},{"x":151,"y":575,"on":false}] + ] + }, + "uniA709": { + "advanceWidth": 418, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":688,"on":true},{"x":340,"y":688,"on":true},{"x":340,"y":0,"on":true}], + [{"x":130,"y":432,"on":true},{"x":108,"y":432,"on":false},{"x":78,"y":460,"on":false},{"x":78,"y":488,"on":true},{"x":78,"y":517,"on":false},{"x":108,"y":544,"on":false},{"x":130,"y":544,"on":true},{"x":151,"y":544,"on":false},{"x":182,"y":517,"on":false},{"x":182,"y":488,"on":true},{"x":182,"y":460,"on":false},{"x":151,"y":432,"on":false}] + ] + }, + "uniA70A": { + "advanceWidth": 418, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":688,"on":true},{"x":340,"y":688,"on":true},{"x":340,"y":0,"on":true}], + [{"x":130,"y":288,"on":true},{"x":108,"y":288,"on":false},{"x":78,"y":316,"on":false},{"x":78,"y":344,"on":true},{"x":78,"y":373,"on":false},{"x":108,"y":400,"on":false},{"x":130,"y":400,"on":true},{"x":151,"y":400,"on":false},{"x":182,"y":373,"on":false},{"x":182,"y":344,"on":true},{"x":182,"y":316,"on":false},{"x":151,"y":288,"on":false}] + ] + }, + "uniA70B": { + "advanceWidth": 418, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":688,"on":true},{"x":340,"y":688,"on":true},{"x":340,"y":0,"on":true}], + [{"x":130,"y":144,"on":true},{"x":108,"y":144,"on":false},{"x":78,"y":172,"on":false},{"x":78,"y":200,"on":true},{"x":78,"y":229,"on":false},{"x":108,"y":256,"on":false},{"x":130,"y":256,"on":true},{"x":151,"y":256,"on":false},{"x":182,"y":229,"on":false},{"x":182,"y":200,"on":true},{"x":182,"y":172,"on":false},{"x":151,"y":144,"on":false}] + ] + }, + "uniA70C": { + "advanceWidth": 418, + "contours": [ + [{"x":274,"y":0,"on":true},{"x":274,"y":688,"on":true},{"x":340,"y":688,"on":true},{"x":340,"y":0,"on":true}], + [{"x":130,"y":0,"on":true},{"x":108,"y":0,"on":false},{"x":78,"y":28,"on":false},{"x":78,"y":56,"on":true},{"x":78,"y":85,"on":false},{"x":108,"y":112,"on":false},{"x":130,"y":112,"on":true},{"x":151,"y":112,"on":false},{"x":182,"y":85,"on":false},{"x":182,"y":56,"on":true},{"x":182,"y":28,"on":false},{"x":151,"y":0,"on":false}] + ] + }, + "uniA70D": { + "advanceWidth": 418, + "contours": [ + [{"x":78,"y":0,"on":true},{"x":78,"y":688,"on":true},{"x":144,"y":688,"on":true},{"x":144,"y":0,"on":true}], + [{"x":288,"y":576,"on":true},{"x":267,"y":576,"on":false},{"x":236,"y":603,"on":false},{"x":236,"y":632,"on":true},{"x":236,"y":660,"on":false},{"x":267,"y":688,"on":false},{"x":288,"y":688,"on":true},{"x":310,"y":688,"on":false},{"x":340,"y":660,"on":false},{"x":340,"y":632,"on":true},{"x":340,"y":603,"on":false},{"x":310,"y":576,"on":false}] + ] + }, + "uniA70E": { + "advanceWidth": 418, + "contours": [ + [{"x":78,"y":0,"on":true},{"x":78,"y":688,"on":true},{"x":144,"y":688,"on":true},{"x":144,"y":0,"on":true}], + [{"x":288,"y":432,"on":true},{"x":267,"y":432,"on":false},{"x":236,"y":459,"on":false},{"x":236,"y":488,"on":true},{"x":236,"y":516,"on":false},{"x":267,"y":544,"on":false},{"x":288,"y":544,"on":true},{"x":310,"y":544,"on":false},{"x":340,"y":516,"on":false},{"x":340,"y":488,"on":true},{"x":340,"y":459,"on":false},{"x":310,"y":432,"on":false}] + ] + }, + "uniA70F": { + "advanceWidth": 418, + "contours": [ + [{"x":78,"y":0,"on":true},{"x":78,"y":688,"on":true},{"x":144,"y":688,"on":true},{"x":144,"y":0,"on":true}], + [{"x":288,"y":288,"on":true},{"x":267,"y":288,"on":false},{"x":236,"y":315,"on":false},{"x":236,"y":344,"on":true},{"x":236,"y":372,"on":false},{"x":267,"y":400,"on":false},{"x":288,"y":400,"on":true},{"x":310,"y":400,"on":false},{"x":340,"y":372,"on":false},{"x":340,"y":344,"on":true},{"x":340,"y":315,"on":false},{"x":310,"y":288,"on":false}] + ] + }, + "uniA710": { + "advanceWidth": 418, + "contours": [ + [{"x":78,"y":0,"on":true},{"x":78,"y":688,"on":true},{"x":144,"y":688,"on":true},{"x":144,"y":0,"on":true}], + [{"x":288,"y":144,"on":true},{"x":267,"y":144,"on":false},{"x":236,"y":171,"on":false},{"x":236,"y":200,"on":true},{"x":236,"y":228,"on":false},{"x":267,"y":256,"on":false},{"x":288,"y":256,"on":true},{"x":310,"y":256,"on":false},{"x":340,"y":228,"on":false},{"x":340,"y":200,"on":true},{"x":340,"y":171,"on":false},{"x":310,"y":144,"on":false}] + ] + }, + "uniA711": { + "advanceWidth": 418, + "contours": [ + [{"x":78,"y":0,"on":true},{"x":78,"y":688,"on":true},{"x":144,"y":688,"on":true},{"x":144,"y":0,"on":true}], + [{"x":288,"y":0,"on":true},{"x":267,"y":0,"on":false},{"x":236,"y":27,"on":false},{"x":236,"y":56,"on":true},{"x":236,"y":84,"on":false},{"x":267,"y":112,"on":false},{"x":288,"y":112,"on":true},{"x":310,"y":112,"on":false},{"x":340,"y":84,"on":false},{"x":340,"y":56,"on":true},{"x":340,"y":27,"on":false},{"x":310,"y":0,"on":false}] + ] + }, + "uniA712": { + "advanceWidth": 418, + "references": [ + {"glyph":"uni02E9","x":418,"y":688,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA713": { + "advanceWidth": 418, + "references": [ + {"glyph":"uni02E8","x":418,"y":688,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA714": { + "advanceWidth": 418, + "contours": [ + [{"x":78,"y":0,"on":true},{"x":78,"y":688,"on":true},{"x":144,"y":688,"on":true},{"x":144,"y":392,"on":true},{"x":340,"y":392,"on":true},{"x":340,"y":326,"on":true},{"x":144,"y":326,"on":true},{"x":144,"y":0,"on":true}] + ] + }, + "uniA715": { + "advanceWidth": 418, + "references": [ + {"glyph":"uni02E6","x":418,"y":688,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA716": { + "advanceWidth": 418, + "contours": [ + [{"x":78,"y":0,"on":true},{"x":78,"y":688,"on":true},{"x":144,"y":688,"on":true},{"x":144,"y":66,"on":true},{"x":340,"y":66,"on":true},{"x":340,"y":0,"on":true}] + ] + }, + "uniA717": { + "advanceWidth": 308, + "contours": [ + [{"x":268,"y":931,"on":true},{"x":268,"y":645,"on":true},{"x":198,"y":645,"on":true},{"x":198,"y":931,"on":true}], + [{"x":143,"y":789,"on":true},{"x":143,"y":763,"on":false},{"x":114,"y":737,"on":false},{"x":92,"y":737,"on":true},{"x":69,"y":737,"on":false},{"x":40,"y":763,"on":false},{"x":40,"y":789,"on":true},{"x":40,"y":815,"on":false},{"x":70,"y":840,"on":false},{"x":92,"y":840,"on":true},{"x":114,"y":840,"on":false},{"x":143,"y":815,"on":false}] + ] + }, + "uniA718": { + "advanceWidth": 352, + "contours": [ + [{"x":139,"y":785,"on":true},{"x":139,"y":758,"on":false},{"x":111,"y":731,"on":false},{"x":89,"y":731,"on":true},{"x":68,"y":731,"on":false},{"x":40,"y":758,"on":false},{"x":40,"y":785,"on":true},{"x":40,"y":813,"on":false},{"x":68,"y":839,"on":false},{"x":89,"y":839,"on":true},{"x":111,"y":839,"on":false},{"x":139,"y":812,"on":false}], + [{"x":312,"y":765,"on":true},{"x":109,"y":562,"on":true},{"x":60,"y":611,"on":true},{"x":263,"y":814,"on":true}] + ] + }, + "uniA719": { + "advanceWidth": 366, + "contours": [ + [{"x":232,"y":788,"on":true},{"x":232,"y":761,"on":false},{"x":204,"y":734,"on":false},{"x":183,"y":734,"on":true},{"x":161,"y":734,"on":false},{"x":134,"y":761,"on":false},{"x":134,"y":788,"on":true},{"x":134,"y":816,"on":false},{"x":161,"y":841,"on":false},{"x":183,"y":841,"on":true},{"x":204,"y":841,"on":false},{"x":232,"y":815,"on":false}], + [{"x":326,"y":612,"on":true},{"x":40,"y":612,"on":true},{"x":40,"y":681,"on":true},{"x":326,"y":681,"on":true}] + ] + }, + "uniA71A": { + "advanceWidth": 343, + "contours": [ + [{"x":40,"y":595,"on":true},{"x":40,"y":645,"on":true},{"x":253,"y":645,"on":true},{"x":253,"y":761,"on":true},{"x":303,"y":761,"on":true},{"x":303,"y":595,"on":true}] + ] + }, + "uniA71B": { + "advanceWidth": 483, + "contours": [ + [{"x":241,"y":901,"on":true},{"x":403,"y":720,"on":true},{"x":276,"y":720,"on":true},{"x":276,"y":590,"on":true},{"x":207,"y":590,"on":true},{"x":207,"y":720,"on":true},{"x":81,"y":720,"on":true}] + ] + }, + "uniA71C": { + "advanceWidth": 483, + "contours": [ + [{"x":241,"y":578,"on":true},{"x":81,"y":760,"on":true},{"x":207,"y":760,"on":true},{"x":207,"y":890,"on":true},{"x":276,"y":890,"on":true},{"x":276,"y":760,"on":true},{"x":403,"y":760,"on":true}] + ] + }, + "uniA71D": { + "advanceWidth": 249, + "contours": [ + [{"x":153,"y":516,"on":true},{"x":95,"y":516,"on":true},{"x":73,"y":854,"on":true},{"x":176,"y":854,"on":true}], + [{"x":67,"y":382,"on":true},{"x":67,"y":415,"on":false},{"x":99,"y":443,"on":false},{"x":124,"y":443,"on":true},{"x":147,"y":443,"on":false},{"x":181,"y":415,"on":false},{"x":181,"y":382,"on":true},{"x":181,"y":350,"on":false},{"x":147,"y":321,"on":false},{"x":124,"y":321,"on":true},{"x":99,"y":321,"on":false},{"x":67,"y":350,"on":false}] + ] + }, + "uniA71E": { + "advanceWidth": 249, + "contours": [ + [{"x":181,"y":800,"on":true},{"x":181,"y":767,"on":false},{"x":148,"y":739,"on":false},{"x":124,"y":739,"on":true},{"x":101,"y":739,"on":false},{"x":67,"y":767,"on":false},{"x":67,"y":800,"on":true},{"x":67,"y":832,"on":false},{"x":101,"y":861,"on":false},{"x":124,"y":861,"on":true},{"x":148,"y":861,"on":false},{"x":181,"y":832,"on":false}], + [{"x":95,"y":666,"on":true},{"x":152,"y":666,"on":true},{"x":175,"y":329,"on":true},{"x":72,"y":329,"on":true}] + ] + }, + "uniA71F": { + "advanceWidth": 249, + "references": [ + {"glyph":"uniA71E","x":0,"y":-153,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA720": { + "advanceWidth": 438, + "contours": [ + [{"x":40,"y":522,"on":true},{"x":40,"y":714,"on":true},{"x":398,"y":577,"on":true},{"x":398,"y":519,"on":true},{"x":243,"y":579,"on":true},{"x":243,"y":464,"on":true},{"x":190,"y":485,"on":true},{"x":190,"y":599,"on":true},{"x":93,"y":637,"on":true},{"x":93,"y":502,"on":true}] + ] + }, + "uniA721": { + "advanceWidth": 438, + "contours": [ + [{"x":398,"y":-1,"on":true},{"x":40,"y":137,"on":true},{"x":40,"y":329,"on":true},{"x":93,"y":309,"on":true},{"x":93,"y":174,"on":true},{"x":190,"y":138,"on":true},{"x":190,"y":253,"on":true},{"x":243,"y":232,"on":true},{"x":243,"y":118,"on":true},{"x":398,"y":58,"on":true}] + ] + }, + "uniA722": { + "advanceWidth": 380, + "contours": [ + [{"x":127,"y":412,"on":true},{"x":106,"y":412,"on":true},{"x":106,"y":457,"on":true},{"x":122,"y":457,"on":true},{"x":178,"y":457,"on":false},{"x":247,"y":505,"on":false},{"x":247,"y":553,"on":true},{"x":247,"y":638,"on":false},{"x":144,"y":638,"on":true},{"x":70,"y":638,"on":true},{"x":70,"y":714,"on":true},{"x":152,"y":714,"on":true},{"x":238,"y":714,"on":false},{"x":324,"y":636,"on":false},{"x":324,"y":568,"on":true},{"x":324,"y":526,"on":false},{"x":285,"y":455,"on":false},{"x":198,"y":412,"on":false}], + [{"x":110,"y":0,"on":true},{"x":89,"y":0,"on":true},{"x":89,"y":45,"on":true},{"x":102,"y":45,"on":true},{"x":155,"y":45,"on":false},{"x":225,"y":86,"on":false},{"x":225,"y":137,"on":true},{"x":225,"y":216,"on":false},{"x":127,"y":216,"on":true},{"x":76,"y":216,"on":true},{"x":76,"y":292,"on":true},{"x":133,"y":292,"on":true},{"x":218,"y":292,"on":false},{"x":296,"y":212,"on":false},{"x":296,"y":147,"on":true},{"x":296,"y":108,"on":false},{"x":260,"y":41,"on":false},{"x":178,"y":0,"on":false}] + ] + }, + "uniA723": { + "advanceWidth": 326, + "contours": [ + [{"x":134,"y":332,"on":true},{"x":100,"y":332,"on":true},{"x":100,"y":377,"on":true},{"x":127,"y":377,"on":true},{"x":220,"y":377,"on":false},{"x":220,"y":452,"on":true},{"x":220,"y":484,"on":false},{"x":172,"y":516,"on":false},{"x":129,"y":516,"on":true},{"x":70,"y":516,"on":true},{"x":70,"y":591,"on":true},{"x":134,"y":591,"on":true},{"x":211,"y":591,"on":false},{"x":290,"y":519,"on":false},{"x":290,"y":461,"on":true},{"x":290,"y":427,"on":false},{"x":259,"y":368,"on":false},{"x":190,"y":332,"on":false}], + [{"x":123,"y":0,"on":true},{"x":100,"y":0,"on":true},{"x":100,"y":45,"on":true},{"x":117,"y":45,"on":true},{"x":156,"y":45,"on":false},{"x":201,"y":76,"on":false},{"x":201,"y":113,"on":true},{"x":201,"y":171,"on":false},{"x":114,"y":171,"on":true},{"x":74,"y":171,"on":true},{"x":74,"y":246,"on":true},{"x":118,"y":246,"on":true},{"x":189,"y":246,"on":false},{"x":265,"y":180,"on":false},{"x":265,"y":121,"on":true},{"x":265,"y":70,"on":false},{"x":198,"y":0,"on":false}] + ] + }, + "uniA724": { + "advanceWidth": 448, + "contours": [ + [{"x":334,"y":265,"on":true},{"x":236,"y":265,"on":false},{"x":110,"y":323,"on":false},{"x":49,"y":426,"on":false},{"x":49,"y":492,"on":true},{"x":49,"y":594,"on":false},{"x":172,"y":713,"on":false},{"x":296,"y":713,"on":true},{"x":396,"y":713,"on":true},{"x":396,"y":619,"on":true},{"x":306,"y":619,"on":true},{"x":144,"y":619,"on":false},{"x":144,"y":480,"on":true},{"x":144,"y":404,"on":false},{"x":253,"y":321,"on":false},{"x":340,"y":321,"on":true},{"x":357,"y":321,"on":true},{"x":357,"y":265,"on":true}] + ] + }, + "uniA725": { + "advanceWidth": 398, + "contours": [ + [{"x":299,"y":149,"on":true},{"x":206,"y":149,"on":false},{"x":93,"y":202,"on":false},{"x":43,"y":292,"on":false},{"x":43,"y":347,"on":true},{"x":43,"y":438,"on":false},{"x":161,"y":546,"on":false},{"x":281,"y":546,"on":true},{"x":349,"y":546,"on":true},{"x":349,"y":458,"on":true},{"x":289,"y":458,"on":true},{"x":210,"y":458,"on":false},{"x":131,"y":395,"on":false},{"x":131,"y":336,"on":true},{"x":131,"y":267,"on":false},{"x":226,"y":201,"on":false},{"x":304,"y":201,"on":true},{"x":318,"y":201,"on":true},{"x":318,"y":149,"on":true}] + ] + }, + "uniA726": { + "advanceWidth": 672, + "contours": [ + [{"x":406,"y":-198,"on":true},{"x":358,"y":-198,"on":false},{"x":328,"y":-186,"on":true},{"x":328,"y":-97,"on":true},{"x":344,"y":-101,"on":false},{"x":376,"y":-107,"on":false},{"x":394,"y":-107,"on":true},{"x":437,"y":-107,"on":false},{"x":482,"y":-51,"on":false},{"x":482,"y":20,"on":true},{"x":482,"y":327,"on":true},{"x":191,"y":327,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":482,"y":418,"on":true},{"x":482,"y":714,"on":true},{"x":587,"y":714,"on":true},{"x":587,"y":20,"on":true},{"x":587,"y":-96,"on":false},{"x":492,"y":-198,"on":false}] + ] + }, + "uniA727": { + "advanceWidth": 570, + "contours": [ + [{"x":358,"y":-240,"on":true},{"x":339,"y":-240,"on":false},{"x":300,"y":-234,"on":false},{"x":287,"y":-229,"on":true},{"x":287,"y":-144,"on":true},{"x":314,"y":-153,"on":false},{"x":339,"y":-153,"on":true},{"x":366,"y":-153,"on":false},{"x":396,"y":-115,"on":false},{"x":396,"y":-71,"on":true},{"x":396,"y":337,"on":true},{"x":396,"y":463,"on":false},{"x":304,"y":463,"on":true},{"x":234,"y":463,"on":false},{"x":178,"y":367,"on":false},{"x":178,"y":272,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":564,"on":true},{"x":178,"y":536,"on":false},{"x":174,"y":480,"on":false},{"x":172,"y":465,"on":true},{"x":178,"y":465,"on":true},{"x":201,"y":508,"on":false},{"x":278,"y":549,"on":false},{"x":329,"y":549,"on":true},{"x":411,"y":549,"on":false},{"x":498,"y":453,"on":false},{"x":498,"y":355,"on":true},{"x":498,"y":-77,"on":true},{"x":498,"y":-151,"on":false},{"x":430,"y":-240,"on":false}] + ] + }, + "uniA728": { + "advanceWidth": 770, + "references": [ + {"glyph":"T","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"uni01B7","x":236,"y":-231,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA729": { + "advanceWidth": 756, + "contours": [ + [{"x":250,"y":76,"on":true},{"x":270,"y":76,"on":false},{"x":307,"y":82,"on":false},{"x":325,"y":87,"on":true},{"x":325,"y":8,"on":true},{"x":306,"y":0,"on":false},{"x":254,"y":-10,"on":false},{"x":223,"y":-10,"on":true},{"x":156,"y":-10,"on":false},{"x":83,"y":66,"on":false},{"x":83,"y":154,"on":true},{"x":83,"y":458,"on":true},{"x":17,"y":458,"on":true},{"x":17,"y":508,"on":true},{"x":89,"y":541,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":540,"on":true},{"x":695,"y":540,"on":true},{"x":695,"y":470,"on":true},{"x":493,"y":238,"on":true},{"x":612,"y":229,"on":false},{"x":717,"y":103,"on":false},{"x":717,"y":4,"on":true},{"x":717,"y":-106,"on":false},{"x":586,"y":-241,"on":false},{"x":464,"y":-240,"on":true},{"x":360,"y":-240,"on":false},{"x":286,"y":-203,"on":true},{"x":286,"y":-107,"on":true},{"x":325,"y":-130,"on":false},{"x":414,"y":-153,"on":false},{"x":456,"y":-153,"on":true},{"x":538,"y":-153,"on":false},{"x":612,"y":-65,"on":false},{"x":612,"y":8,"on":true},{"x":612,"y":79,"on":false},{"x":529,"y":159,"on":false},{"x":432,"y":159,"on":true},{"x":378,"y":159,"on":true},{"x":378,"y":235,"on":true},{"x":569,"y":458,"on":true},{"x":185,"y":458,"on":true},{"x":185,"y":159,"on":true},{"x":185,"y":76,"on":false}] + ] + }, + "uniA72A": { + "advanceWidth": 545, + "contours": [ + [{"x":307,"y":-10,"on":true},{"x":177,"y":-10,"on":false},{"x":46,"y":102,"on":false},{"x":46,"y":201,"on":true},{"x":46,"y":295,"on":false},{"x":160,"y":394,"on":false},{"x":251,"y":404,"on":true},{"x":73,"y":530,"on":true},{"x":73,"y":598,"on":true},{"x":278,"y":724,"on":true},{"x":344,"y":724,"on":false},{"x":444,"y":705,"on":false},{"x":490,"y":684,"on":true},{"x":453,"y":604,"on":true},{"x":413,"y":622,"on":false},{"x":339,"y":638,"on":false},{"x":303,"y":638,"on":true},{"x":182,"y":561,"on":true},{"x":401,"y":410,"on":true},{"x":401,"y":327,"on":true},{"x":331,"y":327,"on":true},{"x":240,"y":327,"on":false},{"x":153,"y":264,"on":false},{"x":153,"y":206,"on":true},{"x":153,"y":144,"on":false},{"x":232,"y":79,"on":false},{"x":316,"y":79,"on":true},{"x":360,"y":79,"on":false},{"x":458,"y":102,"on":false},{"x":498,"y":125,"on":true},{"x":498,"y":29,"on":true},{"x":420,"y":-10,"on":false}] + ] + }, + "uniA72B": { + "advanceWidth": 500, + "contours": [ + [{"x":245,"y":216,"on":true},{"x":62,"y":360,"on":true},{"x":62,"y":432,"on":true},{"x":266,"y":550,"on":true},{"x":330,"y":550,"on":false},{"x":432,"y":529,"on":false},{"x":474,"y":505,"on":true},{"x":441,"y":427,"on":true},{"x":402,"y":447,"on":false},{"x":328,"y":467,"on":false},{"x":281,"y":467,"on":true},{"x":160,"y":391,"on":true},{"x":382,"y":217,"on":true},{"x":382,"y":141,"on":true},{"x":324,"y":141,"on":true},{"x":226,"y":141,"on":false},{"x":145,"y":63,"on":false},{"x":145,"y":-4,"on":true},{"x":145,"y":-68,"on":false},{"x":218,"y":-152,"on":false},{"x":295,"y":-152,"on":true},{"x":340,"y":-152,"on":false},{"x":434,"y":-130,"on":false},{"x":475,"y":-108,"on":true},{"x":475,"y":-202,"on":true},{"x":397,"y":-240,"on":false},{"x":286,"y":-240,"on":true},{"x":164,"y":-240,"on":false},{"x":39,"y":-114,"on":false},{"x":39,"y":-10,"on":true},{"x":39,"y":88,"on":false},{"x":146,"y":204,"on":false}] + ] + }, + "uniA72C": { + "advanceWidth": 510, + "contours": [ + [{"x":427,"y":717,"on":true},{"x":427,"y":175,"on":true},{"x":427,"y":80,"on":false},{"x":349,"y":-10,"on":false},{"x":278,"y":-10,"on":true},{"x":252,"y":-10,"on":false},{"x":214,"y":-3,"on":false},{"x":201,"y":2,"on":true},{"x":201,"y":87,"on":true},{"x":214,"y":82,"on":false},{"x":242,"y":77,"on":false},{"x":257,"y":77,"on":true},{"x":290,"y":77,"on":false},{"x":324,"y":117,"on":false},{"x":324,"y":164,"on":true},{"x":324,"y":192,"on":true},{"x":26,"y":192,"on":true},{"x":26,"y":265,"on":true},{"x":319,"y":717,"on":true}], + [{"x":324,"y":276,"on":true},{"x":324,"y":444,"on":true},{"x":324,"y":470,"on":false},{"x":326,"y":532,"on":false},{"x":328,"y":589,"on":false},{"x":329,"y":608,"on":true},{"x":326,"y":608,"on":true},{"x":318,"y":590,"on":false},{"x":297,"y":548,"on":false},{"x":282,"y":525,"on":true},{"x":127,"y":276,"on":true}] + ] + }, + "uniA72D": { + "advanceWidth": 495, + "contours": [ + [{"x":418,"y":540,"on":true},{"x":418,"y":-72,"on":true},{"x":418,"y":-151,"on":false},{"x":342,"y":-240,"on":false},{"x":264,"y":-240,"on":true},{"x":213,"y":-240,"on":false},{"x":183,"y":-228,"on":true},{"x":183,"y":-146,"on":true},{"x":198,"y":-150,"on":false},{"x":229,"y":-156,"on":false},{"x":246,"y":-156,"on":true},{"x":279,"y":-156,"on":false},{"x":316,"y":-115,"on":false},{"x":316,"y":-68,"on":true},{"x":316,"y":0,"on":true},{"x":18,"y":0,"on":true},{"x":18,"y":74,"on":true},{"x":313,"y":540,"on":true}], + [{"x":113,"y":82,"on":true},{"x":316,"y":82,"on":true},{"x":316,"y":256,"on":true},{"x":316,"y":282,"on":false},{"x":317,"y":344,"on":false},{"x":320,"y":401,"on":false},{"x":321,"y":420,"on":true},{"x":317,"y":420,"on":true},{"x":310,"y":402,"on":false},{"x":289,"y":361,"on":false},{"x":273,"y":337,"on":true}] + ] + }, + "uniA72E": { + "advanceWidth": 586, + "contours": [ + [{"x":278,"y":-10,"on":true},{"x":252,"y":-10,"on":false},{"x":214,"y":-3,"on":false},{"x":201,"y":2,"on":true},{"x":201,"y":87,"on":true},{"x":214,"y":82,"on":false},{"x":242,"y":77,"on":false},{"x":257,"y":77,"on":true},{"x":289,"y":77,"on":false},{"x":324,"y":116,"on":false},{"x":324,"y":165,"on":true},{"x":324,"y":194,"on":true},{"x":26,"y":194,"on":true},{"x":26,"y":268,"on":true},{"x":319,"y":717,"on":true},{"x":427,"y":717,"on":true},{"x":427,"y":278,"on":true},{"x":567,"y":278,"on":true},{"x":567,"y":194,"on":true},{"x":427,"y":194,"on":true},{"x":427,"y":173,"on":true},{"x":427,"y":77,"on":false},{"x":348,"y":-10,"on":false}], + [{"x":324,"y":278,"on":true},{"x":324,"y":444,"on":true},{"x":324,"y":470,"on":false},{"x":326,"y":534,"on":false},{"x":328,"y":592,"on":false},{"x":329,"y":608,"on":true},{"x":326,"y":608,"on":true},{"x":318,"y":590,"on":false},{"x":297,"y":548,"on":false},{"x":282,"y":525,"on":true},{"x":127,"y":278,"on":true}], + [{"x":579,"y":154,"on":true},{"x":579,"y":144,"on":true},{"x":554,"y":69,"on":false},{"x":506,"y":-3,"on":true},{"x":446,"y":-3,"on":true},{"x":446,"y":8,"on":true},{"x":456,"y":36,"on":false},{"x":476,"y":120,"on":false},{"x":479,"y":154,"on":true}] + ] + }, + "uniA72F": { + "advanceWidth": 572, + "contours": [ + [{"x":418,"y":0,"on":true},{"x":418,"y":-62,"on":true},{"x":418,"y":-147,"on":false},{"x":344,"y":-240,"on":false},{"x":265,"y":-240,"on":true},{"x":214,"y":-240,"on":false},{"x":183,"y":-228,"on":true},{"x":183,"y":-146,"on":true},{"x":199,"y":-150,"on":false},{"x":230,"y":-156,"on":false},{"x":246,"y":-156,"on":true},{"x":280,"y":-156,"on":false},{"x":316,"y":-116,"on":false},{"x":316,"y":-66,"on":true},{"x":316,"y":0,"on":true},{"x":18,"y":0,"on":true},{"x":18,"y":74,"on":true},{"x":313,"y":540,"on":true},{"x":418,"y":540,"on":true},{"x":418,"y":82,"on":true},{"x":555,"y":82,"on":true},{"x":555,"y":0,"on":true}], + [{"x":113,"y":82,"on":true},{"x":316,"y":82,"on":true},{"x":316,"y":256,"on":true},{"x":316,"y":282,"on":false},{"x":318,"y":346,"on":false},{"x":320,"y":403,"on":false},{"x":321,"y":420,"on":true},{"x":317,"y":420,"on":true},{"x":303,"y":384,"on":false},{"x":273,"y":336,"on":true}], + [{"x":579,"y":-63,"on":true},{"x":579,"y":-73,"on":true},{"x":567,"y":-110,"on":false},{"x":529,"y":-195,"on":false},{"x":506,"y":-231,"on":true},{"x":446,"y":-231,"on":true},{"x":446,"y":-220,"on":true},{"x":452,"y":-200,"on":false},{"x":466,"y":-144,"on":false},{"x":476,"y":-85,"on":false},{"x":479,"y":-63,"on":true}] + ] + }, + "uniA730": { + "advanceWidth": 389, + "contours": [ + [{"x":165,"y":0,"on":true},{"x":74,"y":0,"on":true},{"x":74,"y":540,"on":true},{"x":360,"y":540,"on":true},{"x":360,"y":463,"on":true},{"x":165,"y":463,"on":true},{"x":165,"y":298,"on":true},{"x":347,"y":298,"on":true},{"x":347,"y":223,"on":true},{"x":165,"y":223,"on":true}] + ] + }, + "uniA731": { + "advanceWidth": 399, + "contours": [ + [{"x":364,"y":147,"on":true},{"x":364,"y":73,"on":false},{"x":267,"y":-9,"on":false},{"x":183,"y":-9,"on":true},{"x":140,"y":-9,"on":false},{"x":66,"y":6,"on":false},{"x":37,"y":20,"on":true},{"x":37,"y":108,"on":true},{"x":68,"y":92,"on":false},{"x":143,"y":69,"on":false},{"x":182,"y":69,"on":true},{"x":225,"y":69,"on":false},{"x":273,"y":108,"on":false},{"x":273,"y":143,"on":true},{"x":273,"y":178,"on":false},{"x":218,"y":218,"on":false},{"x":168,"y":242,"on":true},{"x":134,"y":258,"on":false},{"x":77,"y":298,"on":false},{"x":41,"y":358,"on":false},{"x":41,"y":402,"on":true},{"x":41,"y":471,"on":false},{"x":133,"y":550,"on":false},{"x":212,"y":550,"on":true},{"x":252,"y":550,"on":false},{"x":324,"y":531,"on":false},{"x":359,"y":514,"on":true},{"x":329,"y":442,"on":true},{"x":298,"y":457,"on":false},{"x":242,"y":474,"on":false},{"x":213,"y":474,"on":true},{"x":176,"y":474,"on":false},{"x":132,"y":436,"on":false},{"x":132,"y":405,"on":true},{"x":132,"y":370,"on":false},{"x":182,"y":334,"on":false},{"x":234,"y":308,"on":true},{"x":272,"y":289,"on":false},{"x":331,"y":247,"on":false},{"x":364,"y":190,"on":false}] + ] + }, + "uniA732": { + "advanceWidth": 1065, + "references": [ + {"glyph":"A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"A","x":478,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA733": { + "advanceWidth": 826, + "contours": [ + [{"x":265,"y":550,"on":true},{"x":353,"y":550,"on":false},{"x":399,"y":506,"on":true},{"x":435,"y":525,"on":false},{"x":524,"y":549,"on":false},{"x":572,"y":549,"on":true},{"x":754,"y":549,"on":false},{"x":754,"y":364,"on":true},{"x":754,"y":0,"on":true},{"x":679,"y":0,"on":true},{"x":661,"y":75,"on":true},{"x":658,"y":75,"on":true},{"x":627,"y":32,"on":false},{"x":556,"y":-10,"on":false},{"x":497,"y":-10,"on":true},{"x":447,"y":-10,"on":false},{"x":375,"y":35,"on":false},{"x":358,"y":77,"on":true},{"x":327,"y":33,"on":false},{"x":255,"y":-10,"on":false},{"x":196,"y":-10,"on":true},{"x":121,"y":-10,"on":false},{"x":40,"y":79,"on":false},{"x":40,"y":154,"on":true},{"x":40,"y":236,"on":false},{"x":154,"y":321,"on":false},{"x":263,"y":325,"on":true},{"x":347,"y":328,"on":true},{"x":347,"y":358,"on":true},{"x":347,"y":470,"on":false},{"x":256,"y":470,"on":true},{"x":224,"y":470,"on":false},{"x":156,"y":450,"on":false},{"x":121,"y":431,"on":true},{"x":88,"y":506,"on":true},{"x":128,"y":527,"on":false},{"x":218,"y":550,"on":false}], + [{"x":449,"y":360,"on":true},{"x":449,"y":304,"on":true},{"x":498,"y":323,"on":false},{"x":571,"y":326,"on":true},{"x":653,"y":329,"on":true},{"x":653,"y":359,"on":true},{"x":653,"y":418,"on":false},{"x":606,"y":468,"on":false},{"x":562,"y":468,"on":true},{"x":531,"y":468,"on":false},{"x":469,"y":450,"on":false},{"x":440,"y":436,"on":true},{"x":449,"y":403,"on":false}], + [{"x":347,"y":261,"on":true},{"x":284,"y":258,"on":true},{"x":215,"y":256,"on":false},{"x":145,"y":206,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":111,"on":false},{"x":188,"y":70,"on":false},{"x":225,"y":70,"on":true},{"x":280,"y":70,"on":false},{"x":347,"y":144,"on":false},{"x":347,"y":211,"on":true}], + [{"x":652,"y":260,"on":true},{"x":590,"y":258,"on":true},{"x":513,"y":255,"on":false},{"x":450,"y":202,"on":false},{"x":450,"y":154,"on":true},{"x":450,"y":110,"on":false},{"x":493,"y":70,"on":false},{"x":529,"y":70,"on":true},{"x":583,"y":70,"on":false},{"x":652,"y":142,"on":false},{"x":652,"y":211,"on":true}] + ] + }, + "uniA734": { + "advanceWidth": 1039, + "contours": [ + [{"x":177,"y":206,"on":true},{"x":113,"y":0,"on":true},{"x":0,"y":0,"on":true},{"x":232,"y":716,"on":true},{"x":354,"y":716,"on":true},{"x":414,"y":526,"on":true},{"x":444,"y":621,"on":false},{"x":580,"y":725,"on":false},{"x":689,"y":725,"on":true},{"x":788,"y":725,"on":false},{"x":919,"y":632,"on":false},{"x":984,"y":467,"on":false},{"x":984,"y":358,"on":true},{"x":984,"y":249,"on":false},{"x":919,"y":83,"on":false},{"x":788,"y":-10,"on":false},{"x":688,"y":-10,"on":true},{"x":574,"y":-10,"on":false},{"x":438,"y":107,"on":false},{"x":411,"y":206,"on":true}], + [{"x":502,"y":358,"on":true},{"x":502,"y":226,"on":false},{"x":593,"y":82,"on":false},{"x":688,"y":82,"on":true},{"x":784,"y":82,"on":false},{"x":874,"y":225,"on":false},{"x":874,"y":358,"on":true},{"x":874,"y":490,"on":false},{"x":784,"y":633,"on":false},{"x":689,"y":633,"on":true},{"x":593,"y":633,"on":false},{"x":502,"y":490,"on":false}], + [{"x":386,"y":297,"on":true},{"x":323,"y":508,"on":true},{"x":316,"y":532,"on":false},{"x":299,"y":596,"on":false},{"x":293,"y":623,"on":true},{"x":288,"y":598,"on":false},{"x":270,"y":530,"on":false},{"x":264,"y":508,"on":true},{"x":201,"y":297,"on":true}] + ] + }, + "uniA735": { + "advanceWidth": 854, + "contours": [ + [{"x":265,"y":550,"on":true},{"x":371,"y":550,"on":false},{"x":416,"y":486,"on":true},{"x":475,"y":549,"on":false},{"x":578,"y":549,"on":true},{"x":680,"y":549,"on":false},{"x":806,"y":405,"on":false},{"x":806,"y":271,"on":true},{"x":806,"y":140,"on":false},{"x":686,"y":-10,"on":false},{"x":575,"y":-10,"on":true},{"x":512,"y":-10,"on":false},{"x":415,"y":48,"on":false},{"x":386,"y":101,"on":true},{"x":384,"y":101,"on":true},{"x":357,"y":48,"on":false},{"x":269,"y":-10,"on":false},{"x":206,"y":-10,"on":true},{"x":126,"y":-10,"on":false},{"x":40,"y":77,"on":false},{"x":40,"y":154,"on":true},{"x":40,"y":236,"on":false},{"x":154,"y":321,"on":false},{"x":263,"y":325,"on":true},{"x":347,"y":328,"on":true},{"x":347,"y":358,"on":true},{"x":347,"y":470,"on":false},{"x":256,"y":470,"on":true},{"x":224,"y":470,"on":false},{"x":156,"y":450,"on":false},{"x":121,"y":431,"on":true},{"x":88,"y":506,"on":true},{"x":128,"y":527,"on":false},{"x":218,"y":550,"on":false}], + [{"x":452,"y":270,"on":true},{"x":452,"y":177,"on":false},{"x":512,"y":75,"on":false},{"x":577,"y":75,"on":true},{"x":642,"y":75,"on":false},{"x":702,"y":176,"on":false},{"x":702,"y":271,"on":true},{"x":702,"y":365,"on":false},{"x":642,"y":464,"on":false},{"x":577,"y":464,"on":true},{"x":512,"y":464,"on":false},{"x":452,"y":364,"on":false}], + [{"x":347,"y":261,"on":true},{"x":284,"y":258,"on":true},{"x":215,"y":256,"on":false},{"x":145,"y":206,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":111,"on":false},{"x":188,"y":70,"on":false},{"x":226,"y":70,"on":true},{"x":280,"y":70,"on":false},{"x":347,"y":144,"on":false},{"x":347,"y":211,"on":true}] + ] + }, + "uniA736": { + "advanceWidth": 997, + "contours": [ + [{"x":663,"y":-10,"on":true},{"x":566,"y":-10,"on":false},{"x":449,"y":77,"on":false},{"x":420,"y":164,"on":true},{"x":408,"y":206,"on":true},{"x":177,"y":206,"on":true},{"x":113,"y":0,"on":true},{"x":0,"y":0,"on":true},{"x":232,"y":716,"on":true},{"x":354,"y":716,"on":true},{"x":516,"y":207,"on":true},{"x":538,"y":143,"on":false},{"x":602,"y":81,"on":false},{"x":667,"y":81,"on":true},{"x":813,"y":81,"on":false},{"x":813,"y":251,"on":true},{"x":813,"y":714,"on":true},{"x":918,"y":714,"on":true},{"x":918,"y":243,"on":true},{"x":918,"y":124,"on":false},{"x":788,"y":-10,"on":false}], + [{"x":201,"y":297,"on":true},{"x":386,"y":297,"on":true},{"x":323,"y":508,"on":true},{"x":316,"y":532,"on":false},{"x":299,"y":596,"on":false},{"x":293,"y":623,"on":true},{"x":288,"y":598,"on":false},{"x":270,"y":530,"on":false},{"x":264,"y":508,"on":true}] + ] + }, + "uniA737": { + "advanceWidth": 845, + "contours": [ + [{"x":265,"y":550,"on":true},{"x":449,"y":550,"on":false},{"x":449,"y":360,"on":true},{"x":449,"y":210,"on":true},{"x":449,"y":141,"on":false},{"x":494,"y":77,"on":false},{"x":542,"y":77,"on":true},{"x":610,"y":77,"on":false},{"x":668,"y":167,"on":false},{"x":668,"y":259,"on":true},{"x":668,"y":539,"on":true},{"x":770,"y":539,"on":true},{"x":770,"y":0,"on":true},{"x":689,"y":0,"on":true},{"x":676,"y":71,"on":true},{"x":670,"y":71,"on":true},{"x":647,"y":30,"on":false},{"x":567,"y":-10,"on":false},{"x":516,"y":-10,"on":true},{"x":400,"y":-10,"on":false},{"x":363,"y":85,"on":true},{"x":334,"y":37,"on":false},{"x":254,"y":-10,"on":false},{"x":196,"y":-10,"on":true},{"x":121,"y":-10,"on":false},{"x":40,"y":79,"on":false},{"x":40,"y":154,"on":true},{"x":40,"y":236,"on":false},{"x":154,"y":321,"on":false},{"x":263,"y":325,"on":true},{"x":347,"y":328,"on":true},{"x":347,"y":358,"on":true},{"x":347,"y":470,"on":false},{"x":256,"y":470,"on":true},{"x":224,"y":470,"on":false},{"x":156,"y":450,"on":false},{"x":121,"y":431,"on":true},{"x":88,"y":506,"on":true},{"x":128,"y":527,"on":false},{"x":218,"y":550,"on":false}], + [{"x":347,"y":261,"on":true},{"x":284,"y":258,"on":true},{"x":215,"y":256,"on":false},{"x":145,"y":206,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":111,"on":false},{"x":188,"y":70,"on":false},{"x":225,"y":70,"on":true},{"x":280,"y":70,"on":false},{"x":347,"y":144,"on":false},{"x":347,"y":211,"on":true}] + ] + }, + "uniA738": { + "advanceWidth": 821, + "contours": [ + [{"x":500,"y":267,"on":true},{"x":507,"y":245,"on":false},{"x":523,"y":186,"on":false},{"x":536,"y":126,"on":false},{"x":539,"y":105,"on":true},{"x":543,"y":135,"on":false},{"x":563,"y":214,"on":false},{"x":571,"y":243,"on":true},{"x":712,"y":714,"on":true},{"x":821,"y":714,"on":true},{"x":596,"y":0,"on":true},{"x":473,"y":0,"on":true},{"x":410,"y":206,"on":true},{"x":177,"y":206,"on":true},{"x":113,"y":0,"on":true},{"x":0,"y":0,"on":true},{"x":232,"y":716,"on":true},{"x":354,"y":716,"on":true}], + [{"x":386,"y":297,"on":true},{"x":323,"y":508,"on":true},{"x":316,"y":532,"on":false},{"x":299,"y":596,"on":false},{"x":293,"y":623,"on":true},{"x":288,"y":598,"on":false},{"x":270,"y":530,"on":false},{"x":264,"y":508,"on":true},{"x":201,"y":297,"on":true}] + ] + }, + "uniA739": { + "advanceWidth": 746, + "contours": [ + [{"x":374,"y":0,"on":true},{"x":355,"y":78,"on":true},{"x":352,"y":78,"on":true},{"x":320,"y":32,"on":false},{"x":248,"y":-10,"on":false},{"x":191,"y":-10,"on":true},{"x":120,"y":-10,"on":false},{"x":40,"y":79,"on":false},{"x":40,"y":154,"on":true},{"x":40,"y":236,"on":false},{"x":154,"y":321,"on":false},{"x":263,"y":325,"on":true},{"x":347,"y":328,"on":true},{"x":347,"y":358,"on":true},{"x":347,"y":470,"on":false},{"x":256,"y":470,"on":true},{"x":224,"y":470,"on":false},{"x":156,"y":450,"on":false},{"x":121,"y":431,"on":true},{"x":88,"y":506,"on":true},{"x":128,"y":527,"on":false},{"x":218,"y":550,"on":false},{"x":265,"y":550,"on":true},{"x":448,"y":550,"on":false},{"x":448,"y":360,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":193,"on":false},{"x":446,"y":140,"on":false},{"x":444,"y":115,"on":true},{"x":448,"y":115,"on":true},{"x":455,"y":140,"on":false},{"x":474,"y":194,"on":false},{"x":486,"y":220,"on":true},{"x":632,"y":539,"on":true},{"x":745,"y":539,"on":true},{"x":481,"y":0,"on":true}], + [{"x":347,"y":261,"on":true},{"x":284,"y":258,"on":true},{"x":215,"y":256,"on":false},{"x":145,"y":206,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":111,"on":false},{"x":188,"y":70,"on":false},{"x":225,"y":70,"on":true},{"x":280,"y":70,"on":false},{"x":347,"y":144,"on":false},{"x":347,"y":211,"on":true}] + ] + }, + "uniA73A": { + "advanceWidth": 824, + "contours": [ + [{"x":0,"y":0,"on":true},{"x":233,"y":714,"on":true},{"x":357,"y":714,"on":true},{"x":450,"y":400,"on":true},{"x":624,"y":400,"on":true},{"x":716,"y":714,"on":true},{"x":824,"y":714,"on":true},{"x":598,"y":0,"on":true},{"x":469,"y":0,"on":true},{"x":377,"y":317,"on":true},{"x":205,"y":317,"on":true},{"x":110,"y":0,"on":true}], + [{"x":263,"y":508,"on":true},{"x":230,"y":400,"on":true},{"x":353,"y":400,"on":true},{"x":322,"y":508,"on":true},{"x":315,"y":532,"on":false},{"x":298,"y":596,"on":false},{"x":292,"y":623,"on":true},{"x":286,"y":598,"on":false},{"x":269,"y":530,"on":false}], + [{"x":493,"y":255,"on":true},{"x":500,"y":232,"on":false},{"x":516,"y":172,"on":false},{"x":532,"y":112,"on":false},{"x":536,"y":89,"on":true},{"x":542,"y":119,"on":false},{"x":565,"y":199,"on":false},{"x":574,"y":231,"on":true},{"x":599,"y":317,"on":true},{"x":475,"y":317,"on":true}] + ] + }, + "uniA73B": { + "advanceWidth": 746, + "contours": [ + [{"x":373,"y":0,"on":true},{"x":355,"y":78,"on":true},{"x":352,"y":78,"on":true},{"x":320,"y":32,"on":false},{"x":248,"y":-10,"on":false},{"x":191,"y":-10,"on":true},{"x":120,"y":-10,"on":false},{"x":40,"y":79,"on":false},{"x":40,"y":154,"on":true},{"x":40,"y":236,"on":false},{"x":155,"y":324,"on":false},{"x":264,"y":329,"on":true},{"x":347,"y":333,"on":true},{"x":347,"y":361,"on":true},{"x":347,"y":470,"on":false},{"x":256,"y":470,"on":true},{"x":224,"y":470,"on":false},{"x":156,"y":450,"on":false},{"x":121,"y":431,"on":true},{"x":88,"y":506,"on":true},{"x":128,"y":527,"on":false},{"x":218,"y":550,"on":false},{"x":265,"y":550,"on":true},{"x":448,"y":550,"on":false},{"x":448,"y":360,"on":true},{"x":448,"y":340,"on":true},{"x":542,"y":340,"on":true},{"x":632,"y":539,"on":true},{"x":745,"y":539,"on":true},{"x":483,"y":0,"on":true}], + [{"x":443,"y":113,"on":true},{"x":448,"y":113,"on":true},{"x":456,"y":139,"on":false},{"x":478,"y":197,"on":false},{"x":490,"y":224,"on":true},{"x":513,"y":274,"on":true},{"x":448,"y":274,"on":true},{"x":448,"y":226,"on":true},{"x":448,"y":199,"on":false},{"x":446,"y":139,"on":false}], + [{"x":347,"y":266,"on":true},{"x":284,"y":262,"on":true},{"x":216,"y":258,"on":false},{"x":145,"y":207,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":111,"on":false},{"x":188,"y":70,"on":false},{"x":225,"y":70,"on":true},{"x":280,"y":70,"on":false},{"x":347,"y":144,"on":false},{"x":347,"y":211,"on":true}] + ] + }, + "uniA73C": { + "advanceWidth": 821, + "contours": [ + [{"x":585,"y":-36,"on":true},{"x":554,"y":-136,"on":false},{"x":449,"y":-240,"on":false},{"x":357,"y":-240,"on":true},{"x":305,"y":-240,"on":false},{"x":265,"y":-226,"on":true},{"x":265,"y":-133,"on":true},{"x":284,"y":-141,"on":false},{"x":327,"y":-149,"on":false},{"x":347,"y":-149,"on":true},{"x":391,"y":-149,"on":false},{"x":440,"y":-103,"on":false},{"x":460,"y":-47,"on":true},{"x":476,"y":-3,"on":true},{"x":413,"y":206,"on":true},{"x":176,"y":206,"on":true},{"x":113,"y":0,"on":true},{"x":0,"y":0,"on":true},{"x":232,"y":715,"on":true},{"x":354,"y":715,"on":true},{"x":500,"y":267,"on":true},{"x":507,"y":245,"on":false},{"x":523,"y":186,"on":false},{"x":536,"y":126,"on":false},{"x":539,"y":105,"on":true},{"x":543,"y":135,"on":false},{"x":563,"y":214,"on":false},{"x":571,"y":243,"on":true},{"x":712,"y":714,"on":true},{"x":821,"y":714,"on":true}], + [{"x":386,"y":297,"on":true},{"x":323,"y":508,"on":true},{"x":316,"y":532,"on":false},{"x":299,"y":596,"on":false},{"x":293,"y":623,"on":true},{"x":288,"y":598,"on":false},{"x":270,"y":530,"on":false},{"x":264,"y":508,"on":true},{"x":201,"y":297,"on":true}] + ] + }, + "uniA73D": { + "advanceWidth": 746, + "contours": [ + [{"x":372,"y":-1,"on":true},{"x":355,"y":78,"on":true},{"x":352,"y":78,"on":true},{"x":320,"y":32,"on":false},{"x":248,"y":-10,"on":false},{"x":191,"y":-10,"on":true},{"x":120,"y":-10,"on":false},{"x":40,"y":79,"on":false},{"x":40,"y":154,"on":true},{"x":40,"y":236,"on":false},{"x":154,"y":321,"on":false},{"x":263,"y":325,"on":true},{"x":347,"y":328,"on":true},{"x":347,"y":358,"on":true},{"x":347,"y":470,"on":false},{"x":256,"y":470,"on":true},{"x":224,"y":470,"on":false},{"x":156,"y":450,"on":false},{"x":121,"y":431,"on":true},{"x":88,"y":506,"on":true},{"x":128,"y":527,"on":false},{"x":218,"y":550,"on":false},{"x":265,"y":550,"on":true},{"x":448,"y":550,"on":false},{"x":448,"y":360,"on":true},{"x":448,"y":220,"on":true},{"x":448,"y":193,"on":false},{"x":446,"y":140,"on":false},{"x":444,"y":115,"on":true},{"x":448,"y":115,"on":true},{"x":454,"y":137,"on":false},{"x":471,"y":186,"on":false},{"x":483,"y":212,"on":true},{"x":632,"y":539,"on":true},{"x":745,"y":539,"on":true},{"x":437,"y":-94,"on":true},{"x":402,"y":-169,"on":false},{"x":327,"y":-242,"on":false},{"x":263,"y":-242,"on":true},{"x":245,"y":-242,"on":false},{"x":212,"y":-237,"on":false},{"x":198,"y":-233,"on":true},{"x":198,"y":-146,"on":true},{"x":219,"y":-154,"on":false},{"x":248,"y":-154,"on":true},{"x":283,"y":-154,"on":false},{"x":323,"y":-110,"on":false},{"x":345,"y":-60,"on":true}], + [{"x":347,"y":261,"on":true},{"x":284,"y":258,"on":true},{"x":215,"y":256,"on":false},{"x":145,"y":206,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":111,"on":false},{"x":188,"y":70,"on":false},{"x":225,"y":70,"on":true},{"x":280,"y":70,"on":false},{"x":347,"y":144,"on":false},{"x":347,"y":211,"on":true}] + ] + }, + "uniA73E": { + "advanceWidth": 569, + "references": [ + {"glyph":"uni0186","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true}, + {"glyph":"periodcentered","x":55,"y":5,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA73F": { + "advanceWidth": 443, + "references": [ + {"glyph":"uni037D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA740": { + "advanceWidth": 571, + "contours": [ + [{"x":14,"y":549,"on":true},{"x":14,"y":636,"on":true},{"x":86,"y":636,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":636,"on":true},{"x":272,"y":636,"on":true},{"x":272,"y":549,"on":true},{"x":191,"y":549,"on":true},{"x":191,"y":368,"on":true},{"x":209,"y":393,"on":false},{"x":252,"y":449,"on":false},{"x":276,"y":481,"on":true},{"x":448,"y":714,"on":true},{"x":565,"y":714,"on":true},{"x":328,"y":400,"on":true},{"x":573,"y":0,"on":true},{"x":453,"y":0,"on":true},{"x":253,"y":325,"on":true},{"x":191,"y":268,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":549,"on":true}] + ] + }, + "uniA741": { + "advanceWidth": 509, + "contours": [ + [{"x":332,"y":674,"on":true},{"x":332,"y":601,"on":true},{"x":177,"y":601,"on":true},{"x":177,"y":386,"on":true},{"x":177,"y":362,"on":false},{"x":174,"y":307,"on":false},{"x":172,"y":282,"on":true},{"x":175,"y":282,"on":true},{"x":186,"y":298,"on":false},{"x":216,"y":341,"on":false},{"x":229,"y":357,"on":true},{"x":377,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":305,"y":315,"on":true},{"x":504,"y":0,"on":true},{"x":386,"y":0,"on":true},{"x":236,"y":246,"on":true},{"x":177,"y":190,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":601,"on":true},{"x":7,"y":601,"on":true},{"x":7,"y":674,"on":true},{"x":75,"y":674,"on":true},{"x":75,"y":760,"on":true},{"x":177,"y":760,"on":true},{"x":177,"y":674,"on":true}] + ] + }, + "uniA742": { + "advanceWidth": 571, + "contours": [ + [{"x":240,"y":144,"on":true},{"x":327,"y":204,"on":true},{"x":253,"y":325,"on":true},{"x":191,"y":268,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":368,"on":true},{"x":209,"y":393,"on":false},{"x":252,"y":449,"on":false},{"x":276,"y":481,"on":true},{"x":448,"y":714,"on":true},{"x":565,"y":714,"on":true},{"x":328,"y":400,"on":true},{"x":412,"y":263,"on":true},{"x":503,"y":326,"on":true},{"x":545,"y":264,"on":true},{"x":451,"y":199,"on":true},{"x":573,"y":0,"on":true},{"x":453,"y":0,"on":true},{"x":366,"y":141,"on":true},{"x":281,"y":82,"on":true}] + ] + }, + "uniA743": { + "advanceWidth": 509, + "contours": [ + [{"x":223,"y":108,"on":true},{"x":291,"y":156,"on":true},{"x":236,"y":246,"on":true},{"x":177,"y":190,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":177,"y":760,"on":true},{"x":177,"y":386,"on":true},{"x":177,"y":362,"on":false},{"x":174,"y":307,"on":false},{"x":172,"y":282,"on":true},{"x":175,"y":282,"on":true},{"x":186,"y":298,"on":false},{"x":216,"y":341,"on":false},{"x":229,"y":357,"on":true},{"x":377,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":305,"y":315,"on":true},{"x":370,"y":212,"on":true},{"x":451,"y":270,"on":true},{"x":489,"y":217,"on":true},{"x":405,"y":157,"on":true},{"x":504,"y":0,"on":true},{"x":386,"y":0,"on":true},{"x":325,"y":100,"on":true},{"x":261,"y":54,"on":true}] + ] + }, + "uniA744": { + "advanceWidth": 571, + "contours": [ + [{"x":240,"y":144,"on":true},{"x":327,"y":204,"on":true},{"x":253,"y":325,"on":true},{"x":191,"y":268,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":549,"on":true},{"x":14,"y":549,"on":true},{"x":14,"y":636,"on":true},{"x":86,"y":636,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":636,"on":true},{"x":272,"y":636,"on":true},{"x":272,"y":549,"on":true},{"x":191,"y":549,"on":true},{"x":191,"y":368,"on":true},{"x":209,"y":393,"on":false},{"x":252,"y":449,"on":false},{"x":276,"y":481,"on":true},{"x":448,"y":714,"on":true},{"x":565,"y":714,"on":true},{"x":328,"y":400,"on":true},{"x":412,"y":263,"on":true},{"x":503,"y":326,"on":true},{"x":545,"y":264,"on":true},{"x":451,"y":199,"on":true},{"x":573,"y":0,"on":true},{"x":453,"y":0,"on":true},{"x":366,"y":141,"on":true},{"x":281,"y":82,"on":true}] + ] + }, + "uniA745": { + "advanceWidth": 509, + "contours": [ + [{"x":223,"y":108,"on":true},{"x":291,"y":156,"on":true},{"x":236,"y":246,"on":true},{"x":177,"y":190,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":601,"on":true},{"x":7,"y":601,"on":true},{"x":7,"y":674,"on":true},{"x":75,"y":674,"on":true},{"x":75,"y":760,"on":true},{"x":177,"y":760,"on":true},{"x":177,"y":674,"on":true},{"x":332,"y":674,"on":true},{"x":332,"y":601,"on":true},{"x":177,"y":601,"on":true},{"x":177,"y":386,"on":true},{"x":177,"y":362,"on":false},{"x":174,"y":307,"on":false},{"x":172,"y":282,"on":true},{"x":175,"y":282,"on":true},{"x":186,"y":298,"on":false},{"x":216,"y":341,"on":false},{"x":229,"y":357,"on":true},{"x":377,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":305,"y":315,"on":true},{"x":370,"y":212,"on":true},{"x":451,"y":270,"on":true},{"x":489,"y":217,"on":true},{"x":405,"y":157,"on":true},{"x":504,"y":0,"on":true},{"x":386,"y":0,"on":true},{"x":325,"y":100,"on":true},{"x":261,"y":54,"on":true}] + ] + }, + "uniA746": { + "advanceWidth": 580, + "contours": [ + [{"x":191,"y":714,"on":true},{"x":191,"y":463,"on":true},{"x":290,"y":500,"on":true},{"x":290,"y":91,"on":true},{"x":556,"y":91,"on":true},{"x":556,"y":0,"on":true},{"x":185,"y":0,"on":true},{"x":185,"y":403,"on":true},{"x":86,"y":366,"on":true},{"x":86,"y":714,"on":true}] + ] + }, + "uniA747": { + "advanceWidth": 345, + "contours": [ + [{"x":178,"y":760,"on":true},{"x":178,"y":451,"on":true},{"x":270,"y":483,"on":true},{"x":270,"y":0,"on":true},{"x":168,"y":0,"on":true},{"x":168,"y":391,"on":true},{"x":75,"y":359,"on":true},{"x":75,"y":760,"on":true}] + ] + }, + "uniA748": { + "advanceWidth": 479, + "contours": [ + [{"x":86,"y":0,"on":true},{"x":86,"y":547,"on":true},{"x":19,"y":547,"on":true},{"x":19,"y":632,"on":true},{"x":86,"y":632,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":632,"on":true},{"x":290,"y":632,"on":true},{"x":290,"y":547,"on":true},{"x":191,"y":547,"on":true},{"x":191,"y":92,"on":true},{"x":456,"y":92,"on":true},{"x":456,"y":0,"on":true}] + ] + }, + "uniA749": { + "advanceWidth": 253, + "contours": [ + [{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":597,"on":true},{"x":13,"y":597,"on":true},{"x":13,"y":670,"on":true},{"x":75,"y":670,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":670,"on":true},{"x":239,"y":670,"on":true},{"x":239,"y":597,"on":true},{"x":178,"y":597,"on":true}] + ] + }, + "uniA74A": { + "advanceWidth": 704, + "contours": [ + [{"x":0,"y":325,"on":true},{"x":0,"y":405,"on":true},{"x":57,"y":405,"on":true},{"x":67,"y":555,"on":false},{"x":213,"y":725,"on":false},{"x":353,"y":725,"on":true},{"x":445,"y":725,"on":false},{"x":571,"y":645,"on":false},{"x":640,"y":501,"on":false},{"x":646,"y":405,"on":true},{"x":702,"y":405,"on":true},{"x":702,"y":325,"on":true},{"x":647,"y":325,"on":true},{"x":643,"y":225,"on":false},{"x":575,"y":74,"on":false},{"x":447,"y":-10,"on":false},{"x":352,"y":-10,"on":true},{"x":255,"y":-10,"on":false},{"x":128,"y":75,"on":false},{"x":61,"y":226,"on":false},{"x":57,"y":325,"on":true}], + [{"x":353,"y":633,"on":true},{"x":266,"y":633,"on":false},{"x":175,"y":515,"on":false},{"x":168,"y":405,"on":true},{"x":536,"y":405,"on":true},{"x":529,"y":515,"on":false},{"x":439,"y":633,"on":false}], + [{"x":352,"y":82,"on":true},{"x":442,"y":82,"on":false},{"x":532,"y":208,"on":false},{"x":537,"y":325,"on":true},{"x":167,"y":325,"on":true},{"x":172,"y":208,"on":false},{"x":263,"y":82,"on":false}] + ] + }, + "uniA74B": { + "advanceWidth": 581, + "contours": [ + [{"x":0,"y":239,"on":true},{"x":0,"y":315,"on":true},{"x":65,"y":315,"on":true},{"x":75,"y":427,"on":false},{"x":192,"y":549,"on":false},{"x":293,"y":549,"on":true},{"x":386,"y":549,"on":false},{"x":508,"y":428,"on":false},{"x":519,"y":315,"on":true},{"x":581,"y":315,"on":true},{"x":581,"y":239,"on":true},{"x":520,"y":239,"on":true},{"x":513,"y":123,"on":false},{"x":394,"y":-10,"on":false},{"x":290,"y":-10,"on":true},{"x":193,"y":-10,"on":false},{"x":72,"y":123,"on":false},{"x":64,"y":239,"on":true}], + [{"x":292,"y":464,"on":true},{"x":235,"y":464,"on":false},{"x":175,"y":388,"on":false},{"x":169,"y":315,"on":true},{"x":415,"y":315,"on":true},{"x":409,"y":388,"on":false},{"x":348,"y":464,"on":false}], + [{"x":292,"y":75,"on":true},{"x":351,"y":75,"on":false},{"x":411,"y":160,"on":false},{"x":416,"y":239,"on":true},{"x":168,"y":239,"on":true},{"x":172,"y":160,"on":false},{"x":232,"y":75,"on":false}] + ] + }, + "uniA74C": { + "advanceWidth": 855, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"degree","x":496,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA74D": { + "advanceWidth": 653, + "contours": [ + [{"x":274,"y":-10,"on":true},{"x":204,"y":-10,"on":false},{"x":103,"y":58,"on":false},{"x":47,"y":184,"on":false},{"x":47,"y":271,"on":true},{"x":47,"y":401,"on":false},{"x":164,"y":550,"on":false},{"x":277,"y":550,"on":true},{"x":326,"y":550,"on":false},{"x":406,"y":516,"on":false},{"x":434,"y":486,"on":true},{"x":449,"y":514,"on":false},{"x":506,"y":550,"on":false},{"x":546,"y":550,"on":true},{"x":608,"y":550,"on":false},{"x":680,"y":473,"on":false},{"x":680,"y":414,"on":true},{"x":680,"y":378,"on":false},{"x":648,"y":316,"on":false},{"x":590,"y":279,"on":false},{"x":549,"y":279,"on":true},{"x":523,"y":279,"on":false},{"x":502,"y":288,"on":true},{"x":503,"y":280,"on":false},{"x":504,"y":265,"on":false},{"x":504,"y":256,"on":true},{"x":504,"y":178,"on":false},{"x":451,"y":58,"on":false},{"x":348,"y":-10,"on":false}], + [{"x":547,"y":342,"on":true},{"x":576,"y":342,"on":false},{"x":611,"y":379,"on":false},{"x":611,"y":412,"on":true},{"x":611,"y":441,"on":false},{"x":576,"y":479,"on":false},{"x":548,"y":479,"on":true},{"x":519,"y":479,"on":false},{"x":486,"y":440,"on":false},{"x":486,"y":412,"on":true},{"x":486,"y":381,"on":false},{"x":519,"y":342,"on":false}], + [{"x":276,"y":76,"on":true},{"x":340,"y":76,"on":false},{"x":399,"y":177,"on":false},{"x":399,"y":271,"on":true},{"x":399,"y":364,"on":false},{"x":340,"y":464,"on":false},{"x":275,"y":464,"on":true},{"x":152,"y":464,"on":false},{"x":152,"y":270,"on":true},{"x":152,"y":178,"on":false},{"x":212,"y":76,"on":false}] + ] + }, + "uniA74E": { + "advanceWidth": 1188, + "references": [ + {"glyph":"O","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"O","x":484,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA74F": { + "advanceWidth": 909, + "references": [ + {"glyph":"o","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"o","x":355,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA750": { + "advanceWidth": 555, + "contours": [ + [{"x":16,"y":107,"on":true},{"x":16,"y":191,"on":true},{"x":86,"y":191,"on":true},{"x":86,"y":714,"on":true},{"x":267,"y":714,"on":true},{"x":394,"y":714,"on":false},{"x":513,"y":604,"on":false},{"x":513,"y":500,"on":true},{"x":513,"y":436,"on":false},{"x":462,"y":332,"on":false},{"x":349,"y":271,"on":false},{"x":256,"y":271,"on":true},{"x":191,"y":271,"on":true},{"x":191,"y":191,"on":true},{"x":295,"y":191,"on":true},{"x":295,"y":107,"on":true},{"x":191,"y":107,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":107,"on":true}], + [{"x":260,"y":625,"on":true},{"x":191,"y":625,"on":true},{"x":191,"y":360,"on":true},{"x":245,"y":360,"on":true},{"x":325,"y":360,"on":false},{"x":405,"y":424,"on":false},{"x":405,"y":497,"on":true},{"x":405,"y":562,"on":false},{"x":335,"y":625,"on":false}] + ] + }, + "uniA751": { + "advanceWidth": 566, + "contours": [ + [{"x":2,"y":-154,"on":true},{"x":2,"y":-80,"on":true},{"x":75,"y":-80,"on":true},{"x":75,"y":539,"on":true},{"x":159,"y":539,"on":true},{"x":172,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":504,"on":false},{"x":271,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":414,"y":549,"on":false},{"x":519,"y":409,"on":false},{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":413,"y":-10,"on":false},{"x":324,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":199,"y":34,"on":false},{"x":178,"y":68,"on":true},{"x":172,"y":68,"on":true},{"x":174,"y":48,"on":false},{"x":178,"y":2,"on":false},{"x":178,"y":-15,"on":true},{"x":178,"y":-80,"on":true},{"x":347,"y":-80,"on":true},{"x":347,"y":-154,"on":true},{"x":178,"y":-154,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":-154,"on":true}], + [{"x":299,"y":464,"on":true},{"x":234,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":287,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":173,"on":false},{"x":232,"y":76,"on":false},{"x":300,"y":76,"on":true},{"x":358,"y":76,"on":false},{"x":414,"y":179,"on":false},{"x":414,"y":271,"on":true},{"x":414,"y":363,"on":false},{"x":359,"y":464,"on":false}] + ] + }, + "uniA752": { + "advanceWidth": 647, + "contours": [ + [{"x":359,"y":714,"on":true},{"x":486,"y":714,"on":false},{"x":605,"y":604,"on":false},{"x":605,"y":500,"on":true},{"x":605,"y":436,"on":false},{"x":554,"y":332,"on":false},{"x":441,"y":271,"on":false},{"x":348,"y":271,"on":true},{"x":283,"y":271,"on":true},{"x":283,"y":0,"on":true},{"x":178,"y":0,"on":true},{"x":178,"y":271,"on":true},{"x":168,"y":271,"on":true},{"x":129,"y":271,"on":false},{"x":93,"y":232,"on":false},{"x":93,"y":204,"on":true},{"x":93,"y":187,"on":false},{"x":100,"y":160,"on":false},{"x":103,"y":153,"on":true},{"x":16,"y":153,"on":true},{"x":12,"y":162,"on":false},{"x":5,"y":192,"on":false},{"x":5,"y":210,"on":true},{"x":5,"y":252,"on":false},{"x":38,"y":319,"on":false},{"x":110,"y":359,"on":false},{"x":170,"y":359,"on":true},{"x":178,"y":359,"on":true},{"x":178,"y":714,"on":true}], + [{"x":352,"y":625,"on":true},{"x":283,"y":625,"on":true},{"x":283,"y":360,"on":true},{"x":337,"y":360,"on":true},{"x":417,"y":360,"on":false},{"x":497,"y":424,"on":false},{"x":497,"y":497,"on":true},{"x":497,"y":562,"on":false},{"x":427,"y":625,"on":false}] + ] + }, + "uniA753": { + "advanceWidth": 672, + "contours": [ + [{"x":432,"y":550,"on":true},{"x":523,"y":550,"on":false},{"x":625,"y":408,"on":false},{"x":625,"y":270,"on":true},{"x":625,"y":141,"on":false},{"x":511,"y":-10,"on":false},{"x":409,"y":-10,"on":true},{"x":370,"y":-10,"on":false},{"x":308,"y":10,"on":false},{"x":282,"y":21,"on":true},{"x":284,"y":-8,"on":false},{"x":284,"y":-51,"on":false},{"x":284,"y":-73,"on":true},{"x":284,"y":-240,"on":true},{"x":182,"y":-240,"on":true},{"x":182,"y":48,"on":true},{"x":166,"y":50,"on":false},{"x":150,"y":50,"on":true},{"x":119,"y":50,"on":false},{"x":90,"y":18,"on":false},{"x":90,"y":-8,"on":true},{"x":90,"y":-24,"on":false},{"x":96,"y":-50,"on":false},{"x":100,"y":-60,"on":true},{"x":15,"y":-60,"on":true},{"x":10,"y":-49,"on":false},{"x":3,"y":-18,"on":false},{"x":3,"y":1,"on":true},{"x":3,"y":58,"on":false},{"x":71,"y":134,"on":false},{"x":147,"y":134,"on":true},{"x":156,"y":134,"on":false},{"x":174,"y":133,"on":false},{"x":182,"y":131,"on":true},{"x":182,"y":540,"on":true},{"x":266,"y":540,"on":true},{"x":280,"y":467,"on":true},{"x":285,"y":467,"on":true},{"x":309,"y":507,"on":false},{"x":381,"y":550,"on":false}], + [{"x":405,"y":464,"on":true},{"x":340,"y":464,"on":false},{"x":284,"y":376,"on":false},{"x":284,"y":286,"on":true},{"x":284,"y":107,"on":true},{"x":301,"y":98,"on":false},{"x":364,"y":76,"on":false},{"x":397,"y":76,"on":true},{"x":520,"y":76,"on":false},{"x":520,"y":270,"on":true},{"x":520,"y":464,"on":false}] + ] + }, + "uniA754": { + "advanceWidth": 790, + "contours": [ + [{"x":295,"y":271,"on":true},{"x":204,"y":271,"on":false},{"x":112,"y":373,"on":false},{"x":112,"y":462,"on":true},{"x":112,"y":566,"on":true},{"x":112,"y":636,"on":false},{"x":58,"y":636,"on":true},{"x":44,"y":636,"on":false},{"x":22,"y":632,"on":false},{"x":11,"y":629,"on":true},{"x":11,"y":712,"on":true},{"x":22,"y":716,"on":false},{"x":57,"y":724,"on":false},{"x":78,"y":724,"on":true},{"x":149,"y":724,"on":false},{"x":216,"y":648,"on":false},{"x":216,"y":572,"on":true},{"x":216,"y":467,"on":true},{"x":216,"y":409,"on":false},{"x":260,"y":359,"on":false},{"x":308,"y":359,"on":true},{"x":321,"y":359,"on":true},{"x":321,"y":714,"on":true},{"x":502,"y":714,"on":true},{"x":630,"y":714,"on":false},{"x":748,"y":604,"on":false},{"x":748,"y":500,"on":true},{"x":748,"y":436,"on":false},{"x":697,"y":332,"on":false},{"x":584,"y":271,"on":false},{"x":491,"y":271,"on":true},{"x":426,"y":271,"on":true},{"x":426,"y":0,"on":true},{"x":321,"y":0,"on":true},{"x":321,"y":271,"on":true}], + [{"x":495,"y":625,"on":true},{"x":426,"y":625,"on":true},{"x":426,"y":360,"on":true},{"x":480,"y":360,"on":true},{"x":560,"y":360,"on":false},{"x":640,"y":424,"on":false},{"x":640,"y":497,"on":true},{"x":640,"y":562,"on":false},{"x":570,"y":625,"on":false}] + ] + }, + "uniA755": { + "advanceWidth": 812, + "contours": [ + [{"x":262,"y":18,"on":true},{"x":176,"y":52,"on":false},{"x":105,"y":168,"on":false},{"x":105,"y":266,"on":true},{"x":105,"y":395,"on":true},{"x":105,"y":465,"on":false},{"x":53,"y":465,"on":true},{"x":39,"y":465,"on":false},{"x":14,"y":460,"on":false},{"x":4,"y":457,"on":true},{"x":4,"y":538,"on":true},{"x":15,"y":542,"on":false},{"x":51,"y":550,"on":false},{"x":73,"y":550,"on":true},{"x":144,"y":550,"on":false},{"x":207,"y":476,"on":false},{"x":207,"y":399,"on":true},{"x":207,"y":265,"on":true},{"x":207,"y":194,"on":false},{"x":252,"y":116,"on":false},{"x":306,"y":97,"on":true},{"x":313,"y":94,"on":false},{"x":321,"y":92,"on":true},{"x":321,"y":540,"on":true},{"x":405,"y":540,"on":true},{"x":420,"y":467,"on":true},{"x":425,"y":467,"on":true},{"x":448,"y":506,"on":false},{"x":520,"y":550,"on":false},{"x":572,"y":550,"on":true},{"x":663,"y":550,"on":false},{"x":764,"y":414,"on":false},{"x":764,"y":280,"on":true},{"x":764,"y":146,"on":false},{"x":620,"y":-10,"on":false},{"x":472,"y":-10,"on":true},{"x":447,"y":-10,"on":false},{"x":423,"y":-9,"on":true},{"x":423,"y":-240,"on":true},{"x":321,"y":-240,"on":true},{"x":321,"y":1,"on":true},{"x":285,"y":8,"on":false}], + [{"x":423,"y":286,"on":true},{"x":423,"y":77,"on":true},{"x":437,"y":77,"on":false},{"x":463,"y":76,"on":false},{"x":475,"y":76,"on":true},{"x":576,"y":76,"on":false},{"x":659,"y":184,"on":false},{"x":659,"y":280,"on":true},{"x":659,"y":464,"on":false},{"x":545,"y":464,"on":true},{"x":479,"y":464,"on":false},{"x":423,"y":376,"on":false}] + ] + }, + "uniA756": { + "advanceWidth": 704, + "contours": [ + [{"x":314,"y":-104,"on":true},{"x":411,"y":-66,"on":true},{"x":369,"y":-9,"on":true},{"x":365,"y":-9,"on":false},{"x":354,"y":-10,"on":false},{"x":350,"y":-10,"on":true},{"x":248,"y":-10,"on":false},{"x":118,"y":85,"on":false},{"x":56,"y":252,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":203,"y":725,"on":false},{"x":353,"y":725,"on":true},{"x":498,"y":725,"on":false},{"x":648,"y":530,"on":false},{"x":648,"y":358,"on":true},{"x":648,"y":228,"on":false},{"x":560,"y":49,"on":false},{"x":475,"y":13,"on":true},{"x":508,"y":-27,"on":true},{"x":629,"y":21,"on":true},{"x":656,"y":-44,"on":true},{"x":554,"y":-85,"on":true},{"x":624,"y":-170,"on":true},{"x":488,"y":-170,"on":true},{"x":454,"y":-124,"on":true},{"x":340,"y":-170,"on":true}], + [{"x":166,"y":358,"on":true},{"x":166,"y":226,"on":false},{"x":257,"y":82,"on":false},{"x":352,"y":82,"on":true},{"x":448,"y":82,"on":false},{"x":538,"y":225,"on":false},{"x":538,"y":358,"on":true},{"x":538,"y":490,"on":false},{"x":448,"y":633,"on":false},{"x":353,"y":633,"on":true},{"x":257,"y":633,"on":false},{"x":166,"y":490,"on":false}] + ] + }, + "uniA757": { + "advanceWidth": 566, + "contours": [ + [{"x":217,"y":-153,"on":true},{"x":217,"y":-80,"on":true},{"x":389,"y":-80,"on":true},{"x":389,"y":-15,"on":true},{"x":389,"y":3,"on":false},{"x":391,"y":50,"on":false},{"x":394,"y":73,"on":true},{"x":389,"y":73,"on":true},{"x":366,"y":36,"on":false},{"x":294,"y":-10,"on":false},{"x":240,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":407,"on":false},{"x":156,"y":549,"on":false},{"x":244,"y":549,"on":true},{"x":297,"y":549,"on":false},{"x":368,"y":506,"on":false},{"x":390,"y":468,"on":true},{"x":395,"y":468,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":-80,"on":true},{"x":565,"y":-80,"on":true},{"x":565,"y":-153,"on":true},{"x":491,"y":-153,"on":true},{"x":491,"y":-240,"on":true},{"x":389,"y":-240,"on":true},{"x":389,"y":-153,"on":true}], + [{"x":269,"y":75,"on":true},{"x":334,"y":75,"on":false},{"x":390,"y":161,"on":false},{"x":391,"y":249,"on":true},{"x":391,"y":269,"on":true},{"x":391,"y":366,"on":false},{"x":335,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":208,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":266,"on":true},{"x":152,"y":75,"on":false}] + ] + }, + "uniA758": { + "advanceWidth": 871, + "contours": [ + [{"x":648,"y":358,"on":true},{"x":648,"y":228,"on":false},{"x":560,"y":49,"on":false},{"x":475,"y":13,"on":true},{"x":506,"y":-26,"on":true},{"x":731,"y":119,"on":true},{"x":777,"y":148,"on":false},{"x":811,"y":205,"on":false},{"x":811,"y":238,"on":true},{"x":811,"y":270,"on":false},{"x":776,"y":312,"on":false},{"x":739,"y":312,"on":true},{"x":739,"y":370,"on":true},{"x":801,"y":370,"on":false},{"x":872,"y":298,"on":false},{"x":872,"y":243,"on":true},{"x":872,"y":182,"on":false},{"x":817,"y":106,"on":false},{"x":761,"y":70,"on":true},{"x":542,"y":-70,"on":true},{"x":624,"y":-170,"on":true},{"x":488,"y":-170,"on":true},{"x":455,"y":-125,"on":true},{"x":343,"y":-197,"on":true},{"x":313,"y":-150,"on":true},{"x":422,"y":-80,"on":true},{"x":369,"y":-9,"on":true},{"x":365,"y":-9,"on":false},{"x":354,"y":-10,"on":false},{"x":350,"y":-10,"on":true},{"x":248,"y":-10,"on":false},{"x":118,"y":85,"on":false},{"x":56,"y":252,"on":false},{"x":56,"y":359,"on":true},{"x":56,"y":530,"on":false},{"x":203,"y":725,"on":false},{"x":353,"y":725,"on":true},{"x":498,"y":725,"on":false},{"x":648,"y":530,"on":false}], + [{"x":166,"y":358,"on":true},{"x":166,"y":226,"on":false},{"x":257,"y":82,"on":false},{"x":352,"y":82,"on":true},{"x":448,"y":82,"on":false},{"x":538,"y":225,"on":false},{"x":538,"y":358,"on":true},{"x":538,"y":490,"on":false},{"x":448,"y":633,"on":false},{"x":353,"y":633,"on":true},{"x":257,"y":633,"on":false},{"x":166,"y":490,"on":false}] + ] + }, + "uniA759": { + "advanceWidth": 708, + "contours": [ + [{"x":389,"y":-240,"on":true},{"x":389,"y":-75,"on":true},{"x":212,"y":-242,"on":true},{"x":172,"y":-200,"on":true},{"x":389,"y":3,"on":true},{"x":390,"y":19,"on":false},{"x":392,"y":55,"on":false},{"x":394,"y":73,"on":true},{"x":389,"y":73,"on":true},{"x":366,"y":36,"on":false},{"x":294,"y":-10,"on":false},{"x":240,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":131,"on":false},{"x":48,"y":268,"on":true},{"x":48,"y":407,"on":false},{"x":156,"y":549,"on":false},{"x":244,"y":549,"on":true},{"x":297,"y":549,"on":false},{"x":368,"y":506,"on":false},{"x":390,"y":468,"on":true},{"x":395,"y":468,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":98,"on":true},{"x":579,"y":180,"on":true},{"x":619,"y":215,"on":false},{"x":648,"y":269,"on":false},{"x":648,"y":301,"on":true},{"x":648,"y":336,"on":false},{"x":606,"y":378,"on":false},{"x":566,"y":378,"on":true},{"x":566,"y":436,"on":true},{"x":631,"y":436,"on":false},{"x":708,"y":364,"on":false},{"x":708,"y":305,"on":true},{"x":708,"y":267,"on":false},{"x":688,"y":213,"on":false},{"x":647,"y":166,"on":false},{"x":617,"y":139,"on":true},{"x":491,"y":20,"on":true},{"x":491,"y":-240,"on":true}], + [{"x":269,"y":75,"on":true},{"x":334,"y":75,"on":false},{"x":390,"y":161,"on":false},{"x":391,"y":249,"on":true},{"x":391,"y":269,"on":true},{"x":391,"y":366,"on":false},{"x":335,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":208,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":266,"on":true},{"x":152,"y":75,"on":false}] + ] + }, + "uniA75A": { + "advanceWidth": 520, + "contours": [ + [{"x":34,"y":714,"on":true},{"x":203,"y":714,"on":true},{"x":333,"y":714,"on":false},{"x":457,"y":612,"on":false},{"x":457,"y":509,"on":true},{"x":457,"y":437,"on":false},{"x":389,"y":342,"on":false},{"x":328,"y":317,"on":true},{"x":510,"y":0,"on":true},{"x":393,"y":0,"on":true},{"x":236,"y":291,"on":true},{"x":123,"y":291,"on":true},{"x":123,"y":377,"on":true},{"x":208,"y":377,"on":true},{"x":350,"y":377,"on":false},{"x":350,"y":504,"on":true},{"x":350,"y":570,"on":false},{"x":274,"y":625,"on":false},{"x":199,"y":625,"on":true},{"x":128,"y":625,"on":true}] + ] + }, + "uniA75B": { + "advanceWidth": 440, + "contours": [ + [{"x":21,"y":540,"on":true},{"x":201,"y":540,"on":true},{"x":294,"y":540,"on":false},{"x":398,"y":462,"on":false},{"x":398,"y":383,"on":true},{"x":398,"y":324,"on":false},{"x":346,"y":251,"on":false},{"x":301,"y":232,"on":true},{"x":436,"y":0,"on":true},{"x":324,"y":0,"on":true},{"x":209,"y":214,"on":true},{"x":119,"y":214,"on":true},{"x":119,"y":290,"on":true},{"x":196,"y":290,"on":true},{"x":241,"y":290,"on":false},{"x":295,"y":332,"on":false},{"x":295,"y":378,"on":true},{"x":295,"y":422,"on":false},{"x":246,"y":462,"on":false},{"x":198,"y":462,"on":true},{"x":119,"y":462,"on":true}] + ] + }, + "uniA75C": { + "advanceWidth": 619, + "contours": [ + [{"x":521,"y":0,"on":true},{"x":420,"y":0,"on":true},{"x":420,"y":136,"on":true},{"x":49,"y":136,"on":true},{"x":49,"y":204,"on":true},{"x":199,"y":346,"on":true},{"x":240,"y":385,"on":false},{"x":299,"y":449,"on":false},{"x":331,"y":512,"on":false},{"x":331,"y":549,"on":true},{"x":331,"y":587,"on":false},{"x":284,"y":635,"on":false},{"x":241,"y":635,"on":true},{"x":173,"y":635,"on":false},{"x":109,"y":574,"on":true},{"x":53,"y":643,"on":true},{"x":93,"y":681,"on":false},{"x":187,"y":725,"on":false},{"x":251,"y":725,"on":true},{"x":337,"y":725,"on":false},{"x":435,"y":638,"on":false},{"x":435,"y":560,"on":true},{"x":435,"y":493,"on":false},{"x":368,"y":384,"on":false},{"x":303,"y":326,"on":true},{"x":196,"y":228,"on":true},{"x":196,"y":223,"on":true},{"x":420,"y":223,"on":true},{"x":420,"y":351,"on":true},{"x":521,"y":351,"on":true},{"x":521,"y":223,"on":true},{"x":604,"y":223,"on":true},{"x":604,"y":136,"on":true},{"x":521,"y":136,"on":true}] + ] + }, + "uniA75D": { + "advanceWidth": 581, + "contours": [ + [{"x":473,"y":-139,"on":true},{"x":382,"y":-139,"on":true},{"x":382,"y":0,"on":true},{"x":37,"y":0,"on":true},{"x":37,"y":75,"on":true},{"x":170,"y":207,"on":true},{"x":223,"y":260,"on":false},{"x":286,"y":340,"on":false},{"x":286,"y":388,"on":true},{"x":286,"y":420,"on":false},{"x":245,"y":460,"on":false},{"x":212,"y":460,"on":true},{"x":152,"y":460,"on":false},{"x":95,"y":404,"on":true},{"x":40,"y":472,"on":true},{"x":75,"y":506,"on":false},{"x":161,"y":550,"on":false},{"x":222,"y":550,"on":true},{"x":300,"y":550,"on":false},{"x":389,"y":465,"on":false},{"x":389,"y":397,"on":true},{"x":389,"y":335,"on":false},{"x":323,"y":237,"on":false},{"x":263,"y":181,"on":true},{"x":173,"y":91,"on":true},{"x":173,"y":86,"on":true},{"x":382,"y":86,"on":true},{"x":382,"y":221,"on":true},{"x":474,"y":221,"on":true},{"x":474,"y":86,"on":true},{"x":570,"y":86,"on":true},{"x":570,"y":0,"on":true},{"x":473,"y":0,"on":true}] + ] + }, + "uniA75E": { + "advanceWidth": 562, + "contours": [ + [{"x":294,"y":723,"on":true},{"x":353,"y":723,"on":true},{"x":230,"y":307,"on":true},{"x":243,"y":262,"on":true},{"x":254,"y":227,"on":false},{"x":274,"y":144,"on":false},{"x":279,"y":110,"on":true},{"x":284,"y":144,"on":false},{"x":304,"y":227,"on":false},{"x":315,"y":263,"on":true},{"x":450,"y":714,"on":true},{"x":559,"y":714,"on":true},{"x":336,"y":0,"on":true},{"x":222,"y":0,"on":true},{"x":179,"y":137,"on":true},{"x":136,"y":-9,"on":true},{"x":80,"y":-9,"on":true},{"x":150,"y":231,"on":true},{"x":0,"y":714,"on":true},{"x":109,"y":714,"on":true},{"x":201,"y":404,"on":true}] + ] + }, + "uniA75F": { + "advanceWidth": 475, + "contours": [ + [{"x":182,"y":0,"on":true},{"x":160,"y":67,"on":true},{"x":113,"y":-93,"on":true},{"x":61,"y":-93,"on":true},{"x":131,"y":151,"on":true},{"x":1,"y":539,"on":true},{"x":109,"y":539,"on":true},{"x":178,"y":312,"on":true},{"x":272,"y":639,"on":true},{"x":327,"y":639,"on":true},{"x":205,"y":222,"on":true},{"x":215,"y":192,"on":false},{"x":231,"y":124,"on":false},{"x":235,"y":97,"on":true},{"x":239,"y":97,"on":true},{"x":243,"y":120,"on":false},{"x":261,"y":188,"on":false},{"x":270,"y":220,"on":true},{"x":368,"y":539,"on":true},{"x":475,"y":539,"on":true},{"x":294,"y":0,"on":true}] + ] + }, + "uniA760": { + "advanceWidth": 862, + "contours": [ + [{"x":680,"y":-6,"on":true},{"x":649,"y":-129,"on":false},{"x":537,"y":-240,"on":false},{"x":445,"y":-240,"on":true},{"x":396,"y":-240,"on":false},{"x":357,"y":-226,"on":true},{"x":357,"y":-133,"on":true},{"x":376,"y":-141,"on":false},{"x":420,"y":-149,"on":false},{"x":440,"y":-149,"on":true},{"x":484,"y":-149,"on":false},{"x":535,"y":-104,"on":false},{"x":553,"y":-43,"on":true},{"x":566,"y":-3,"on":true},{"x":457,"y":439,"on":true},{"x":451,"y":464,"on":false},{"x":434,"y":550,"on":false},{"x":430,"y":585,"on":true},{"x":428,"y":566,"on":false},{"x":419,"y":515,"on":false},{"x":408,"y":462,"on":false},{"x":404,"y":443,"on":true},{"x":297,"y":0,"on":true},{"x":180,"y":0,"on":true},{"x":8,"y":714,"on":true},{"x":112,"y":714,"on":true},{"x":209,"y":296,"on":true},{"x":219,"y":250,"on":false},{"x":238,"y":150,"on":false},{"x":243,"y":113,"on":true},{"x":248,"y":153,"on":false},{"x":268,"y":256,"on":false},{"x":279,"y":299,"on":true},{"x":380,"y":714,"on":true},{"x":480,"y":714,"on":true},{"x":587,"y":282,"on":true},{"x":595,"y":247,"on":false},{"x":614,"y":152,"on":false},{"x":619,"y":113,"on":true},{"x":623,"y":149,"on":false},{"x":642,"y":244,"on":false},{"x":649,"y":279,"on":true},{"x":750,"y":714,"on":true},{"x":854,"y":714,"on":true}] + ] + }, + "uniA761": { + "advanceWidth": 737, + "contours": [ + [{"x":578,"y":-27,"on":true},{"x":556,"y":-111,"on":false},{"x":498,"y":-204,"on":false},{"x":426,"y":-240,"on":false},{"x":380,"y":-240,"on":true},{"x":361,"y":-240,"on":false},{"x":331,"y":-236,"on":false},{"x":317,"y":-232,"on":true},{"x":317,"y":-147,"on":true},{"x":328,"y":-149,"on":false},{"x":355,"y":-153,"on":false},{"x":370,"y":-153,"on":true},{"x":408,"y":-153,"on":false},{"x":456,"y":-104,"on":false},{"x":472,"y":-45,"on":true},{"x":481,"y":-8,"on":true},{"x":406,"y":281,"on":true},{"x":401,"y":300,"on":false},{"x":386,"y":365,"on":false},{"x":374,"y":426,"on":false},{"x":371,"y":441,"on":true},{"x":368,"y":441,"on":true},{"x":365,"y":426,"on":false},{"x":351,"y":364,"on":false},{"x":336,"y":298,"on":false},{"x":332,"y":278,"on":true},{"x":262,"y":0,"on":true},{"x":150,"y":0,"on":true},{"x":11,"y":540,"on":true},{"x":113,"y":540,"on":true},{"x":177,"y":277,"on":true},{"x":188,"y":232,"on":false},{"x":204,"y":136,"on":false},{"x":209,"y":102,"on":true},{"x":212,"y":102,"on":true},{"x":218,"y":141,"on":false},{"x":235,"y":234,"on":false},{"x":242,"y":263,"on":true},{"x":315,"y":540,"on":true},{"x":426,"y":540,"on":true},{"x":496,"y":265,"on":true},{"x":506,"y":230,"on":false},{"x":522,"y":136,"on":false},{"x":526,"y":102,"on":true},{"x":529,"y":102,"on":true},{"x":532,"y":124,"on":false},{"x":548,"y":214,"on":false},{"x":559,"y":260,"on":true},{"x":625,"y":540,"on":true},{"x":726,"y":540,"on":true}] + ] + }, + "uniA762": { + "advanceWidth": 500, + "contours": [ + [{"x":218,"y":399,"on":true},{"x":118,"y":399,"on":false},{"x":18,"y":498,"on":false},{"x":18,"y":588,"on":true},{"x":18,"y":676,"on":false},{"x":116,"y":770,"on":false},{"x":193,"y":770,"on":true},{"x":228,"y":770,"on":false},{"x":284,"y":758,"on":false},{"x":310,"y":747,"on":true},{"x":280,"y":676,"on":true},{"x":259,"y":684,"on":false},{"x":226,"y":694,"on":false},{"x":204,"y":694,"on":true},{"x":164,"y":694,"on":false},{"x":112,"y":640,"on":false},{"x":112,"y":592,"on":true},{"x":112,"y":536,"on":false},{"x":169,"y":478,"on":false},{"x":238,"y":478,"on":true},{"x":429,"y":478,"on":true},{"x":429,"y":412,"on":true},{"x":237,"y":201,"on":true},{"x":346,"y":195,"on":false},{"x":467,"y":89,"on":false},{"x":467,"y":-10,"on":true},{"x":467,"y":-114,"on":false},{"x":338,"y":-240,"on":false},{"x":210,"y":-240,"on":true},{"x":103,"y":-240,"on":false},{"x":24,"y":-202,"on":true},{"x":24,"y":-108,"on":true},{"x":66,"y":-130,"on":false},{"x":161,"y":-152,"on":false},{"x":206,"y":-152,"on":true},{"x":288,"y":-152,"on":false},{"x":362,"y":-69,"on":false},{"x":362,"y":-10,"on":true},{"x":362,"y":52,"on":false},{"x":275,"y":122,"on":false},{"x":177,"y":122,"on":true},{"x":120,"y":122,"on":true},{"x":120,"y":197,"on":true},{"x":305,"y":399,"on":true}] + ] + }, + "uniA763": { + "advanceWidth": 502, + "contours": [ + [{"x":218,"y":344,"on":true},{"x":124,"y":344,"on":false},{"x":23,"y":432,"on":false},{"x":23,"y":521,"on":true},{"x":23,"y":607,"on":false},{"x":118,"y":702,"on":false},{"x":197,"y":702,"on":true},{"x":233,"y":702,"on":false},{"x":290,"y":689,"on":false},{"x":315,"y":679,"on":true},{"x":285,"y":608,"on":true},{"x":265,"y":617,"on":false},{"x":231,"y":625,"on":false},{"x":208,"y":625,"on":true},{"x":169,"y":625,"on":false},{"x":118,"y":573,"on":false},{"x":118,"y":525,"on":true},{"x":118,"y":470,"on":false},{"x":177,"y":423,"on":false},{"x":241,"y":423,"on":true},{"x":414,"y":423,"on":true},{"x":414,"y":355,"on":true},{"x":231,"y":162,"on":true},{"x":345,"y":159,"on":false},{"x":464,"y":56,"on":false},{"x":464,"y":-33,"on":true},{"x":464,"y":-127,"on":false},{"x":336,"y":-241,"on":false},{"x":212,"y":-240,"on":true},{"x":160,"y":-240,"on":false},{"x":70,"y":-222,"on":false},{"x":35,"y":-205,"on":true},{"x":35,"y":-113,"on":true},{"x":72,"y":-132,"on":false},{"x":161,"y":-152,"on":false},{"x":203,"y":-152,"on":true},{"x":283,"y":-152,"on":false},{"x":357,"y":-88,"on":false},{"x":357,"y":-30,"on":true},{"x":357,"y":25,"on":false},{"x":275,"y":86,"on":false},{"x":186,"y":86,"on":true},{"x":121,"y":86,"on":true},{"x":121,"y":159,"on":true},{"x":293,"y":344,"on":true}] + ] + }, + "uniA764": { + "advanceWidth": 550, + "contours": [ + [{"x":273,"y":542,"on":true},{"x":394,"y":542,"on":false},{"x":510,"y":438,"on":false},{"x":510,"y":338,"on":true},{"x":510,"y":240,"on":false},{"x":390,"y":120,"on":false},{"x":264,"y":120,"on":true},{"x":191,"y":120,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":593,"on":true},{"x":8,"y":593,"on":true},{"x":8,"y":668,"on":true},{"x":86,"y":668,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":668,"on":true},{"x":293,"y":668,"on":true},{"x":293,"y":593,"on":true},{"x":191,"y":593,"on":true},{"x":191,"y":542,"on":true}], + [{"x":248,"y":203,"on":true},{"x":326,"y":203,"on":false},{"x":403,"y":264,"on":false},{"x":403,"y":336,"on":true},{"x":403,"y":399,"on":false},{"x":334,"y":457,"on":false},{"x":260,"y":457,"on":true},{"x":191,"y":457,"on":true},{"x":191,"y":203,"on":true}] + ] + }, + "uniA765": { + "advanceWidth": 566, + "contours": [ + [{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":414,"y":-10,"on":false},{"x":326,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":199,"y":33,"on":false},{"x":178,"y":67,"on":true},{"x":172,"y":67,"on":true},{"x":174,"y":50,"on":false},{"x":178,"y":3,"on":false},{"x":178,"y":-13,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":604,"on":true},{"x":7,"y":604,"on":true},{"x":7,"y":677,"on":true},{"x":75,"y":677,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":677,"on":true},{"x":347,"y":677,"on":true},{"x":347,"y":604,"on":true},{"x":178,"y":604,"on":true},{"x":178,"y":548,"on":true},{"x":178,"y":529,"on":false},{"x":176,"y":484,"on":false},{"x":174,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":201,"y":505,"on":false},{"x":271,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":413,"y":549,"on":false},{"x":519,"y":406,"on":false}], + [{"x":414,"y":271,"on":true},{"x":414,"y":368,"on":false},{"x":358,"y":464,"on":false},{"x":299,"y":464,"on":true},{"x":234,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":288,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":173,"on":false},{"x":232,"y":76,"on":false},{"x":300,"y":76,"on":true},{"x":361,"y":76,"on":false},{"x":414,"y":181,"on":false}] + ] + }, + "uniA766": { + "advanceWidth": 550, + "contours": [ + [{"x":191,"y":191,"on":true},{"x":191,"y":137,"on":true},{"x":293,"y":137,"on":true},{"x":293,"y":62,"on":true},{"x":191,"y":62,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":62,"on":true},{"x":8,"y":62,"on":true},{"x":8,"y":137,"on":true},{"x":86,"y":137,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":613,"on":true},{"x":273,"y":613,"on":true},{"x":394,"y":613,"on":false},{"x":510,"y":507,"on":false},{"x":510,"y":409,"on":true},{"x":510,"y":310,"on":false},{"x":390,"y":191,"on":false},{"x":264,"y":191,"on":true}], + [{"x":191,"y":275,"on":true},{"x":248,"y":275,"on":true},{"x":326,"y":275,"on":false},{"x":403,"y":335,"on":false},{"x":403,"y":407,"on":true},{"x":403,"y":469,"on":false},{"x":334,"y":528,"on":false},{"x":260,"y":528,"on":true},{"x":191,"y":528,"on":true}] + ] + }, + "uniA767": { + "advanceWidth": 566, + "contours": [ + [{"x":347,"y":-85,"on":true},{"x":347,"y":-157,"on":true},{"x":178,"y":-157,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":-157,"on":true},{"x":7,"y":-157,"on":true},{"x":7,"y":-85,"on":true},{"x":75,"y":-85,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":548,"on":true},{"x":178,"y":529,"on":false},{"x":176,"y":484,"on":false},{"x":174,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":201,"y":505,"on":false},{"x":271,"y":549,"on":false},{"x":324,"y":549,"on":true},{"x":413,"y":549,"on":false},{"x":519,"y":406,"on":false},{"x":519,"y":270,"on":true},{"x":519,"y":134,"on":false},{"x":414,"y":-10,"on":false},{"x":326,"y":-10,"on":true},{"x":272,"y":-10,"on":false},{"x":199,"y":33,"on":false},{"x":178,"y":67,"on":true},{"x":172,"y":67,"on":true},{"x":174,"y":50,"on":false},{"x":178,"y":3,"on":false},{"x":178,"y":-13,"on":true},{"x":178,"y":-85,"on":true}], + [{"x":414,"y":271,"on":true},{"x":414,"y":368,"on":false},{"x":358,"y":464,"on":false},{"x":299,"y":464,"on":true},{"x":234,"y":464,"on":false},{"x":179,"y":377,"on":false},{"x":178,"y":288,"on":true},{"x":178,"y":268,"on":true},{"x":178,"y":173,"on":false},{"x":232,"y":76,"on":false},{"x":300,"y":76,"on":true},{"x":361,"y":76,"on":false},{"x":414,"y":181,"on":false}] + ] + }, + "uniA768": { + "advanceWidth": 571, + "contours": [ + [{"x":218,"y":-155,"on":true},{"x":294,"y":-180,"on":true},{"x":294,"y":-240,"on":true},{"x":38,"y":-240,"on":true},{"x":38,"y":-180,"on":true},{"x":113,"y":-155,"on":true},{"x":113,"y":629,"on":true},{"x":38,"y":654,"on":true},{"x":38,"y":714,"on":true},{"x":292,"y":714,"on":true},{"x":292,"y":654,"on":true},{"x":218,"y":629,"on":true},{"x":218,"y":330,"on":true},{"x":218,"y":290,"on":false},{"x":212,"y":195,"on":false},{"x":208,"y":164,"on":true},{"x":213,"y":163,"on":true},{"x":226,"y":200,"on":false},{"x":263,"y":288,"on":false},{"x":283,"y":330,"on":true},{"x":457,"y":714,"on":true},{"x":574,"y":714,"on":true},{"x":218,"y":-7,"on":true}] + ] + }, + "uniA769": { + "advanceWidth": 492, + "contours": [ + [{"x":178,"y":-4,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":540,"on":true},{"x":178,"y":540,"on":true},{"x":178,"y":256,"on":true},{"x":178,"y":224,"on":false},{"x":176,"y":168,"on":false},{"x":172,"y":144,"on":true},{"x":176,"y":143,"on":true},{"x":181,"y":166,"on":false},{"x":200,"y":216,"on":false},{"x":214,"y":240,"on":true},{"x":376,"y":540,"on":true},{"x":491,"y":540,"on":true}] + ] + }, + "uniA76A": { + "advanceWidth": 513, + "contours": [ + [{"x":447,"y":548,"on":true},{"x":447,"y":478,"on":false},{"x":372,"y":388,"on":false},{"x":307,"y":375,"on":true},{"x":307,"y":372,"on":true},{"x":383,"y":361,"on":false},{"x":462,"y":272,"on":false},{"x":462,"y":199,"on":true},{"x":462,"y":102,"on":false},{"x":338,"y":-10,"on":false},{"x":223,"y":-10,"on":true},{"x":113,"y":-10,"on":false},{"x":39,"y":27,"on":true},{"x":39,"y":123,"on":true},{"x":74,"y":102,"on":false},{"x":165,"y":78,"on":false},{"x":205,"y":78,"on":true},{"x":278,"y":78,"on":false},{"x":355,"y":141,"on":false},{"x":355,"y":205,"on":true},{"x":355,"y":267,"on":false},{"x":267,"y":327,"on":false},{"x":183,"y":327,"on":true},{"x":116,"y":327,"on":true},{"x":116,"y":415,"on":true},{"x":182,"y":415,"on":true},{"x":268,"y":415,"on":false},{"x":342,"y":475,"on":false},{"x":342,"y":533,"on":true},{"x":342,"y":582,"on":false},{"x":280,"y":635,"on":false},{"x":228,"y":635,"on":true},{"x":186,"y":635,"on":false},{"x":115,"y":606,"on":false},{"x":83,"y":578,"on":true},{"x":42,"y":652,"on":true},{"x":85,"y":688,"on":false},{"x":184,"y":724,"on":false},{"x":248,"y":724,"on":true},{"x":340,"y":724,"on":false},{"x":447,"y":628,"on":false}] + ] + }, + "uniA76B": { + "advanceWidth": 476, + "contours": [ + [{"x":332,"y":-9,"on":true},{"x":332,"y":133,"on":false},{"x":160,"y":133,"on":true},{"x":100,"y":133,"on":true},{"x":100,"y":217,"on":true},{"x":159,"y":217,"on":true},{"x":236,"y":217,"on":false},{"x":318,"y":286,"on":false},{"x":318,"y":351,"on":true},{"x":318,"y":405,"on":false},{"x":258,"y":462,"on":false},{"x":206,"y":462,"on":true},{"x":168,"y":462,"on":false},{"x":101,"y":436,"on":false},{"x":67,"y":410,"on":true},{"x":28,"y":485,"on":true},{"x":70,"y":516,"on":false},{"x":164,"y":549,"on":false},{"x":223,"y":549,"on":true},{"x":306,"y":549,"on":false},{"x":416,"y":455,"on":false},{"x":416,"y":360,"on":true},{"x":416,"y":294,"on":false},{"x":353,"y":200,"on":false},{"x":292,"y":181,"on":true},{"x":292,"y":176,"on":true},{"x":360,"y":162,"on":false},{"x":436,"y":66,"on":false},{"x":436,"y":-10,"on":true},{"x":436,"y":-114,"on":false},{"x":311,"y":-240,"on":false},{"x":195,"y":-240,"on":true},{"x":142,"y":-240,"on":false},{"x":57,"y":-221,"on":false},{"x":18,"y":-202,"on":true},{"x":18,"y":-107,"on":true},{"x":58,"y":-130,"on":false},{"x":145,"y":-153,"on":false},{"x":185,"y":-153,"on":true},{"x":259,"y":-153,"on":false},{"x":332,"y":-74,"on":false}] + ] + }, + "uniA76C": { + "advanceWidth": 512, + "contours": [ + [{"x":23,"y":482,"on":true},{"x":151,"y":482,"on":true},{"x":151,"y":535,"on":true},{"x":151,"y":618,"on":false},{"x":240,"y":724,"on":false},{"x":326,"y":724,"on":true},{"x":403,"y":724,"on":false},{"x":490,"y":637,"on":false},{"x":490,"y":567,"on":true},{"x":490,"y":481,"on":false},{"x":393,"y":394,"on":false},{"x":306,"y":394,"on":true},{"x":257,"y":394,"on":true},{"x":257,"y":195,"on":true},{"x":256,"y":88,"on":false},{"x":164,"y":-10,"on":false},{"x":81,"y":-10,"on":true},{"x":61,"y":-10,"on":false},{"x":21,"y":-4,"on":false},{"x":9,"y":1,"on":true},{"x":9,"y":91,"on":true},{"x":22,"y":87,"on":false},{"x":52,"y":82,"on":false},{"x":69,"y":82,"on":true},{"x":110,"y":82,"on":false},{"x":151,"y":132,"on":false},{"x":151,"y":198,"on":true},{"x":151,"y":394,"on":true},{"x":23,"y":394,"on":true}], + [{"x":304,"y":482,"on":true},{"x":342,"y":482,"on":false},{"x":384,"y":524,"on":false},{"x":384,"y":565,"on":true},{"x":384,"y":595,"on":false},{"x":350,"y":636,"on":false},{"x":322,"y":636,"on":true},{"x":292,"y":636,"on":false},{"x":256,"y":587,"on":false},{"x":256,"y":533,"on":true},{"x":256,"y":482,"on":true}] + ] + }, + "uniA76D": { + "advanceWidth": 496, + "contours": [ + [{"x":242,"y":-62,"on":true},{"x":242,"y":-147,"on":false},{"x":164,"y":-240,"on":false},{"x":80,"y":-240,"on":true},{"x":60,"y":-240,"on":false},{"x":17,"y":-234,"on":false},{"x":4,"y":-229,"on":true},{"x":4,"y":-143,"on":true},{"x":32,"y":-152,"on":false},{"x":64,"y":-152,"on":true},{"x":101,"y":-152,"on":false},{"x":138,"y":-108,"on":false},{"x":138,"y":-53,"on":true},{"x":138,"y":426,"on":true},{"x":22,"y":426,"on":true},{"x":22,"y":512,"on":true},{"x":138,"y":512,"on":true},{"x":138,"y":566,"on":true},{"x":138,"y":646,"on":false},{"x":228,"y":751,"on":false},{"x":315,"y":751,"on":true},{"x":396,"y":751,"on":false},{"x":482,"y":664,"on":false},{"x":482,"y":593,"on":true},{"x":482,"y":515,"on":false},{"x":381,"y":426,"on":false},{"x":292,"y":426,"on":true},{"x":242,"y":426,"on":true}], + [{"x":290,"y":512,"on":true},{"x":331,"y":512,"on":false},{"x":378,"y":552,"on":false},{"x":378,"y":593,"on":true},{"x":378,"y":624,"on":false},{"x":344,"y":663,"on":false},{"x":313,"y":663,"on":true},{"x":281,"y":663,"on":false},{"x":242,"y":617,"on":false},{"x":242,"y":566,"on":true},{"x":242,"y":512,"on":true}] + ] + }, + "uniA76E": { + "advanceWidth": 550, + "contours": [ + [{"x":268,"y":635,"on":true},{"x":209,"y":635,"on":false},{"x":148,"y":556,"on":false},{"x":148,"y":483,"on":true},{"x":148,"y":344,"on":false},{"x":252,"y":344,"on":true},{"x":278,"y":344,"on":false},{"x":314,"y":355,"on":false},{"x":328,"y":363,"on":true},{"x":328,"y":279,"on":true},{"x":311,"y":269,"on":false},{"x":264,"y":258,"on":false},{"x":229,"y":258,"on":true},{"x":141,"y":258,"on":false},{"x":45,"y":379,"on":false},{"x":45,"y":481,"on":true},{"x":45,"y":552,"on":false},{"x":97,"y":662,"on":false},{"x":196,"y":724,"on":false},{"x":267,"y":724,"on":true},{"x":336,"y":724,"on":false},{"x":440,"y":659,"on":false},{"x":498,"y":516,"on":false},{"x":498,"y":398,"on":true},{"x":498,"y":200,"on":false},{"x":339,"y":-7,"on":false},{"x":165,"y":-8,"on":true},{"x":165,"y":80,"on":true},{"x":285,"y":80,"on":false},{"x":389,"y":229,"on":false},{"x":390,"y":390,"on":true},{"x":390,"y":518,"on":false},{"x":330,"y":635,"on":false}] + ] + }, + "uniA76F": { + "advanceWidth": 539, + "contours": [ + [{"x":264,"y":464,"on":true},{"x":149,"y":464,"on":false},{"x":149,"y":290,"on":true},{"x":149,"y":210,"on":false},{"x":204,"y":133,"on":false},{"x":254,"y":133,"on":true},{"x":277,"y":133,"on":false},{"x":312,"y":144,"on":false},{"x":325,"y":151,"on":true},{"x":325,"y":66,"on":true},{"x":309,"y":58,"on":false},{"x":264,"y":48,"on":false},{"x":230,"y":48,"on":true},{"x":142,"y":48,"on":false},{"x":45,"y":176,"on":false},{"x":45,"y":287,"on":true},{"x":45,"y":408,"on":false},{"x":159,"y":550,"on":false},{"x":265,"y":550,"on":true},{"x":372,"y":550,"on":false},{"x":491,"y":388,"on":false},{"x":491,"y":204,"on":true},{"x":491,"y":-22,"on":false},{"x":330,"y":-240,"on":false},{"x":164,"y":-240,"on":true},{"x":164,"y":-156,"on":true},{"x":240,"y":-156,"on":false},{"x":339,"y":-85,"on":false},{"x":386,"y":72,"on":false},{"x":386,"y":201,"on":true},{"x":387,"y":345,"on":false},{"x":325,"y":464,"on":false}] + ] + }, + "uniA770": { + "advanceWidth": 351, + "references": [ + {"glyph":"uniA76F","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uniA771": { + "advanceWidth": 737, + "contours": [ + [{"x":243,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":48,"y":132,"on":false},{"x":48,"y":269,"on":true},{"x":48,"y":406,"on":false},{"x":153,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":295,"y":549,"on":false},{"x":368,"y":505,"on":false},{"x":390,"y":470,"on":true},{"x":395,"y":470,"on":true},{"x":394,"y":488,"on":false},{"x":389,"y":536,"on":false},{"x":389,"y":555,"on":true},{"x":389,"y":760,"on":true},{"x":491,"y":760,"on":true},{"x":491,"y":84,"on":true},{"x":547,"y":84,"on":true},{"x":607,"y":241,"on":true},{"x":682,"y":241,"on":true},{"x":622,"y":84,"on":true},{"x":724,"y":84,"on":true},{"x":724,"y":0,"on":true},{"x":589,"y":0,"on":true},{"x":529,"y":-157,"on":true},{"x":454,"y":-157,"on":true},{"x":514,"y":0,"on":true},{"x":410,"y":0,"on":true},{"x":394,"y":69,"on":true},{"x":389,"y":69,"on":true},{"x":366,"y":34,"on":false},{"x":296,"y":-10,"on":false}], + [{"x":268,"y":74,"on":true},{"x":334,"y":74,"on":false},{"x":391,"y":162,"on":false},{"x":391,"y":250,"on":true},{"x":391,"y":271,"on":true},{"x":391,"y":366,"on":false},{"x":336,"y":463,"on":false},{"x":266,"y":463,"on":true},{"x":209,"y":463,"on":false},{"x":152,"y":360,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":210,"y":74,"on":false}] + ] + }, + "uniA772": { + "advanceWidth": 430, + "contours": [ + [{"x":300,"y":241,"on":true},{"x":375,"y":241,"on":true},{"x":315,"y":84,"on":true},{"x":416,"y":84,"on":true},{"x":416,"y":0,"on":true},{"x":282,"y":0,"on":true},{"x":222,"y":-157,"on":true},{"x":146,"y":-157,"on":true},{"x":207,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":84,"on":true},{"x":239,"y":84,"on":true}] + ] + }, + "uniA773": { + "advanceWidth": 1030, + "contours": [ + [{"x":622,"y":549,"on":true},{"x":704,"y":549,"on":false},{"x":786,"y":455,"on":false},{"x":786,"y":354,"on":true},{"x":786,"y":84,"on":true},{"x":839,"y":84,"on":true},{"x":900,"y":241,"on":true},{"x":975,"y":241,"on":true},{"x":915,"y":84,"on":true},{"x":1016,"y":84,"on":true},{"x":1016,"y":0,"on":true},{"x":882,"y":0,"on":true},{"x":822,"y":-157,"on":true},{"x":746,"y":-157,"on":true},{"x":807,"y":0,"on":true},{"x":684,"y":0,"on":true},{"x":684,"y":338,"on":true},{"x":684,"y":463,"on":false},{"x":597,"y":463,"on":true},{"x":534,"y":463,"on":false},{"x":481,"y":374,"on":false},{"x":481,"y":290,"on":true},{"x":481,"y":0,"on":true},{"x":380,"y":0,"on":true},{"x":380,"y":339,"on":true},{"x":380,"y":463,"on":false},{"x":292,"y":463,"on":true},{"x":226,"y":463,"on":false},{"x":178,"y":363,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":197,"y":509,"on":false},{"x":273,"y":549,"on":false},{"x":319,"y":549,"on":true},{"x":430,"y":549,"on":false},{"x":464,"y":464,"on":true},{"x":471,"y":464,"on":true},{"x":495,"y":508,"on":false},{"x":574,"y":549,"on":false}] + ] + }, + "uniA774": { + "advanceWidth": 746, + "contours": [ + [{"x":326,"y":549,"on":true},{"x":409,"y":549,"on":false},{"x":498,"y":456,"on":false},{"x":498,"y":356,"on":true},{"x":498,"y":84,"on":true},{"x":556,"y":84,"on":true},{"x":616,"y":241,"on":true},{"x":691,"y":241,"on":true},{"x":631,"y":84,"on":true},{"x":733,"y":84,"on":true},{"x":733,"y":0,"on":true},{"x":599,"y":0,"on":true},{"x":539,"y":-157,"on":true},{"x":463,"y":-157,"on":true},{"x":523,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":400,"on":false},{"x":352,"y":463,"on":false},{"x":303,"y":463,"on":true},{"x":232,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":198,"y":508,"on":false},{"x":280,"y":549,"on":false}] + ] + }, + "uniA775": { + "advanceWidth": 478, + "contours": [ + [{"x":363,"y":696,"on":true},{"x":434,"y":696,"on":true},{"x":392,"y":549,"on":true},{"x":409,"y":548,"on":false},{"x":446,"y":545,"on":false},{"x":464,"y":542,"on":true},{"x":453,"y":442,"on":true},{"x":433,"y":446,"on":false},{"x":385,"y":449,"on":false},{"x":363,"y":450,"on":true},{"x":313,"y":274,"on":true},{"x":242,"y":274,"on":true},{"x":291,"y":444,"on":true},{"x":238,"y":431,"on":false},{"x":178,"y":348,"on":false},{"x":178,"y":283,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true},{"x":155,"y":540,"on":true},{"x":169,"y":447,"on":true},{"x":174,"y":447,"on":true},{"x":198,"y":490,"on":false},{"x":272,"y":542,"on":false},{"x":321,"y":548,"on":true}] + ] + }, + "uniA776": { + "advanceWidth": 696, + "contours": [ + [{"x":77,"y":0,"on":true},{"x":77,"y":539,"on":true},{"x":285,"y":539,"on":true},{"x":370,"y":539,"on":false},{"x":469,"y":457,"on":false},{"x":469,"y":379,"on":true},{"x":469,"y":316,"on":false},{"x":407,"y":243,"on":false},{"x":363,"y":227,"on":true},{"x":449,"y":84,"on":true},{"x":506,"y":84,"on":true},{"x":567,"y":241,"on":true},{"x":641,"y":241,"on":true},{"x":581,"y":84,"on":true},{"x":683,"y":84,"on":true},{"x":683,"y":0,"on":true},{"x":549,"y":0,"on":true},{"x":489,"y":-157,"on":true},{"x":413,"y":-157,"on":true},{"x":474,"y":0,"on":true},{"x":385,"y":0,"on":true},{"x":267,"y":211,"on":true},{"x":179,"y":211,"on":true},{"x":179,"y":0,"on":true}], + [{"x":179,"y":289,"on":true},{"x":266,"y":289,"on":true},{"x":312,"y":289,"on":false},{"x":369,"y":330,"on":false},{"x":369,"y":377,"on":true},{"x":369,"y":414,"on":false},{"x":325,"y":460,"on":false},{"x":277,"y":460,"on":true},{"x":179,"y":460,"on":true}] + ] + }, + "uniA777": { + "advanceWidth": 712, + "contours": [ + [{"x":548,"y":754,"on":true},{"x":618,"y":754,"on":false},{"x":695,"y":675,"on":false},{"x":695,"y":612,"on":true},{"x":695,"y":538,"on":false},{"x":606,"y":458,"on":false},{"x":522,"y":458,"on":true},{"x":491,"y":458,"on":true},{"x":491,"y":0,"on":true},{"x":387,"y":0,"on":true},{"x":387,"y":458,"on":true},{"x":185,"y":458,"on":true},{"x":185,"y":159,"on":true},{"x":185,"y":76,"on":false},{"x":250,"y":76,"on":true},{"x":270,"y":76,"on":false},{"x":307,"y":83,"on":false},{"x":325,"y":89,"on":true},{"x":325,"y":9,"on":true},{"x":306,"y":1,"on":false},{"x":254,"y":-10,"on":false},{"x":223,"y":-10,"on":true},{"x":156,"y":-10,"on":false},{"x":83,"y":66,"on":false},{"x":83,"y":154,"on":true},{"x":83,"y":458,"on":true},{"x":17,"y":458,"on":true},{"x":17,"y":508,"on":true},{"x":89,"y":541,"on":true},{"x":120,"y":660,"on":true},{"x":185,"y":660,"on":true},{"x":185,"y":540,"on":true},{"x":387,"y":540,"on":true},{"x":387,"y":585,"on":true},{"x":387,"y":656,"on":false},{"x":467,"y":754,"on":false}], + [{"x":528,"y":540,"on":true},{"x":567,"y":540,"on":false},{"x":600,"y":580,"on":false},{"x":600,"y":612,"on":true},{"x":600,"y":637,"on":false},{"x":572,"y":673,"on":false},{"x":547,"y":673,"on":true},{"x":490,"y":673,"on":false},{"x":490,"y":589,"on":true},{"x":490,"y":540,"on":true}] + ] + }, + "uniA778": { + "advanceWidth": 476, + "contours": [ + [{"x":231,"y":724,"on":true},{"x":310,"y":724,"on":false},{"x":393,"y":637,"on":false},{"x":393,"y":566,"on":true},{"x":393,"y":511,"on":false},{"x":350,"y":430,"on":false},{"x":317,"y":389,"on":true},{"x":376,"y":344,"on":false},{"x":436,"y":252,"on":false},{"x":436,"y":187,"on":true},{"x":436,"y":103,"on":false},{"x":330,"y":0,"on":false},{"x":223,"y":0,"on":true},{"x":53,"y":0,"on":true},{"x":53,"y":89,"on":true},{"x":210,"y":89,"on":true},{"x":332,"y":89,"on":false},{"x":332,"y":189,"on":true},{"x":332,"y":232,"on":false},{"x":289,"y":291,"on":false},{"x":254,"y":320,"on":true},{"x":125,"y":175,"on":true},{"x":55,"y":241,"on":true},{"x":177,"y":380,"on":true},{"x":128,"y":418,"on":false},{"x":66,"y":504,"on":false},{"x":66,"y":565,"on":true},{"x":66,"y":636,"on":false},{"x":154,"y":724,"on":false}], + [{"x":230,"y":647,"on":true},{"x":197,"y":647,"on":false},{"x":162,"y":607,"on":false},{"x":162,"y":570,"on":true},{"x":162,"y":531,"on":false},{"x":203,"y":476,"on":false},{"x":239,"y":447,"on":true},{"x":270,"y":479,"on":false},{"x":296,"y":537,"on":false},{"x":296,"y":570,"on":true},{"x":296,"y":606,"on":false},{"x":262,"y":647,"on":false}] + ] + }, + "uniA779": { + "advanceWidth": 702, + "contours": [ + [{"x":354,"y":721,"on":true},{"x":454,"y":720,"on":false},{"x":583,"y":628,"on":false},{"x":646,"y":464,"on":false},{"x":646,"y":356,"on":true},{"x":646,"y":248,"on":false},{"x":583,"y":83,"on":false},{"x":452,"y":-10,"on":false},{"x":351,"y":-10,"on":true},{"x":250,"y":-10,"on":false},{"x":119,"y":84,"on":false},{"x":55,"y":249,"on":false},{"x":55,"y":357,"on":true},{"x":55,"y":539,"on":false},{"x":152,"y":630,"on":true},{"x":10,"y":630,"on":true},{"x":10,"y":721,"on":true}], + [{"x":351,"y":82,"on":true},{"x":447,"y":82,"on":false},{"x":536,"y":225,"on":false},{"x":536,"y":356,"on":true},{"x":536,"y":490,"on":false},{"x":445,"y":630,"on":false},{"x":352,"y":630,"on":true},{"x":257,"y":630,"on":false},{"x":166,"y":486,"on":false},{"x":166,"y":356,"on":true},{"x":166,"y":226,"on":false},{"x":256,"y":82,"on":false}] + ] + }, + "uniA77A": { + "advanceWidth": 551, + "contours": [ + [{"x":423,"y":476,"on":true},{"x":462,"y":437,"on":false},{"x":504,"y":334,"on":false},{"x":504,"y":261,"on":true},{"x":504,"y":136,"on":false},{"x":386,"y":-10,"on":false},{"x":274,"y":-10,"on":true},{"x":204,"y":-10,"on":false},{"x":103,"y":55,"on":false},{"x":47,"y":174,"on":false},{"x":47,"y":254,"on":true},{"x":47,"y":371,"on":false},{"x":156,"y":504,"on":false},{"x":260,"y":509,"on":true},{"x":204,"y":554,"on":false},{"x":111,"y":656,"on":false},{"x":76,"y":705,"on":true},{"x":151,"y":741,"on":true},{"x":174,"y":715,"on":false},{"x":230,"y":650,"on":false},{"x":274,"y":609,"on":true},{"x":314,"y":572,"on":false},{"x":395,"y":503,"on":false}], + [{"x":276,"y":72,"on":true},{"x":340,"y":72,"on":false},{"x":399,"y":169,"on":false},{"x":399,"y":256,"on":true},{"x":399,"y":338,"on":false},{"x":339,"y":434,"on":false},{"x":275,"y":434,"on":true},{"x":213,"y":434,"on":false},{"x":152,"y":342,"on":false},{"x":152,"y":253,"on":true},{"x":152,"y":169,"on":false},{"x":211,"y":72,"on":false}] + ] + }, + "uniA77B": { + "advanceWidth": 457, + "contours": [ + [{"x":368,"y":724,"on":true},{"x":383,"y":724,"on":false},{"x":417,"y":721,"on":false},{"x":430,"y":718,"on":true},{"x":415,"y":618,"on":true},{"x":402,"y":622,"on":false},{"x":367,"y":624,"on":false},{"x":351,"y":624,"on":true},{"x":277,"y":624,"on":false},{"x":187,"y":529,"on":false},{"x":187,"y":422,"on":true},{"x":187,"y":334,"on":true},{"x":396,"y":334,"on":true},{"x":396,"y":246,"on":true},{"x":187,"y":246,"on":true},{"x":187,"y":-206,"on":true},{"x":84,"y":-206,"on":true},{"x":84,"y":714,"on":true},{"x":166,"y":714,"on":true},{"x":183,"y":618,"on":true},{"x":189,"y":618,"on":true},{"x":212,"y":664,"on":false},{"x":302,"y":724,"on":false}] + ] + }, + "uniA77C": { + "advanceWidth": 386, + "contours": [ + [{"x":316,"y":550,"on":true},{"x":344,"y":550,"on":false},{"x":370,"y":544,"on":true},{"x":360,"y":444,"on":true},{"x":338,"y":450,"on":false},{"x":309,"y":450,"on":true},{"x":252,"y":450,"on":false},{"x":178,"y":360,"on":false},{"x":178,"y":283,"on":true},{"x":178,"y":78,"on":true},{"x":357,"y":78,"on":true},{"x":357,"y":0,"on":true},{"x":178,"y":0,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":540,"on":true},{"x":155,"y":540,"on":true},{"x":169,"y":447,"on":true},{"x":174,"y":447,"on":true},{"x":197,"y":493,"on":false},{"x":267,"y":550,"on":false}] + ] + }, + "uniA77D": { + "advanceWidth": 549, + "contours": [ + [{"x":332,"y":473,"on":true},{"x":414,"y":422,"on":false},{"x":499,"y":306,"on":false},{"x":499,"y":220,"on":true},{"x":499,"y":115,"on":false},{"x":380,"y":-10,"on":false},{"x":272,"y":-10,"on":true},{"x":172,"y":-10,"on":false},{"x":51,"y":106,"on":false},{"x":51,"y":209,"on":true},{"x":51,"y":270,"on":false},{"x":99,"y":359,"on":false},{"x":180,"y":417,"on":false},{"x":229,"y":432,"on":true},{"x":180,"y":466,"on":false},{"x":136,"y":526,"on":false},{"x":136,"y":563,"on":true},{"x":136,"y":585,"on":false},{"x":155,"y":619,"on":false},{"x":171,"y":632,"on":true},{"x":61,"y":632,"on":true},{"x":61,"y":714,"on":true},{"x":476,"y":714,"on":true},{"x":476,"y":632,"on":true},{"x":322,"y":632,"on":true},{"x":278,"y":632,"on":false},{"x":239,"y":603,"on":false},{"x":239,"y":577,"on":true},{"x":239,"y":560,"on":false},{"x":255,"y":531,"on":false},{"x":295,"y":498,"on":false}], + [{"x":275,"y":75,"on":true},{"x":332,"y":75,"on":false},{"x":394,"y":150,"on":false},{"x":394,"y":219,"on":true},{"x":394,"y":275,"on":false},{"x":345,"y":351,"on":false},{"x":294,"y":386,"on":true},{"x":238,"y":370,"on":false},{"x":156,"y":286,"on":false},{"x":156,"y":214,"on":true},{"x":156,"y":150,"on":false},{"x":221,"y":75,"on":false}] + ] + }, + "uniA77E": { + "advanceWidth": 549, + "references": [ + {"glyph":"uniA77D","x":549,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA77F": { + "advanceWidth": 511, + "references": [ + {"glyph":"uni1D79","x":511,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA780": { + "advanceWidth": 479, + "references": [ + {"glyph":"L","x":479,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA781": { + "advanceWidth": 253, + "contours": [ + [{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":540,"on":true},{"x":178,"y":540,"on":true}] + ] + }, + "uniA782": { + "advanceWidth": 729, + "contours": [ + [{"x":581,"y":172,"on":true},{"x":581,"y":79,"on":false},{"x":648,"y":79,"on":true},{"x":666,"y":79,"on":false},{"x":695,"y":85,"on":false},{"x":709,"y":90,"on":true},{"x":709,"y":4,"on":true},{"x":693,"y":-4,"on":false},{"x":652,"y":-10,"on":false},{"x":629,"y":-10,"on":true},{"x":551,"y":-10,"on":false},{"x":477,"y":80,"on":false},{"x":477,"y":165,"on":true},{"x":477,"y":486,"on":true},{"x":477,"y":562,"on":false},{"x":418,"y":636,"on":false},{"x":353,"y":636,"on":true},{"x":276,"y":636,"on":false},{"x":189,"y":536,"on":false},{"x":189,"y":450,"on":true},{"x":188,"y":-198,"on":true},{"x":84,"y":-198,"on":true},{"x":84,"y":714,"on":true},{"x":166,"y":714,"on":true},{"x":181,"y":632,"on":true},{"x":186,"y":632,"on":true},{"x":218,"y":678,"on":false},{"x":315,"y":724,"on":false},{"x":375,"y":724,"on":true},{"x":476,"y":724,"on":false},{"x":581,"y":614,"on":false},{"x":581,"y":495,"on":true}] + ] + }, + "uniA783": { + "advanceWidth": 622, + "contours": [ + [{"x":396,"y":146,"on":true},{"x":396,"y":334,"on":true},{"x":396,"y":399,"on":false},{"x":352,"y":463,"on":false},{"x":302,"y":463,"on":true},{"x":234,"y":463,"on":false},{"x":178,"y":371,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":540,"on":true},{"x":156,"y":540,"on":true},{"x":169,"y":468,"on":true},{"x":175,"y":468,"on":true},{"x":198,"y":509,"on":false},{"x":279,"y":550,"on":false},{"x":326,"y":550,"on":true},{"x":408,"y":550,"on":false},{"x":498,"y":455,"on":false},{"x":498,"y":356,"on":true},{"x":498,"y":152,"on":true},{"x":498,"y":76,"on":false},{"x":553,"y":76,"on":true},{"x":566,"y":76,"on":false},{"x":590,"y":82,"on":false},{"x":603,"y":86,"on":true},{"x":603,"y":2,"on":true},{"x":590,"y":-4,"on":false},{"x":552,"y":-10,"on":false},{"x":532,"y":-10,"on":true},{"x":462,"y":-10,"on":false},{"x":396,"y":72,"on":false}] + ] + }, + "uniA784": { + "advanceWidth": 457, + "contours": [ + [{"x":368,"y":724,"on":true},{"x":383,"y":724,"on":false},{"x":417,"y":721,"on":false},{"x":430,"y":718,"on":true},{"x":415,"y":618,"on":true},{"x":402,"y":622,"on":false},{"x":367,"y":624,"on":false},{"x":351,"y":624,"on":true},{"x":277,"y":624,"on":false},{"x":187,"y":529,"on":false},{"x":187,"y":422,"on":true},{"x":187,"y":-206,"on":true},{"x":84,"y":-206,"on":true},{"x":84,"y":714,"on":true},{"x":166,"y":714,"on":true},{"x":183,"y":618,"on":true},{"x":189,"y":618,"on":true},{"x":212,"y":664,"on":false},{"x":302,"y":724,"on":false}] + ] + }, + "uniA785": { + "advanceWidth": 386, + "contours": [ + [{"x":316,"y":550,"on":true},{"x":344,"y":550,"on":false},{"x":370,"y":544,"on":true},{"x":360,"y":444,"on":true},{"x":338,"y":450,"on":false},{"x":309,"y":450,"on":true},{"x":252,"y":450,"on":false},{"x":178,"y":360,"on":false},{"x":178,"y":283,"on":true},{"x":178,"y":-240,"on":true},{"x":75,"y":-240,"on":true},{"x":75,"y":540,"on":true},{"x":155,"y":540,"on":true},{"x":169,"y":447,"on":true},{"x":174,"y":447,"on":true},{"x":197,"y":493,"on":false},{"x":267,"y":550,"on":false}] + ] + }, + "uniA786": { + "advanceWidth": 564, + "contours": [ + [{"x":49,"y":627,"on":true},{"x":49,"y":714,"on":true},{"x":532,"y":714,"on":true},{"x":532,"y":627,"on":true},{"x":403,"y":627,"on":true},{"x":326,"y":627,"on":false},{"x":220,"y":552,"on":false},{"x":165,"y":422,"on":false},{"x":165,"y":341,"on":true},{"x":165,"y":218,"on":false},{"x":266,"y":81,"on":false},{"x":361,"y":81,"on":true},{"x":400,"y":81,"on":false},{"x":475,"y":98,"on":false},{"x":513,"y":112,"on":true},{"x":513,"y":21,"on":true},{"x":476,"y":5,"on":false},{"x":397,"y":-10,"on":false},{"x":348,"y":-10,"on":true},{"x":255,"y":-10,"on":false},{"x":124,"y":75,"on":false},{"x":56,"y":230,"on":false},{"x":56,"y":336,"on":true},{"x":56,"y":441,"on":false},{"x":142,"y":587,"on":false},{"x":209,"y":627,"on":true}] + ] + }, + "uniA787": { + "advanceWidth": 448, + "contours": [ + [{"x":276,"y":-10,"on":true},{"x":168,"y":-10,"on":false},{"x":47,"y":118,"on":false},{"x":47,"y":242,"on":true},{"x":47,"y":320,"on":false},{"x":101,"y":428,"on":false},{"x":149,"y":457,"on":true},{"x":28,"y":457,"on":true},{"x":28,"y":540,"on":true},{"x":419,"y":540,"on":true},{"x":419,"y":457,"on":true},{"x":324,"y":457,"on":true},{"x":246,"y":457,"on":false},{"x":151,"y":357,"on":false},{"x":151,"y":255,"on":true},{"x":151,"y":166,"on":false},{"x":224,"y":76,"on":false},{"x":291,"y":76,"on":true},{"x":323,"y":76,"on":false},{"x":380,"y":92,"on":false},{"x":409,"y":107,"on":true},{"x":409,"y":19,"on":true},{"x":382,"y":5,"on":false},{"x":319,"y":-10,"on":false}] + ] + }, + "uniA788": { + "advanceWidth": 411, + "references": [ + {"glyph":"circumflex","x":0,"y":-816,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA789": { + "advanceWidth": 260, + "contours": [ + [{"x":62,"y":479,"on":true},{"x":62,"y":516,"on":false},{"x":99,"y":550,"on":false},{"x":128,"y":550,"on":true},{"x":156,"y":550,"on":false},{"x":194,"y":516,"on":false},{"x":194,"y":479,"on":true},{"x":194,"y":442,"on":false},{"x":156,"y":408,"on":false},{"x":128,"y":408,"on":true},{"x":100,"y":408,"on":false},{"x":62,"y":442,"on":false}], + [{"x":62,"y":150,"on":true},{"x":62,"y":188,"on":false},{"x":99,"y":221,"on":false},{"x":128,"y":221,"on":true},{"x":156,"y":221,"on":false},{"x":194,"y":188,"on":false},{"x":194,"y":150,"on":true},{"x":194,"y":112,"on":false},{"x":156,"y":78,"on":false},{"x":128,"y":78,"on":true},{"x":100,"y":78,"on":false},{"x":62,"y":113,"on":false}] + ] + }, + "uniA78A": { + "advanceWidth": 452, + "contours": [ + [{"x":49,"y":370,"on":true},{"x":49,"y":442,"on":true},{"x":403,"y":442,"on":true},{"x":403,"y":370,"on":true}], + [{"x":403,"y":264,"on":true},{"x":403,"y":191,"on":true},{"x":49,"y":191,"on":true},{"x":49,"y":264,"on":true}] + ] + }, + "uniA78B": { + "advanceWidth": 262, + "contours": [ + [{"x":169,"y":215,"on":true},{"x":94,"y":215,"on":true},{"x":70,"y":714,"on":true},{"x":192,"y":714,"on":true}] + ] + }, + "uniA78C": { + "advanceWidth": 253, + "contours": [ + [{"x":92,"y":387,"on":true},{"x":68,"y":714,"on":true},{"x":185,"y":714,"on":true},{"x":162,"y":387,"on":true}] + ] + }, + "uniA78D": { + "advanceWidth": 672, + "contours": [ + [{"x":587,"y":0,"on":true},{"x":482,"y":0,"on":true},{"x":482,"y":327,"on":true},{"x":86,"y":327,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":418,"on":true},{"x":482,"y":418,"on":true},{"x":482,"y":714,"on":true},{"x":587,"y":714,"on":true}] + ] + }, + "uniA78E": { + "advanceWidth": 375, + "contours": [ + [{"x":149,"y":-13,"on":true},{"x":149,"y":292,"on":true},{"x":119,"y":292,"on":true},{"x":58,"y":293,"on":false},{"x":-3,"y":354,"on":false},{"x":-3,"y":400,"on":true},{"x":-3,"y":450,"on":false},{"x":53,"y":503,"on":false},{"x":97,"y":503,"on":true},{"x":128,"y":503,"on":false},{"x":149,"y":487,"on":true},{"x":149,"y":760,"on":true},{"x":251,"y":760,"on":true},{"x":251,"y":354,"on":true},{"x":345,"y":354,"on":true},{"x":345,"y":292,"on":true},{"x":251,"y":292,"on":true},{"x":251,"y":-11,"on":true},{"x":251,"y":-49,"on":false},{"x":279,"y":-88,"on":false},{"x":311,"y":-88,"on":true},{"x":326,"y":-88,"on":false},{"x":354,"y":-82,"on":false},{"x":367,"y":-77,"on":true},{"x":367,"y":-159,"on":true},{"x":353,"y":-166,"on":false},{"x":308,"y":-174,"on":false},{"x":287,"y":-174,"on":true},{"x":213,"y":-174,"on":false},{"x":149,"y":-92,"on":false}], + [{"x":103,"y":444,"on":true},{"x":63,"y":444,"on":false},{"x":63,"y":403,"on":true},{"x":63,"y":380,"on":false},{"x":94,"y":355,"on":false},{"x":121,"y":354,"on":true},{"x":149,"y":354,"on":true},{"x":149,"y":377,"on":true},{"x":149,"y":414,"on":false},{"x":126,"y":444,"on":false}] + ] + }, + "uniA78F": { + "advanceWidth": 301, + "contours": [ + [{"x":58,"y":355,"on":true},{"x":58,"y":408,"on":false},{"x":110,"y":454,"on":false},{"x":151,"y":454,"on":true},{"x":191,"y":454,"on":false},{"x":243,"y":408,"on":false},{"x":243,"y":355,"on":true},{"x":243,"y":303,"on":false},{"x":191,"y":256,"on":false},{"x":151,"y":256,"on":true},{"x":110,"y":256,"on":false},{"x":58,"y":303,"on":false}] + ] + }, + "uniA790": { + "advanceWidth": 725, + "contours": [ + [{"x":589,"y":0,"on":true},{"x":493,"y":0,"on":true},{"x":179,"y":570,"on":true},{"x":175,"y":570,"on":true},{"x":178,"y":528,"on":false},{"x":182,"y":435,"on":false},{"x":183,"y":390,"on":true},{"x":183,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":714,"on":true},{"x":212,"y":714,"on":true},{"x":525,"y":149,"on":true},{"x":529,"y":149,"on":true},{"x":527,"y":186,"on":false},{"x":523,"y":284,"on":false},{"x":522,"y":325,"on":true},{"x":522,"y":714,"on":true},{"x":620,"y":714,"on":true},{"x":620,"y":88,"on":true},{"x":690,"y":88,"on":true},{"x":690,"y":-204,"on":true},{"x":589,"y":-204,"on":true}] + ] + }, + "uniA791": { + "advanceWidth": 584, + "contours": [ + [{"x":461,"y":-1,"on":true},{"x":461,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":400,"on":false},{"x":352,"y":463,"on":false},{"x":303,"y":463,"on":true},{"x":232,"y":463,"on":false},{"x":178,"y":368,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":198,"y":508,"on":false},{"x":280,"y":549,"on":false},{"x":326,"y":549,"on":true},{"x":409,"y":549,"on":false},{"x":498,"y":456,"on":false},{"x":498,"y":356,"on":true},{"x":498,"y":82,"on":true},{"x":557,"y":82,"on":true},{"x":557,"y":-194,"on":true},{"x":461,"y":-194,"on":true}] + ] + }, + "uniA792": { + "advanceWidth": 561, + "contours": [ + [{"x":-1,"y":310,"on":true},{"x":-1,"y":396,"on":true},{"x":57,"y":396,"on":true},{"x":63,"y":492,"on":false},{"x":136,"y":640,"on":false},{"x":268,"y":724,"on":false},{"x":361,"y":724,"on":true},{"x":458,"y":724,"on":false},{"x":540,"y":682,"on":true},{"x":502,"y":595,"on":true},{"x":471,"y":611,"on":false},{"x":402,"y":633,"on":false},{"x":362,"y":633,"on":true},{"x":275,"y":633,"on":false},{"x":174,"y":503,"on":false},{"x":166,"y":396,"on":true},{"x":366,"y":396,"on":true},{"x":366,"y":310,"on":true},{"x":167,"y":310,"on":true},{"x":175,"y":202,"on":false},{"x":275,"y":81,"on":false},{"x":364,"y":81,"on":true},{"x":404,"y":81,"on":false},{"x":478,"y":98,"on":false},{"x":515,"y":112,"on":true},{"x":515,"y":21,"on":true},{"x":479,"y":5,"on":false},{"x":401,"y":-10,"on":false},{"x":351,"y":-10,"on":true},{"x":215,"y":-10,"on":false},{"x":67,"y":161,"on":false},{"x":58,"y":310,"on":true}] + ] + }, + "uniA793": { + "advanceWidth": 443, + "contours": [ + [{"x":0,"y":242,"on":true},{"x":0,"y":317,"on":true},{"x":65,"y":317,"on":true},{"x":76,"y":434,"on":false},{"x":198,"y":549,"on":false},{"x":294,"y":549,"on":true},{"x":335,"y":549,"on":false},{"x":405,"y":532,"on":false},{"x":430,"y":519,"on":true},{"x":399,"y":436,"on":true},{"x":374,"y":447,"on":false},{"x":321,"y":462,"on":false},{"x":296,"y":462,"on":true},{"x":186,"y":462,"on":false},{"x":170,"y":317,"on":true},{"x":348,"y":317,"on":true},{"x":348,"y":242,"on":true},{"x":169,"y":242,"on":true},{"x":177,"y":77,"on":false},{"x":294,"y":77,"on":true},{"x":331,"y":77,"on":false},{"x":392,"y":95,"on":false},{"x":420,"y":110,"on":true},{"x":420,"y":22,"on":true},{"x":393,"y":6,"on":false},{"x":328,"y":-10,"on":false},{"x":288,"y":-10,"on":true},{"x":188,"y":-10,"on":false},{"x":69,"y":113,"on":false},{"x":64,"y":242,"on":true}] + ] + }, + "uniA794": { + "advanceWidth": 444, + "contours": [ + [{"x":273,"y":-10,"on":true},{"x":168,"y":-10,"on":false},{"x":48,"y":125,"on":false},{"x":48,"y":267,"on":true},{"x":48,"y":409,"on":false},{"x":173,"y":549,"on":false},{"x":279,"y":549,"on":true},{"x":320,"y":549,"on":false},{"x":390,"y":532,"on":false},{"x":415,"y":519,"on":true},{"x":384,"y":436,"on":true},{"x":359,"y":447,"on":false},{"x":306,"y":462,"on":false},{"x":281,"y":462,"on":true},{"x":153,"y":462,"on":false},{"x":153,"y":267,"on":true},{"x":153,"y":77,"on":false},{"x":279,"y":77,"on":true},{"x":316,"y":77,"on":false},{"x":377,"y":95,"on":false},{"x":405,"y":110,"on":true},{"x":405,"y":86,"on":true},{"x":407,"y":87,"on":true},{"x":407,"y":-65,"on":true},{"x":407,"y":-131,"on":false},{"x":346,"y":-212,"on":false},{"x":279,"y":-212,"on":true},{"x":261,"y":-212,"on":false},{"x":225,"y":-206,"on":false},{"x":213,"y":-201,"on":true},{"x":213,"y":-117,"on":true},{"x":224,"y":-121,"on":false},{"x":246,"y":-126,"on":false},{"x":260,"y":-126,"on":true},{"x":282,"y":-126,"on":false},{"x":310,"y":-95,"on":false},{"x":310,"y":-57,"on":true},{"x":310,"y":-8,"on":true},{"x":292,"y":-10,"on":false}] + ] + }, + "uniA795": { + "advanceWidth": 573, + "contours": [ + [{"x":430,"y":-207,"on":true},{"x":411,"y":-207,"on":false},{"x":380,"y":-200,"on":false},{"x":368,"y":-195,"on":true},{"x":368,"y":-116,"on":true},{"x":377,"y":-120,"on":false},{"x":399,"y":-125,"on":false},{"x":411,"y":-125,"on":true},{"x":433,"y":-125,"on":false},{"x":456,"y":-99,"on":false},{"x":456,"y":-69,"on":true},{"x":456,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":402,"on":false},{"x":352,"y":463,"on":false},{"x":303,"y":463,"on":true},{"x":232,"y":463,"on":false},{"x":178,"y":366,"on":false},{"x":178,"y":272,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":760,"on":true},{"x":178,"y":760,"on":true},{"x":178,"y":558,"on":true},{"x":178,"y":532,"on":false},{"x":174,"y":484,"on":false},{"x":171,"y":467,"on":true},{"x":178,"y":467,"on":true},{"x":200,"y":508,"on":false},{"x":278,"y":549,"on":false},{"x":325,"y":549,"on":true},{"x":410,"y":549,"on":false},{"x":498,"y":454,"on":false},{"x":498,"y":355,"on":true},{"x":498,"y":80,"on":true},{"x":544,"y":80,"on":true},{"x":544,"y":-66,"on":true},{"x":544,"y":-207,"on":false}] + ] + }, + "uniA796": { + "advanceWidth": 682, + "contours": [ + [{"x":18,"y":219,"on":true},{"x":14,"y":230,"on":false},{"x":8,"y":263,"on":false},{"x":8,"y":279,"on":true},{"x":8,"y":340,"on":false},{"x":78,"y":414,"on":false},{"x":155,"y":414,"on":true},{"x":172,"y":414,"on":true},{"x":172,"y":714,"on":true},{"x":366,"y":714,"on":true},{"x":488,"y":714,"on":false},{"x":614,"y":632,"on":false},{"x":614,"y":538,"on":true},{"x":614,"y":474,"on":false},{"x":553,"y":390,"on":false},{"x":496,"y":379,"on":true},{"x":496,"y":374,"on":true},{"x":558,"y":361,"on":false},{"x":633,"y":284,"on":false},{"x":633,"y":205,"on":true},{"x":633,"y":109,"on":false},{"x":511,"y":0,"on":false},{"x":404,"y":0,"on":true},{"x":172,"y":0,"on":true},{"x":172,"y":331,"on":true},{"x":152,"y":331,"on":true},{"x":121,"y":331,"on":false},{"x":90,"y":299,"on":false},{"x":90,"y":273,"on":true},{"x":90,"y":256,"on":false},{"x":97,"y":226,"on":false},{"x":99,"y":219,"on":true}], + [{"x":277,"y":415,"on":true},{"x":377,"y":415,"on":true},{"x":449,"y":415,"on":false},{"x":507,"y":470,"on":false},{"x":507,"y":525,"on":true},{"x":507,"y":626,"on":false},{"x":369,"y":626,"on":true},{"x":277,"y":626,"on":true}], + [{"x":277,"y":329,"on":true},{"x":277,"y":89,"on":true},{"x":390,"y":89,"on":true},{"x":463,"y":89,"on":false},{"x":524,"y":154,"on":false},{"x":524,"y":213,"on":true},{"x":524,"y":267,"on":false},{"x":458,"y":329,"on":false},{"x":382,"y":329,"on":true}] + ] + }, + "uniA797": { + "advanceWidth": 774, + "contours": [ + [{"x":286,"y":760,"on":true},{"x":388,"y":760,"on":true},{"x":388,"y":545,"on":true},{"x":417,"y":548,"on":false},{"x":448,"y":548,"on":true},{"x":552,"y":548,"on":false},{"x":674,"y":475,"on":false},{"x":728,"y":350,"on":false},{"x":728,"y":271,"on":true},{"x":728,"y":136,"on":false},{"x":624,"y":-10,"on":false},{"x":531,"y":-10,"on":true},{"x":476,"y":-10,"on":false},{"x":408,"y":38,"on":false},{"x":388,"y":69,"on":true},{"x":382,"y":69,"on":true},{"x":362,"y":0,"on":true},{"x":286,"y":0,"on":true},{"x":286,"y":429,"on":true},{"x":219,"y":396,"on":false},{"x":144,"y":255,"on":false},{"x":144,"y":143,"on":true},{"x":144,"y":33,"on":false},{"x":226,"y":-69,"on":false},{"x":285,"y":-69,"on":true},{"x":321,"y":-69,"on":false},{"x":357,"y":-57,"on":true},{"x":357,"y":-138,"on":true},{"x":341,"y":-143,"on":false},{"x":294,"y":-151,"on":false},{"x":268,"y":-151,"on":true},{"x":203,"y":-151,"on":false},{"x":102,"y":-86,"on":false},{"x":44,"y":43,"on":false},{"x":44,"y":140,"on":true},{"x":44,"y":292,"on":false},{"x":172,"y":485,"on":false},{"x":286,"y":524,"on":true}], + [{"x":388,"y":273,"on":true},{"x":388,"y":174,"on":false},{"x":440,"y":76,"on":false},{"x":508,"y":76,"on":true},{"x":563,"y":76,"on":false},{"x":624,"y":175,"on":false},{"x":624,"y":269,"on":true},{"x":624,"y":326,"on":false},{"x":590,"y":413,"on":false},{"x":512,"y":462,"on":false},{"x":446,"y":462,"on":true},{"x":416,"y":462,"on":false},{"x":388,"y":459,"on":true}] + ] + }, + "uniA798": { + "advanceWidth": 484, + "contours": [ + [{"x":48,"y":-213,"on":true},{"x":28,"y":-213,"on":false},{"x":-7,"y":-206,"on":false},{"x":-16,"y":-201,"on":true},{"x":-16,"y":-117,"on":true},{"x":-8,"y":-121,"on":false},{"x":18,"y":-127,"on":false},{"x":34,"y":-127,"on":true},{"x":57,"y":-127,"on":false},{"x":85,"y":-93,"on":false},{"x":85,"y":-61,"on":true},{"x":85,"y":298,"on":true},{"x":-15,"y":298,"on":true},{"x":-15,"y":387,"on":true},{"x":85,"y":387,"on":true},{"x":85,"y":714,"on":true},{"x":451,"y":714,"on":true},{"x":451,"y":625,"on":true},{"x":189,"y":625,"on":true},{"x":189,"y":387,"on":true},{"x":356,"y":387,"on":true},{"x":356,"y":298,"on":true},{"x":189,"y":298,"on":true},{"x":189,"y":-60,"on":true},{"x":189,"y":-138,"on":false},{"x":112,"y":-213,"on":false}] + ] + }, + "uniA799": { + "advanceWidth": 318, + "contours": [ + [{"x":305,"y":338,"on":true},{"x":305,"y":266,"on":true},{"x":197,"y":266,"on":true},{"x":197,"y":0,"on":true},{"x":95,"y":0,"on":true},{"x":95,"y":265,"on":true},{"x":15,"y":265,"on":true},{"x":15,"y":337,"on":true},{"x":95,"y":337,"on":true},{"x":95,"y":459,"on":true},{"x":14,"y":459,"on":true},{"x":14,"y":509,"on":true},{"x":95,"y":541,"on":true},{"x":95,"y":573,"on":true},{"x":95,"y":674,"on":false},{"x":175,"y":765,"on":false},{"x":255,"y":765,"on":true},{"x":286,"y":765,"on":false},{"x":337,"y":754,"on":false},{"x":359,"y":746,"on":true},{"x":334,"y":668,"on":true},{"x":318,"y":672,"on":false},{"x":283,"y":681,"on":false},{"x":264,"y":681,"on":true},{"x":229,"y":681,"on":false},{"x":197,"y":630,"on":false},{"x":197,"y":574,"on":true},{"x":197,"y":539,"on":true},{"x":313,"y":539,"on":true},{"x":313,"y":459,"on":true},{"x":197,"y":459,"on":true},{"x":197,"y":338,"on":true}] + ] + }, + "uniA79A": { + "advanceWidth": 684, + "contours": [ + [{"x":286,"y":-10,"on":true},{"x":176,"y":-10,"on":false},{"x":44,"y":100,"on":false},{"x":44,"y":198,"on":true},{"x":44,"y":268,"on":false},{"x":128,"y":359,"on":false},{"x":212,"y":372,"on":true},{"x":212,"y":375,"on":true},{"x":67,"y":405,"on":false},{"x":67,"y":541,"on":true},{"x":67,"y":624,"on":false},{"x":184,"y":724,"on":false},{"x":284,"y":724,"on":true},{"x":364,"y":724,"on":false},{"x":462,"y":664,"on":false},{"x":491,"y":623,"on":true},{"x":494,"y":623,"on":true},{"x":506,"y":714,"on":true},{"x":598,"y":714,"on":true},{"x":598,"y":0,"on":true},{"x":514,"y":0,"on":true},{"x":492,"y":93,"on":true},{"x":485,"y":93,"on":true},{"x":460,"y":52,"on":false},{"x":367,"y":-10,"on":false}], + [{"x":308,"y":77,"on":true},{"x":403,"y":77,"on":false},{"x":495,"y":191,"on":false},{"x":495,"y":313,"on":true},{"x":495,"y":421,"on":true},{"x":495,"y":533,"on":false},{"x":400,"y":635,"on":false},{"x":303,"y":635,"on":true},{"x":235,"y":635,"on":false},{"x":171,"y":578,"on":false},{"x":171,"y":532,"on":true},{"x":171,"y":474,"on":false},{"x":244,"y":414,"on":false},{"x":333,"y":414,"on":true},{"x":362,"y":414,"on":true},{"x":362,"y":327,"on":true},{"x":330,"y":327,"on":true},{"x":243,"y":327,"on":false},{"x":150,"y":266,"on":false},{"x":150,"y":206,"on":true},{"x":150,"y":138,"on":false},{"x":237,"y":77,"on":false}] + ] + }, + "uniA79B": { + "advanceWidth": 552, + "contours": [ + [{"x":219,"y":-10,"on":true},{"x":169,"y":-10,"on":false},{"x":86,"y":23,"on":false},{"x":37,"y":92,"on":false},{"x":37,"y":145,"on":true},{"x":37,"y":195,"on":false},{"x":90,"y":269,"on":false},{"x":151,"y":281,"on":true},{"x":151,"y":286,"on":true},{"x":107,"y":300,"on":false},{"x":57,"y":362,"on":false},{"x":57,"y":406,"on":true},{"x":57,"y":457,"on":false},{"x":108,"y":520,"on":false},{"x":184,"y":549,"on":false},{"x":222,"y":549,"on":true},{"x":270,"y":549,"on":false},{"x":330,"y":525,"on":false},{"x":368,"y":486,"on":false},{"x":379,"y":466,"on":true},{"x":382,"y":466,"on":true},{"x":394,"y":539,"on":true},{"x":478,"y":539,"on":true},{"x":478,"y":0,"on":true},{"x":401,"y":0,"on":true},{"x":380,"y":75,"on":true},{"x":375,"y":75,"on":true},{"x":356,"y":38,"on":false},{"x":281,"y":-10,"on":false}], + [{"x":248,"y":73,"on":true},{"x":323,"y":73,"on":false},{"x":381,"y":166,"on":false},{"x":381,"y":255,"on":true},{"x":381,"y":280,"on":true},{"x":381,"y":380,"on":false},{"x":318,"y":470,"on":false},{"x":247,"y":470,"on":true},{"x":202,"y":470,"on":false},{"x":153,"y":431,"on":false},{"x":153,"y":395,"on":true},{"x":153,"y":358,"on":false},{"x":204,"y":321,"on":false},{"x":261,"y":321,"on":true},{"x":276,"y":321,"on":true},{"x":276,"y":245,"on":true},{"x":250,"y":245,"on":true},{"x":193,"y":245,"on":false},{"x":139,"y":200,"on":false},{"x":139,"y":159,"on":true},{"x":139,"y":118,"on":false},{"x":197,"y":73,"on":false}] + ] + }, + "uniA79C": { + "advanceWidth": 673, + "contours": [ + [{"x":301,"y":-10,"on":true},{"x":174,"y":-10,"on":false},{"x":44,"y":101,"on":false},{"x":44,"y":198,"on":true},{"x":44,"y":269,"on":false},{"x":128,"y":359,"on":false},{"x":212,"y":372,"on":true},{"x":212,"y":375,"on":true},{"x":139,"y":390,"on":false},{"x":67,"y":470,"on":false},{"x":67,"y":539,"on":true},{"x":67,"y":622,"on":false},{"x":187,"y":724,"on":false},{"x":309,"y":724,"on":true},{"x":414,"y":724,"on":false},{"x":551,"y":634,"on":false},{"x":619,"y":469,"on":false},{"x":619,"y":358,"on":true},{"x":619,"y":247,"on":false},{"x":551,"y":82,"on":false},{"x":410,"y":-10,"on":false}], + [{"x":304,"y":80,"on":true},{"x":408,"y":80,"on":false},{"x":509,"y":223,"on":false},{"x":509,"y":358,"on":true},{"x":509,"y":489,"on":false},{"x":412,"y":634,"on":false},{"x":310,"y":635,"on":true},{"x":239,"y":635,"on":false},{"x":171,"y":578,"on":false},{"x":171,"y":529,"on":true},{"x":171,"y":474,"on":false},{"x":244,"y":414,"on":false},{"x":333,"y":414,"on":true},{"x":362,"y":414,"on":true},{"x":362,"y":327,"on":true},{"x":330,"y":327,"on":true},{"x":243,"y":327,"on":false},{"x":150,"y":266,"on":false},{"x":150,"y":206,"on":true},{"x":150,"y":138,"on":false},{"x":237,"y":80,"on":false}] + ] + }, + "uniA79D": { + "advanceWidth": 558, + "references": [ + {"glyph":"uni029A","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA79E": { + "advanceWidth": 685, + "contours": [ + [{"x":286,"y":-10,"on":true},{"x":184,"y":-10,"on":false},{"x":67,"y":96,"on":false},{"x":67,"y":187,"on":true},{"x":67,"y":264,"on":false},{"x":147,"y":358,"on":false},{"x":231,"y":372,"on":true},{"x":231,"y":375,"on":true},{"x":182,"y":385,"on":false},{"x":109,"y":427,"on":false},{"x":69,"y":506,"on":false},{"x":69,"y":570,"on":true},{"x":69,"y":714,"on":true},{"x":174,"y":714,"on":true},{"x":174,"y":568,"on":true},{"x":174,"y":484,"on":false},{"x":262,"y":414,"on":false},{"x":359,"y":414,"on":true},{"x":381,"y":414,"on":true},{"x":381,"y":327,"on":true},{"x":349,"y":327,"on":true},{"x":263,"y":327,"on":false},{"x":173,"y":262,"on":false},{"x":173,"y":195,"on":true},{"x":173,"y":137,"on":false},{"x":246,"y":77,"on":false},{"x":309,"y":77,"on":true},{"x":402,"y":77,"on":false},{"x":496,"y":191,"on":false},{"x":496,"y":313,"on":true},{"x":496,"y":714,"on":true},{"x":599,"y":714,"on":true},{"x":599,"y":0,"on":true},{"x":514,"y":0,"on":true},{"x":493,"y":93,"on":true},{"x":486,"y":93,"on":true},{"x":461,"y":52,"on":false},{"x":368,"y":-10,"on":false}] + ] + }, + "uniA79F": { + "advanceWidth": 556, + "contours": [ + [{"x":225,"y":-10,"on":true},{"x":152,"y":-10,"on":false},{"x":56,"y":70,"on":false},{"x":56,"y":145,"on":true},{"x":56,"y":195,"on":false},{"x":100,"y":266,"on":false},{"x":153,"y":281,"on":true},{"x":153,"y":286,"on":true},{"x":108,"y":300,"on":false},{"x":55,"y":364,"on":false},{"x":55,"y":429,"on":true},{"x":55,"y":539,"on":true},{"x":151,"y":539,"on":true},{"x":151,"y":432,"on":true},{"x":151,"y":373,"on":false},{"x":203,"y":321,"on":false},{"x":264,"y":321,"on":true},{"x":277,"y":321,"on":true},{"x":277,"y":245,"on":true},{"x":257,"y":245,"on":true},{"x":204,"y":245,"on":false},{"x":158,"y":200,"on":false},{"x":158,"y":159,"on":true},{"x":158,"y":119,"on":false},{"x":208,"y":73,"on":false},{"x":251,"y":73,"on":true},{"x":324,"y":73,"on":false},{"x":384,"y":166,"on":false},{"x":384,"y":255,"on":true},{"x":384,"y":539,"on":true},{"x":481,"y":539,"on":true},{"x":481,"y":0,"on":true},{"x":404,"y":0,"on":true},{"x":383,"y":75,"on":true},{"x":379,"y":75,"on":true},{"x":360,"y":38,"on":false},{"x":285,"y":-10,"on":false}] + ] + }, + "uniA7A0": { + "advanceWidth": 661, + "contours": [ + [{"x":166,"y":384,"on":true},{"x":166,"y":376,"on":false},{"x":165,"y":363,"on":false},{"x":165,"y":356,"on":true},{"x":165,"y":231,"on":false},{"x":267,"y":80,"on":false},{"x":375,"y":80,"on":true},{"x":410,"y":80,"on":false},{"x":465,"y":88,"on":false},{"x":488,"y":96,"on":true},{"x":488,"y":275,"on":true},{"x":346,"y":275,"on":true},{"x":346,"y":365,"on":true},{"x":591,"y":365,"on":true},{"x":591,"y":30,"on":true},{"x":540,"y":10,"on":false},{"x":429,"y":-10,"on":false},{"x":365,"y":-10,"on":true},{"x":211,"y":-10,"on":false},{"x":57,"y":185,"on":false},{"x":56,"y":363,"on":true},{"x":1,"y":351,"on":true},{"x":1,"y":421,"on":true},{"x":62,"y":434,"on":true},{"x":74,"y":521,"on":false},{"x":157,"y":651,"on":false},{"x":295,"y":724,"on":false},{"x":391,"y":724,"on":true},{"x":444,"y":724,"on":false},{"x":543,"y":701,"on":false},{"x":586,"y":680,"on":true},{"x":550,"y":593,"on":true},{"x":513,"y":612,"on":false},{"x":433,"y":634,"on":false},{"x":391,"y":634,"on":true},{"x":308,"y":634,"on":false},{"x":198,"y":541,"on":false},{"x":179,"y":456,"on":true},{"x":641,"y":557,"on":true},{"x":641,"y":487,"on":true}] + ] + }, + "uniA7A1": { + "advanceWidth": 566, + "contours": [ + [{"x":3,"y":264,"on":true},{"x":48,"y":273,"on":true},{"x":49,"y":404,"on":false},{"x":152,"y":549,"on":false},{"x":243,"y":549,"on":true},{"x":339,"y":549,"on":false},{"x":391,"y":469,"on":true},{"x":396,"y":469,"on":true},{"x":407,"y":539,"on":true},{"x":491,"y":539,"on":true},{"x":491,"y":360,"on":true},{"x":561,"y":374,"on":true},{"x":561,"y":303,"on":true},{"x":491,"y":289,"on":true},{"x":491,"y":-3,"on":true},{"x":491,"y":-118,"on":false},{"x":376,"y":-240,"on":false},{"x":255,"y":-240,"on":true},{"x":204,"y":-240,"on":false},{"x":119,"y":-224,"on":false},{"x":82,"y":-207,"on":true},{"x":82,"y":-116,"on":true},{"x":122,"y":-136,"on":false},{"x":211,"y":-156,"on":false},{"x":258,"y":-156,"on":true},{"x":321,"y":-156,"on":false},{"x":390,"y":-87,"on":false},{"x":390,"y":-17,"on":true},{"x":390,"y":0,"on":true},{"x":390,"y":14,"on":false},{"x":392,"y":57,"on":false},{"x":393,"y":72,"on":true},{"x":389,"y":72,"on":true},{"x":339,"y":-10,"on":false},{"x":242,"y":-10,"on":true},{"x":163,"y":-10,"on":false},{"x":64,"y":100,"on":false},{"x":52,"y":202,"on":true},{"x":3,"y":192,"on":true}], + [{"x":266,"y":463,"on":true},{"x":215,"y":463,"on":false},{"x":157,"y":376,"on":false},{"x":153,"y":293,"on":true},{"x":388,"y":340,"on":true},{"x":378,"y":404,"on":false},{"x":319,"y":463,"on":false}], + [{"x":392,"y":248,"on":true},{"x":392,"y":269,"on":true},{"x":154,"y":222,"on":true},{"x":166,"y":75,"on":false},{"x":268,"y":75,"on":true},{"x":332,"y":75,"on":false},{"x":392,"y":157,"on":false}] + ] + }, + "uniA7A2": { + "advanceWidth": 569, + "contours": [ + [{"x":3,"y":269,"on":true},{"x":3,"y":339,"on":true},{"x":86,"y":359,"on":true},{"x":86,"y":714,"on":true},{"x":191,"y":714,"on":true},{"x":191,"y":368,"on":true},{"x":209,"y":393,"on":false},{"x":252,"y":449,"on":false},{"x":276,"y":481,"on":true},{"x":448,"y":714,"on":true},{"x":565,"y":714,"on":true},{"x":338,"y":414,"on":true},{"x":561,"y":469,"on":true},{"x":561,"y":400,"on":true},{"x":359,"y":349,"on":true},{"x":573,"y":0,"on":true},{"x":453,"y":0,"on":true},{"x":253,"y":325,"on":true},{"x":191,"y":268,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":289,"on":true}] + ] + }, + "uniA7A3": { + "advanceWidth": 510, + "contours": [ + [{"x":4,"y":257,"on":true},{"x":75,"y":273,"on":true},{"x":75,"y":760,"on":true},{"x":177,"y":760,"on":true},{"x":177,"y":386,"on":true},{"x":177,"y":365,"on":false},{"x":174,"y":318,"on":false},{"x":173,"y":296,"on":true},{"x":186,"y":299,"on":true},{"x":196,"y":313,"on":false},{"x":219,"y":345,"on":false},{"x":229,"y":357,"on":true},{"x":377,"y":539,"on":true},{"x":492,"y":539,"on":true},{"x":316,"y":329,"on":true},{"x":506,"y":372,"on":true},{"x":506,"y":299,"on":true},{"x":339,"y":261,"on":true},{"x":504,"y":0,"on":true},{"x":386,"y":0,"on":true},{"x":240,"y":239,"on":true},{"x":224,"y":235,"on":true},{"x":177,"y":190,"on":true},{"x":177,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":201,"on":true},{"x":4,"y":185,"on":true}] + ] + }, + "uniA7A4": { + "advanceWidth": 704, + "contours": [ + [{"x":3,"y":335,"on":true},{"x":86,"y":351,"on":true},{"x":86,"y":714,"on":true},{"x":212,"y":714,"on":true},{"x":382,"y":407,"on":true},{"x":522,"y":433,"on":true},{"x":522,"y":714,"on":true},{"x":620,"y":714,"on":true},{"x":620,"y":452,"on":true},{"x":701,"y":467,"on":true},{"x":701,"y":397,"on":true},{"x":620,"y":382,"on":true},{"x":620,"y":0,"on":true},{"x":493,"y":0,"on":true},{"x":315,"y":324,"on":true},{"x":183,"y":299,"on":true},{"x":183,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":281,"on":true},{"x":3,"y":265,"on":true}], + [{"x":183,"y":390,"on":true},{"x":183,"y":369,"on":true},{"x":280,"y":387,"on":true},{"x":179,"y":570,"on":true},{"x":175,"y":570,"on":true},{"x":178,"y":528,"on":false},{"x":182,"y":435,"on":false}], + [{"x":525,"y":149,"on":true},{"x":529,"y":149,"on":true},{"x":527,"y":186,"on":false},{"x":523,"y":284,"on":false},{"x":522,"y":325,"on":true},{"x":522,"y":363,"on":true},{"x":417,"y":343,"on":true}] + ] + }, + "uniA7A5": { + "advanceWidth": 570, + "contours": [ + [{"x":3,"y":250,"on":true},{"x":75,"y":264,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":170,"y":467,"on":true},{"x":176,"y":467,"on":true},{"x":198,"y":508,"on":false},{"x":280,"y":549,"on":false},{"x":326,"y":549,"on":true},{"x":409,"y":549,"on":false},{"x":498,"y":456,"on":false},{"x":498,"y":356,"on":true},{"x":498,"y":349,"on":true},{"x":567,"y":363,"on":true},{"x":567,"y":291,"on":true},{"x":498,"y":277,"on":true},{"x":498,"y":0,"on":true},{"x":397,"y":0,"on":true},{"x":397,"y":257,"on":true},{"x":178,"y":213,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":192,"on":true},{"x":3,"y":178,"on":true}], + [{"x":303,"y":463,"on":true},{"x":235,"y":463,"on":false},{"x":180,"y":374,"on":false},{"x":178,"y":285,"on":true},{"x":397,"y":329,"on":true},{"x":397,"y":338,"on":true},{"x":397,"y":400,"on":false},{"x":352,"y":463,"on":false}] + ] + }, + "uniA7A6": { + "advanceWidth": 575, + "contours": [ + [{"x":564,"y":0,"on":true},{"x":446,"y":0,"on":true},{"x":297,"y":276,"on":true},{"x":191,"y":276,"on":true},{"x":191,"y":0,"on":true},{"x":86,"y":0,"on":true},{"x":86,"y":420,"on":true},{"x":3,"y":406,"on":true},{"x":3,"y":474,"on":true},{"x":86,"y":489,"on":true},{"x":86,"y":714,"on":true},{"x":258,"y":714,"on":true},{"x":476,"y":714,"on":false},{"x":507,"y":559,"on":true},{"x":572,"y":569,"on":true},{"x":572,"y":501,"on":true},{"x":512,"y":491,"on":true},{"x":509,"y":353,"on":false},{"x":389,"y":305,"on":true}], + [{"x":191,"y":506,"on":true},{"x":399,"y":541,"on":true},{"x":388,"y":587,"on":false},{"x":315,"y":625,"on":false},{"x":253,"y":625,"on":true},{"x":191,"y":625,"on":true}], + [{"x":262,"y":363,"on":true},{"x":393,"y":363,"on":false},{"x":403,"y":473,"on":true},{"x":191,"y":438,"on":true},{"x":191,"y":363,"on":true}] + ] + }, + "uniA7A7": { + "advanceWidth": 386, + "contours": [ + [{"x":-1,"y":253,"on":true},{"x":75,"y":270,"on":true},{"x":75,"y":539,"on":true},{"x":156,"y":539,"on":true},{"x":169,"y":445,"on":true},{"x":174,"y":445,"on":true},{"x":196,"y":488,"on":false},{"x":268,"y":549,"on":false},{"x":317,"y":549,"on":true},{"x":330,"y":549,"on":false},{"x":359,"y":546,"on":false},{"x":372,"y":543,"on":true},{"x":360,"y":444,"on":true},{"x":350,"y":447,"on":false},{"x":323,"y":451,"on":false},{"x":311,"y":451,"on":true},{"x":258,"y":451,"on":false},{"x":181,"y":366,"on":false},{"x":178,"y":293,"on":true},{"x":373,"y":337,"on":true},{"x":373,"y":265,"on":true},{"x":178,"y":221,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":197,"on":true},{"x":-1,"y":180,"on":true}] + ] + }, + "uniA7A8": { + "advanceWidth": 501, + "contours": [ + [{"x":3,"y":357,"on":true},{"x":117,"y":383,"on":true},{"x":86,"y":409,"on":false},{"x":52,"y":482,"on":false},{"x":52,"y":534,"on":true},{"x":51,"y":622,"on":false},{"x":170,"y":724,"on":false},{"x":268,"y":724,"on":true},{"x":320,"y":724,"on":false},{"x":411,"y":702,"on":false},{"x":451,"y":683,"on":true},{"x":418,"y":593,"on":true},{"x":380,"y":611,"on":false},{"x":305,"y":631,"on":false},{"x":267,"y":631,"on":true},{"x":214,"y":631,"on":false},{"x":157,"y":579,"on":false},{"x":157,"y":537,"on":true},{"x":157,"y":493,"on":false},{"x":203,"y":442,"on":false},{"x":260,"y":415,"on":true},{"x":499,"y":470,"on":true},{"x":499,"y":400,"on":true},{"x":357,"y":367,"on":true},{"x":408,"y":337,"on":false},{"x":461,"y":257,"on":false},{"x":461,"y":196,"on":true},{"x":461,"y":102,"on":false},{"x":334,"y":-10,"on":false},{"x":226,"y":-10,"on":true},{"x":117,"y":-10,"on":false},{"x":45,"y":25,"on":true},{"x":45,"y":128,"on":true},{"x":83,"y":108,"on":false},{"x":181,"y":82,"on":false},{"x":229,"y":82,"on":true},{"x":292,"y":82,"on":false},{"x":356,"y":141,"on":false},{"x":356,"y":187,"on":true},{"x":356,"y":219,"on":false},{"x":328,"y":264,"on":false},{"x":267,"y":302,"on":false},{"x":216,"y":325,"on":true},{"x":208,"y":328,"on":false},{"x":201,"y":332,"on":true},{"x":3,"y":286,"on":true}] + ] + }, + "uniA7A9": { + "advanceWidth": 434, + "contours": [ + [{"x":3,"y":270,"on":true},{"x":98,"y":289,"on":true},{"x":71,"y":310,"on":false},{"x":43,"y":365,"on":false},{"x":43,"y":404,"on":true},{"x":43,"y":473,"on":false},{"x":145,"y":549,"on":false},{"x":230,"y":549,"on":true},{"x":274,"y":549,"on":false},{"x":352,"y":530,"on":false},{"x":389,"y":512,"on":true},{"x":356,"y":433,"on":true},{"x":325,"y":448,"on":false},{"x":262,"y":467,"on":false},{"x":228,"y":467,"on":true},{"x":186,"y":467,"on":false},{"x":142,"y":436,"on":false},{"x":142,"y":409,"on":true},{"x":142,"y":381,"on":false},{"x":185,"y":346,"on":false},{"x":244,"y":319,"on":true},{"x":432,"y":357,"on":true},{"x":432,"y":285,"on":true},{"x":340,"y":266,"on":true},{"x":367,"y":246,"on":false},{"x":396,"y":191,"on":false},{"x":396,"y":151,"on":true},{"x":396,"y":72,"on":false},{"x":292,"y":-10,"on":false},{"x":199,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":74,"y":6,"on":false},{"x":43,"y":22,"on":true},{"x":43,"y":116,"on":true},{"x":74,"y":99,"on":false},{"x":158,"y":73,"on":false},{"x":199,"y":73,"on":true},{"x":249,"y":73,"on":false},{"x":296,"y":111,"on":false},{"x":296,"y":143,"on":true},{"x":296,"y":170,"on":false},{"x":254,"y":210,"on":false},{"x":193,"y":237,"on":true},{"x":3,"y":198,"on":true}] + ] + }, + "uniA7AA": { + "advanceWidth": 778, + "contours": [ + [{"x":692,"y":0,"on":true},{"x":587,"y":0,"on":true},{"x":587,"y":327,"on":true},{"x":295,"y":327,"on":true},{"x":295,"y":0,"on":true},{"x":190,"y":0,"on":true},{"x":190,"y":627,"on":true},{"x":161,"y":627,"on":true},{"x":127,"y":627,"on":false},{"x":96,"y":588,"on":false},{"x":96,"y":559,"on":true},{"x":96,"y":542,"on":false},{"x":102,"y":514,"on":false},{"x":105,"y":506,"on":true},{"x":20,"y":506,"on":true},{"x":16,"y":515,"on":false},{"x":9,"y":546,"on":false},{"x":9,"y":566,"on":true},{"x":9,"y":606,"on":false},{"x":40,"y":674,"on":false},{"x":110,"y":714,"on":false},{"x":167,"y":714,"on":true},{"x":295,"y":714,"on":true},{"x":295,"y":418,"on":true},{"x":587,"y":418,"on":true},{"x":587,"y":714,"on":true},{"x":692,"y":714,"on":true}] + ] + }, + "uniA7AB": { + "advanceWidth": 548, + "references": [ + {"glyph":"uni0417","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA7AC": { + "advanceWidth": 678, + "contours": [ + [{"x":310,"y":-240,"on":true},{"x":248,"y":-240,"on":false},{"x":141,"y":-220,"on":false},{"x":92,"y":-197,"on":true},{"x":92,"y":-99,"on":true},{"x":144,"y":-124,"on":false},{"x":252,"y":-150,"on":false},{"x":314,"y":-150,"on":true},{"x":405,"y":-150,"on":false},{"x":493,"y":-56,"on":false},{"x":493,"y":52,"on":true},{"x":493,"y":66,"on":true},{"x":493,"y":86,"on":false},{"x":496,"y":133,"on":false},{"x":497,"y":152,"on":true},{"x":493,"y":152,"on":true},{"x":468,"y":108,"on":false},{"x":378,"y":43,"on":false},{"x":305,"y":43,"on":true},{"x":221,"y":43,"on":false},{"x":109,"y":130,"on":false},{"x":54,"y":281,"on":false},{"x":54,"y":378,"on":true},{"x":54,"y":490,"on":false},{"x":117,"y":645,"on":false},{"x":230,"y":724,"on":false},{"x":305,"y":724,"on":true},{"x":374,"y":724,"on":false},{"x":461,"y":667,"on":false},{"x":488,"y":623,"on":true},{"x":492,"y":623,"on":true},{"x":504,"y":714,"on":true},{"x":596,"y":714,"on":true},{"x":596,"y":53,"on":true},{"x":596,"y":-94,"on":false},{"x":462,"y":-240,"on":false}], + [{"x":327,"y":133,"on":true},{"x":390,"y":133,"on":false},{"x":462,"y":197,"on":false},{"x":493,"y":298,"on":false},{"x":493,"y":356,"on":true},{"x":493,"y":406,"on":true},{"x":493,"y":518,"on":false},{"x":409,"y":634,"on":false},{"x":328,"y":634,"on":true},{"x":247,"y":634,"on":false},{"x":164,"y":499,"on":false},{"x":164,"y":380,"on":true},{"x":164,"y":307,"on":false},{"x":198,"y":196,"on":false},{"x":270,"y":133,"on":false}] + ] + }, + "uniA7AD": { + "advanceWidth": 564, + "contours": [ + [{"x":538,"y":89,"on":true},{"x":538,"y":0,"on":true},{"x":152,"y":0,"on":true},{"x":152,"y":307,"on":true},{"x":110,"y":307,"on":true},{"x":51,"y":307,"on":false},{"x":-7,"y":370,"on":false},{"x":-7,"y":416,"on":true},{"x":-7,"y":469,"on":false},{"x":52,"y":526,"on":false},{"x":100,"y":526,"on":true},{"x":131,"y":526,"on":false},{"x":152,"y":507,"on":true},{"x":152,"y":714,"on":true},{"x":256,"y":714,"on":true},{"x":256,"y":367,"on":true},{"x":350,"y":367,"on":true},{"x":350,"y":307,"on":true},{"x":256,"y":307,"on":true},{"x":256,"y":89,"on":true}], + [{"x":153,"y":367,"on":true},{"x":153,"y":385,"on":true},{"x":153,"y":429,"on":false},{"x":128,"y":464,"on":false},{"x":106,"y":464,"on":true},{"x":85,"y":464,"on":false},{"x":62,"y":438,"on":false},{"x":62,"y":416,"on":true},{"x":62,"y":393,"on":false},{"x":92,"y":367,"on":false},{"x":116,"y":367,"on":true}] + ] + }, + "uniA7AE": { + "advanceWidth": 275, + "contours": [ + [{"x":237,"y":0,"on":true},{"x":39,"y":0,"on":true},{"x":39,"y":53,"on":true},{"x":95,"y":69,"on":true},{"x":95,"y":470,"on":true},{"x":39,"y":486,"on":true},{"x":39,"y":539,"on":true},{"x":237,"y":539,"on":true},{"x":237,"y":486,"on":true},{"x":180,"y":470,"on":true},{"x":180,"y":69,"on":true},{"x":237,"y":53,"on":true}] + ] + }, + "uniA7B0": { + "advanceWidth": 571, + "references": [ + {"glyph":"K","x":571,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA7B1": { + "advanceWidth": 501, + "references": [ + {"glyph":"T","x":501,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA7B2": { + "advanceWidth": 287, + "contours": [ + [{"x":206,"y":7,"on":true},{"x":206,"y":-32,"on":false},{"x":198,"y":-65,"on":true},{"x":235,"y":-114,"on":false},{"x":259,"y":-180,"on":true},{"x":203,"y":-202,"on":true},{"x":190,"y":-165,"on":false},{"x":171,"y":-132,"on":true},{"x":152,"y":-162,"on":false},{"x":90,"y":-197,"on":false},{"x":47,"y":-197,"on":true},{"x":-8,"y":-197,"on":false},{"x":-77,"y":-136,"on":false},{"x":-77,"y":-81,"on":true},{"x":-77,"y":-26,"on":false},{"x":-15,"y":34,"on":false},{"x":34,"y":34,"on":true},{"x":69,"y":34,"on":false},{"x":102,"y":19,"on":true},{"x":102,"y":714,"on":true},{"x":206,"y":714,"on":true}], + [{"x":-7,"y":-81,"on":true},{"x":-7,"y":-103,"on":false},{"x":15,"y":-128,"on":false},{"x":36,"y":-128,"on":true},{"x":59,"y":-128,"on":false},{"x":94,"y":-89,"on":false},{"x":99,"y":-49,"on":true},{"x":71,"y":-30,"on":false},{"x":44,"y":-30,"on":true},{"x":18,"y":-30,"on":false},{"x":-7,"y":-60,"on":false}] + ] + }, + "uniA7B3": { + "advanceWidth": 602, + "contours": [ + [{"x":101,"y":725,"on":true},{"x":157,"y":725,"on":false},{"x":210,"y":666,"on":false},{"x":229,"y":601,"on":true},{"x":308,"y":377,"on":true},{"x":461,"y":714,"on":true},{"x":573,"y":714,"on":true},{"x":352,"y":266,"on":true},{"x":473,"y":-62,"on":true},{"x":493,"y":-118,"on":false},{"x":523,"y":-154,"on":false},{"x":548,"y":-154,"on":true},{"x":556,"y":-154,"on":false},{"x":580,"y":-151,"on":false},{"x":593,"y":-147,"on":true},{"x":593,"y":-227,"on":true},{"x":576,"y":-233,"on":false},{"x":541,"y":-240,"on":false},{"x":519,"y":-240,"on":true},{"x":480,"y":-240,"on":false},{"x":430,"y":-205,"on":false},{"x":394,"y":-130,"on":false},{"x":374,"y":-72,"on":true},{"x":294,"y":161,"on":true},{"x":98,"y":-239,"on":true},{"x":-12,"y":-239,"on":true},{"x":247,"y":271,"on":true},{"x":147,"y":548,"on":true},{"x":131,"y":593,"on":false},{"x":104,"y":638,"on":false},{"x":81,"y":638,"on":true},{"x":72,"y":638,"on":false},{"x":46,"y":634,"on":false},{"x":30,"y":628,"on":true},{"x":30,"y":709,"on":true},{"x":46,"y":715,"on":false},{"x":80,"y":725,"on":false}] + ] + }, + "uniA7B4": { + "advanceWidth": 592, + "contours": [ + [{"x":85,"y":714,"on":true},{"x":281,"y":714,"on":true},{"x":406,"y":714,"on":false},{"x":527,"y":627,"on":false},{"x":527,"y":536,"on":true},{"x":527,"y":472,"on":false},{"x":464,"y":389,"on":false},{"x":408,"y":378,"on":true},{"x":408,"y":374,"on":true},{"x":472,"y":361,"on":false},{"x":543,"y":282,"on":false},{"x":543,"y":206,"on":true},{"x":543,"y":107,"on":false},{"x":417,"y":0,"on":false},{"x":309,"y":0,"on":true},{"x":190,"y":0,"on":true},{"x":190,"y":-240,"on":true},{"x":85,"y":-240,"on":true}], + [{"x":190,"y":414,"on":true},{"x":289,"y":414,"on":true},{"x":358,"y":414,"on":false},{"x":419,"y":470,"on":false},{"x":419,"y":525,"on":true},{"x":419,"y":628,"on":false},{"x":282,"y":628,"on":true},{"x":190,"y":628,"on":true}], + [{"x":190,"y":330,"on":true},{"x":190,"y":87,"on":true},{"x":300,"y":87,"on":true},{"x":369,"y":87,"on":false},{"x":434,"y":152,"on":false},{"x":434,"y":213,"on":true},{"x":434,"y":269,"on":false},{"x":365,"y":330,"on":false},{"x":292,"y":330,"on":true}] + ] + }, + "uniA7B5": { + "advanceWidth": 581, + "references": [ + {"glyph":"beta","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA7B6": { + "advanceWidth": 939, + "references": [ + {"glyph":"uniA64C","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniA7B7": { + "advanceWidth": 810, + "references": [ + {"glyph":"uniA64D","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA7F7": { + "advanceWidth": 814, + "references": [ + {"glyph":"I","x":50,"y":533,"a":0,"b":-1,"c":1,"d":0,"roundToGrid":true} + ] + }, + "uniA7F8": { + "advanceWidth": 438, + "references": [ + {"glyph":"Hbar","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uniA7F9": { + "advanceWidth": 562, + "references": [ + {"glyph":"oe","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uniA7FA": { + "advanceWidth": 708, + "references": [ + {"glyph":"uni043C","x":708,"y":539,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA7FB": { + "advanceWidth": 477, + "references": [ + {"glyph":"F","x":477,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA7FC": { + "advanceWidth": 555, + "references": [ + {"glyph":"P","x":555,"y":0,"a":-1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniA7FD": { + "advanceWidth": 850, + "references": [ + {"glyph":"M","x":850,"y":714,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniA7FE": { + "advanceWidth": 332, + "contours": [ + [{"x":296,"y":0,"on":true},{"x":36,"y":0,"on":true},{"x":36,"y":60,"on":true},{"x":113,"y":83,"on":true},{"x":113,"y":845,"on":true},{"x":36,"y":869,"on":true},{"x":36,"y":929,"on":true},{"x":296,"y":929,"on":true},{"x":296,"y":869,"on":true},{"x":218,"y":845,"on":true},{"x":218,"y":83,"on":true},{"x":296,"y":60,"on":true}] + ] + }, + "uniA7FF": { + "advanceWidth": 1048, + "contours": [ + [{"x":8,"y":0,"on":true},{"x":179,"y":714,"on":true},{"x":297,"y":714,"on":true},{"x":394,"y":296,"on":true},{"x":404,"y":249,"on":false},{"x":424,"y":150,"on":false},{"x":429,"y":113,"on":true},{"x":434,"y":153,"on":false},{"x":454,"y":256,"on":false},{"x":465,"y":299,"on":true},{"x":567,"y":714,"on":true},{"x":666,"y":714,"on":true},{"x":773,"y":282,"on":true},{"x":781,"y":247,"on":false},{"x":800,"y":152,"on":false},{"x":805,"y":113,"on":true},{"x":810,"y":149,"on":false},{"x":828,"y":244,"on":false},{"x":835,"y":279,"on":true},{"x":936,"y":714,"on":true},{"x":1041,"y":714,"on":true},{"x":868,"y":0,"on":true},{"x":752,"y":0,"on":true},{"x":644,"y":439,"on":true},{"x":637,"y":464,"on":false},{"x":620,"y":550,"on":false},{"x":616,"y":585,"on":true},{"x":614,"y":566,"on":false},{"x":605,"y":515,"on":false},{"x":594,"y":462,"on":false},{"x":590,"y":443,"on":true},{"x":482,"y":0,"on":true},{"x":371,"y":0,"on":true},{"x":274,"y":424,"on":true},{"x":264,"y":463,"on":false},{"x":244,"y":560,"on":false},{"x":240,"y":599,"on":true},{"x":235,"y":562,"on":false},{"x":218,"y":467,"on":false},{"x":208,"y":427,"on":true},{"x":111,"y":0,"on":true}] + ] + }, + "uniA92E": { + "advanceWidth": 467, + "contours": [ + [{"x":19,"y":203,"on":true},{"x":45,"y":280,"on":false},{"x":161,"y":346,"on":false},{"x":232,"y":346,"on":true},{"x":314,"y":346,"on":false},{"x":427,"y":277,"on":false},{"x":448,"y":203,"on":true},{"x":392,"y":203,"on":true},{"x":375,"y":239,"on":false},{"x":294,"y":282,"on":false},{"x":232,"y":282,"on":true},{"x":181,"y":282,"on":false},{"x":95,"y":243,"on":false},{"x":74,"y":203,"on":true}] + ] + }, + "uniAB30": { + "advanceWidth": 575, + "contours": [ + [{"x":244,"y":-10,"on":true},{"x":159,"y":-10,"on":false},{"x":54,"y":117,"on":false},{"x":49,"y":242,"on":true},{"x":3,"y":242,"on":true},{"x":3,"y":314,"on":true},{"x":50,"y":314,"on":true},{"x":59,"y":429,"on":false},{"x":164,"y":549,"on":false},{"x":252,"y":549,"on":true},{"x":304,"y":549,"on":false},{"x":376,"y":507,"on":false},{"x":399,"y":465,"on":true},{"x":405,"y":465,"on":true},{"x":410,"y":484,"on":false},{"x":425,"y":525,"on":false},{"x":435,"y":539,"on":true},{"x":518,"y":539,"on":true},{"x":508,"y":505,"on":false},{"x":492,"y":390,"on":false},{"x":492,"y":333,"on":true},{"x":492,"y":314,"on":true},{"x":571,"y":314,"on":true},{"x":571,"y":242,"on":true},{"x":492,"y":242,"on":true},{"x":492,"y":136,"on":true},{"x":492,"y":104,"on":false},{"x":514,"y":75,"on":false},{"x":531,"y":75,"on":true},{"x":538,"y":75,"on":false},{"x":556,"y":78,"on":false},{"x":561,"y":80,"on":true},{"x":561,"y":2,"on":true},{"x":554,"y":-2,"on":false},{"x":520,"y":-10,"on":false},{"x":506,"y":-10,"on":true},{"x":464,"y":-10,"on":false},{"x":413,"y":26,"on":false},{"x":401,"y":73,"on":true},{"x":393,"y":73,"on":true},{"x":371,"y":36,"on":false},{"x":300,"y":-10,"on":false}], + [{"x":268,"y":463,"on":true},{"x":217,"y":463,"on":false},{"x":160,"y":387,"on":false},{"x":154,"y":314,"on":true},{"x":390,"y":314,"on":true},{"x":385,"y":388,"on":false},{"x":328,"y":463,"on":false}], + [{"x":270,"y":75,"on":true},{"x":331,"y":75,"on":false},{"x":389,"y":157,"on":false},{"x":392,"y":242,"on":true},{"x":153,"y":242,"on":true},{"x":159,"y":75,"on":false}] + ] + }, + "uniAB31": { + "advanceWidth": 817, + "contours": [ + [{"x":200,"y":-10,"on":true},{"x":126,"y":-10,"on":false},{"x":40,"y":79,"on":false},{"x":40,"y":154,"on":true},{"x":40,"y":236,"on":false},{"x":152,"y":321,"on":false},{"x":260,"y":325,"on":true},{"x":343,"y":328,"on":true},{"x":343,"y":364,"on":true},{"x":343,"y":470,"on":false},{"x":254,"y":470,"on":true},{"x":222,"y":470,"on":false},{"x":155,"y":451,"on":false},{"x":120,"y":433,"on":true},{"x":88,"y":506,"on":true},{"x":127,"y":527,"on":false},{"x":217,"y":550,"on":false},{"x":264,"y":550,"on":true},{"x":371,"y":550,"on":false},{"x":410,"y":472,"on":true},{"x":439,"y":509,"on":false},{"x":524,"y":549,"on":false},{"x":583,"y":549,"on":true},{"x":632,"y":549,"on":false},{"x":708,"y":532,"on":false},{"x":746,"y":513,"on":true},{"x":746,"y":429,"on":true},{"x":705,"y":450,"on":false},{"x":632,"y":468,"on":false},{"x":589,"y":468,"on":true},{"x":520,"y":468,"on":false},{"x":448,"y":378,"on":false},{"x":446,"y":293,"on":true},{"x":771,"y":293,"on":true},{"x":771,"y":234,"on":true},{"x":771,"y":124,"on":false},{"x":664,"y":-10,"on":false},{"x":566,"y":-10,"on":true},{"x":508,"y":-10,"on":false},{"x":414,"y":44,"on":false},{"x":388,"y":98,"on":true},{"x":356,"y":44,"on":false},{"x":270,"y":-10,"on":false}], + [{"x":226,"y":70,"on":true},{"x":280,"y":70,"on":false},{"x":343,"y":144,"on":false},{"x":343,"y":211,"on":true},{"x":343,"y":261,"on":true},{"x":282,"y":258,"on":true},{"x":214,"y":256,"on":false},{"x":145,"y":206,"on":false},{"x":145,"y":154,"on":true},{"x":145,"y":111,"on":false},{"x":188,"y":70,"on":false}], + [{"x":565,"y":68,"on":true},{"x":620,"y":68,"on":false},{"x":673,"y":154,"on":false},{"x":673,"y":219,"on":true},{"x":448,"y":219,"on":true},{"x":452,"y":142,"on":false},{"x":515,"y":68,"on":false}] + ] + }, + "uniAB32": { + "advanceWidth": 415, + "contours": [ + [{"x":231,"y":-23,"on":true},{"x":204,"y":-10,"on":true},{"x":208,"y":3,"on":true},{"x":172,"y":16,"on":false},{"x":103,"y":53,"on":false},{"x":58,"y":122,"on":false},{"x":58,"y":182,"on":true},{"x":58,"y":323,"on":true},{"x":58,"y":347,"on":false},{"x":67,"y":379,"on":false},{"x":90,"y":395,"on":true},{"x":259,"y":509,"on":true},{"x":281,"y":509,"on":true},{"x":377,"y":366,"on":true},{"x":380,"y":362,"on":false},{"x":384,"y":354,"on":false},{"x":384,"y":349,"on":true},{"x":384,"y":343,"on":false},{"x":372,"y":334,"on":true},{"x":176,"y":186,"on":true},{"x":176,"y":158,"on":false},{"x":211,"y":122,"on":false},{"x":255,"y":105,"on":false},{"x":270,"y":105,"on":true},{"x":290,"y":105,"on":false},{"x":329,"y":118,"on":false},{"x":361,"y":146,"on":true},{"x":381,"y":124,"on":true}], + [{"x":175,"y":352,"on":true},{"x":175,"y":231,"on":true},{"x":275,"y":305,"on":true},{"x":282,"y":310,"on":false},{"x":282,"y":314,"on":true},{"x":282,"y":316,"on":false},{"x":278,"y":322,"on":true},{"x":208,"y":431,"on":true},{"x":191,"y":419,"on":false},{"x":177,"y":402,"on":false},{"x":175,"y":377,"on":false}] + ] + }, + "uniAB33": { + "advanceWidth": 521, + "contours": [ + [{"x":3,"y":243,"on":true},{"x":48,"y":243,"on":true},{"x":47,"y":254,"on":false},{"x":47,"y":266,"on":true},{"x":47,"y":400,"on":false},{"x":165,"y":549,"on":false},{"x":270,"y":549,"on":true},{"x":369,"y":549,"on":false},{"x":474,"y":424,"on":false},{"x":475,"y":312,"on":true},{"x":151,"y":312,"on":true},{"x":150,"y":299,"on":false},{"x":149,"y":274,"on":false},{"x":149,"y":261,"on":true},{"x":149,"y":251,"on":false},{"x":149,"y":243,"on":true},{"x":518,"y":243,"on":true},{"x":518,"y":183,"on":true},{"x":157,"y":183,"on":true},{"x":171,"y":124,"on":false},{"x":243,"y":71,"on":false},{"x":297,"y":71,"on":true},{"x":340,"y":71,"on":false},{"x":412,"y":88,"on":false},{"x":451,"y":106,"on":true},{"x":451,"y":25,"on":true},{"x":416,"y":8,"on":false},{"x":338,"y":-10,"on":false},{"x":289,"y":-10,"on":true},{"x":192,"y":-10,"on":false},{"x":72,"y":89,"on":false},{"x":54,"y":183,"on":true},{"x":3,"y":183,"on":true}], + [{"x":270,"y":473,"on":true},{"x":228,"y":473,"on":false},{"x":172,"y":424,"on":false},{"x":159,"y":371,"on":true},{"x":374,"y":371,"on":true},{"x":366,"y":418,"on":false},{"x":316,"y":473,"on":false}] + ] + }, + "uniAB34": { + "advanceWidth": 721, + "contours": [ + [{"x":16,"y":194,"on":true},{"x":16,"y":257,"on":false},{"x":95,"y":329,"on":false},{"x":160,"y":329,"on":true},{"x":184,"y":329,"on":false},{"x":227,"y":325,"on":false},{"x":251,"y":323,"on":true},{"x":263,"y":432,"on":false},{"x":377,"y":549,"on":false},{"x":468,"y":549,"on":true},{"x":566,"y":549,"on":false},{"x":675,"y":416,"on":false},{"x":675,"y":307,"on":true},{"x":675,"y":247,"on":true},{"x":351,"y":247,"on":true},{"x":356,"y":74,"on":false},{"x":495,"y":74,"on":true},{"x":539,"y":74,"on":false},{"x":612,"y":92,"on":false},{"x":651,"y":112,"on":true},{"x":651,"y":26,"on":true},{"x":614,"y":7,"on":false},{"x":538,"y":-10,"on":false},{"x":488,"y":-10,"on":true},{"x":378,"y":-10,"on":false},{"x":252,"y":127,"on":false},{"x":248,"y":250,"on":true},{"x":227,"y":251,"on":false},{"x":189,"y":255,"on":false},{"x":167,"y":255,"on":true},{"x":134,"y":255,"on":false},{"x":96,"y":224,"on":false},{"x":96,"y":196,"on":true},{"x":96,"y":169,"on":false},{"x":129,"y":137,"on":false},{"x":159,"y":137,"on":true},{"x":189,"y":137,"on":false},{"x":207,"y":146,"on":true},{"x":207,"y":74,"on":true},{"x":199,"y":71,"on":false},{"x":170,"y":65,"on":false},{"x":147,"y":65,"on":true},{"x":83,"y":65,"on":false},{"x":16,"y":136,"on":false}], + [{"x":468,"y":469,"on":true},{"x":418,"y":469,"on":false},{"x":358,"y":395,"on":false},{"x":353,"y":324,"on":true},{"x":575,"y":324,"on":true},{"x":575,"y":387,"on":false},{"x":523,"y":469,"on":false}] + ] + }, + "uniAB35": { + "advanceWidth": 319, + "contours": [ + [{"x":309,"y":458,"on":true},{"x":197,"y":458,"on":true},{"x":197,"y":0,"on":true},{"x":95,"y":0,"on":true},{"x":95,"y":458,"on":true},{"x":8,"y":458,"on":true},{"x":8,"y":540,"on":true},{"x":95,"y":540,"on":true},{"x":95,"y":577,"on":true},{"x":95,"y":677,"on":false},{"x":172,"y":765,"on":false},{"x":253,"y":765,"on":true},{"x":283,"y":765,"on":false},{"x":336,"y":755,"on":false},{"x":358,"y":747,"on":true},{"x":334,"y":668,"on":true},{"x":317,"y":673,"on":false},{"x":283,"y":680,"on":false},{"x":264,"y":680,"on":true},{"x":226,"y":680,"on":false},{"x":197,"y":629,"on":false},{"x":197,"y":578,"on":true},{"x":197,"y":540,"on":true},{"x":309,"y":540,"on":true}] + ] + }, + "uniAB36": { + "advanceWidth": 564, + "contours": [ + [{"x":489,"y":12,"on":true},{"x":489,"y":-73,"on":false},{"x":453,"y":-136,"on":true},{"x":480,"y":-175,"on":false},{"x":494,"y":-220,"on":true},{"x":432,"y":-244,"on":true},{"x":421,"y":-211,"on":false},{"x":406,"y":-188,"on":true},{"x":379,"y":-212,"on":false},{"x":300,"y":-240,"on":false},{"x":244,"y":-240,"on":true},{"x":170,"y":-240,"on":false},{"x":76,"y":-184,"on":false},{"x":76,"y":-125,"on":true},{"x":76,"y":-71,"on":false},{"x":157,"y":-13,"on":false},{"x":231,"y":-13,"on":true},{"x":277,"y":-13,"on":false},{"x":353,"y":-39,"on":false},{"x":381,"y":-60,"on":true},{"x":388,"y":-31,"on":false},{"x":388,"y":5,"on":true},{"x":388,"y":30,"on":true},{"x":388,"y":68,"on":false},{"x":391,"y":107,"on":true},{"x":387,"y":107,"on":true},{"x":361,"y":64,"on":false},{"x":287,"y":25,"on":false},{"x":238,"y":25,"on":true},{"x":147,"y":25,"on":false},{"x":47,"y":160,"on":false},{"x":47,"y":285,"on":true},{"x":47,"y":405,"on":false},{"x":148,"y":550,"on":false},{"x":242,"y":550,"on":true},{"x":337,"y":550,"on":false},{"x":388,"y":468,"on":true},{"x":393,"y":468,"on":true},{"x":403,"y":540,"on":true},{"x":489,"y":540,"on":true}], + [{"x":271,"y":463,"on":true},{"x":210,"y":463,"on":false},{"x":152,"y":370,"on":false},{"x":152,"y":287,"on":true},{"x":150,"y":110,"on":false},{"x":268,"y":110,"on":true},{"x":333,"y":110,"on":false},{"x":391,"y":196,"on":false},{"x":391,"y":272,"on":true},{"x":391,"y":289,"on":true},{"x":391,"y":374,"on":false},{"x":336,"y":463,"on":false}], + [{"x":243,"y":-169,"on":true},{"x":286,"y":-169,"on":false},{"x":341,"y":-144,"on":false},{"x":356,"y":-122,"on":true},{"x":336,"y":-102,"on":false},{"x":274,"y":-75,"on":false},{"x":236,"y":-75,"on":true},{"x":193,"y":-75,"on":false},{"x":157,"y":-100,"on":false},{"x":157,"y":-121,"on":true},{"x":157,"y":-142,"on":false},{"x":201,"y":-169,"on":false}] + ] + }, + "uniAB37": { + "advanceWidth": 416, + "contours": [ + [{"x":260,"y":0,"on":true},{"x":157,"y":0,"on":true},{"x":157,"y":430,"on":true},{"x":137,"y":435,"on":false},{"x":122,"y":435,"on":true},{"x":88,"y":435,"on":false},{"x":61,"y":401,"on":false},{"x":61,"y":379,"on":true},{"x":61,"y":343,"on":false},{"x":89,"y":320,"on":true},{"x":110,"y":299,"on":false},{"x":110,"y":281,"on":true},{"x":110,"y":268,"on":false},{"x":93,"y":253,"on":false},{"x":81,"y":254,"on":true},{"x":52,"y":254,"on":false},{"x":-1,"y":320,"on":false},{"x":-1,"y":378,"on":true},{"x":-1,"y":441,"on":false},{"x":71,"y":498,"on":false},{"x":120,"y":498,"on":true},{"x":136,"y":498,"on":false},{"x":157,"y":494,"on":true},{"x":157,"y":760,"on":true},{"x":260,"y":760,"on":true},{"x":260,"y":468,"on":true},{"x":280,"y":464,"on":false},{"x":296,"y":464,"on":true},{"x":327,"y":464,"on":false},{"x":354,"y":499,"on":false},{"x":354,"y":519,"on":true},{"x":354,"y":536,"on":false},{"x":342,"y":567,"on":false},{"x":329,"y":579,"on":true},{"x":305,"y":597,"on":false},{"x":305,"y":618,"on":true},{"x":305,"y":632,"on":false},{"x":321,"y":647,"on":false},{"x":333,"y":647,"on":true},{"x":364,"y":647,"on":false},{"x":416,"y":579,"on":false},{"x":416,"y":521,"on":true},{"x":416,"y":460,"on":false},{"x":347,"y":401,"on":false},{"x":298,"y":401,"on":true},{"x":281,"y":401,"on":false},{"x":260,"y":405,"on":true}] + ] + }, + "uniAB38": { + "advanceWidth": 383, + "contours": [ + [{"x":140,"y":0,"on":true},{"x":140,"y":271,"on":true},{"x":132,"y":277,"on":false},{"x":116,"y":285,"on":false},{"x":106,"y":285,"on":true},{"x":86,"y":285,"on":false},{"x":60,"y":253,"on":false},{"x":55,"y":217,"on":true},{"x":-2,"y":217,"on":true},{"x":1,"y":286,"on":false},{"x":63,"y":355,"on":false},{"x":108,"y":355,"on":true},{"x":117,"y":355,"on":false},{"x":133,"y":351,"on":false},{"x":140,"y":348,"on":true},{"x":140,"y":448,"on":true},{"x":132,"y":453,"on":false},{"x":116,"y":461,"on":false},{"x":106,"y":461,"on":true},{"x":86,"y":461,"on":false},{"x":60,"y":430,"on":false},{"x":55,"y":393,"on":true},{"x":-2,"y":393,"on":true},{"x":1,"y":462,"on":false},{"x":63,"y":532,"on":false},{"x":108,"y":532,"on":true},{"x":117,"y":532,"on":false},{"x":133,"y":528,"on":false},{"x":140,"y":525,"on":true},{"x":140,"y":760,"on":true},{"x":242,"y":760,"on":true},{"x":242,"y":476,"on":true},{"x":250,"y":471,"on":false},{"x":267,"y":464,"on":false},{"x":276,"y":464,"on":true},{"x":297,"y":464,"on":false},{"x":322,"y":495,"on":false},{"x":327,"y":532,"on":true},{"x":384,"y":532,"on":true},{"x":380,"y":462,"on":false},{"x":319,"y":393,"on":false},{"x":275,"y":393,"on":true},{"x":266,"y":393,"on":false},{"x":250,"y":397,"on":false},{"x":242,"y":400,"on":true},{"x":242,"y":300,"on":true},{"x":250,"y":295,"on":false},{"x":267,"y":287,"on":false},{"x":276,"y":287,"on":true},{"x":297,"y":287,"on":false},{"x":322,"y":319,"on":false},{"x":327,"y":355,"on":true},{"x":384,"y":355,"on":true},{"x":380,"y":285,"on":false},{"x":319,"y":216,"on":false},{"x":275,"y":216,"on":true},{"x":258,"y":216,"on":false},{"x":242,"y":224,"on":true},{"x":242,"y":0,"on":true}] + ] + }, + "uniAB39": { + "advanceWidth": 391, + "contours": [ + [{"x":248,"y":0,"on":true},{"x":145,"y":0,"on":true},{"x":145,"y":217,"on":true},{"x":88,"y":232,"on":false},{"x":18,"y":321,"on":false},{"x":18,"y":383,"on":true},{"x":18,"y":445,"on":false},{"x":89,"y":534,"on":false},{"x":145,"y":549,"on":true},{"x":145,"y":760,"on":true},{"x":248,"y":760,"on":true},{"x":248,"y":548,"on":true},{"x":304,"y":533,"on":false},{"x":373,"y":443,"on":false},{"x":373,"y":383,"on":true},{"x":373,"y":322,"on":false},{"x":304,"y":233,"on":false},{"x":248,"y":218,"on":true}], + [{"x":80,"y":383,"on":true},{"x":80,"y":349,"on":false},{"x":115,"y":293,"on":false},{"x":145,"y":280,"on":true},{"x":145,"y":487,"on":true},{"x":115,"y":473,"on":false},{"x":80,"y":418,"on":false}], + [{"x":312,"y":383,"on":true},{"x":312,"y":418,"on":false},{"x":277,"y":473,"on":false},{"x":248,"y":486,"on":true},{"x":248,"y":280,"on":true},{"x":277,"y":294,"on":false},{"x":312,"y":348,"on":false}] + ] + }, + "uniAB3A": { + "advanceWidth": 868, + "contours": [ + [{"x":662,"y":-10,"on":true},{"x":610,"y":-10,"on":false},{"x":546,"y":45,"on":false},{"x":546,"y":100,"on":true},{"x":546,"y":211,"on":false},{"x":690,"y":220,"on":true},{"x":690,"y":337,"on":true},{"x":690,"y":463,"on":false},{"x":601,"y":463,"on":true},{"x":540,"y":463,"on":false},{"x":484,"y":376,"on":false},{"x":484,"y":290,"on":true},{"x":484,"y":0,"on":true},{"x":381,"y":0,"on":true},{"x":381,"y":339,"on":true},{"x":381,"y":403,"on":false},{"x":338,"y":463,"on":false},{"x":293,"y":463,"on":true},{"x":228,"y":463,"on":false},{"x":178,"y":365,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true},{"x":159,"y":540,"on":true},{"x":173,"y":468,"on":true},{"x":179,"y":468,"on":true},{"x":200,"y":509,"on":false},{"x":275,"y":550,"on":false},{"x":320,"y":550,"on":true},{"x":430,"y":550,"on":false},{"x":467,"y":464,"on":true},{"x":474,"y":464,"on":true},{"x":498,"y":508,"on":false},{"x":577,"y":550,"on":false},{"x":625,"y":550,"on":true},{"x":708,"y":550,"on":false},{"x":792,"y":456,"on":false},{"x":792,"y":355,"on":true},{"x":792,"y":218,"on":true},{"x":813,"y":216,"on":false},{"x":851,"y":207,"on":false},{"x":866,"y":202,"on":true},{"x":850,"y":141,"on":true},{"x":834,"y":146,"on":false},{"x":806,"y":153,"on":false},{"x":792,"y":155,"on":true},{"x":792,"y":73,"on":false},{"x":730,"y":-10,"on":false}], + [{"x":649,"y":57,"on":true},{"x":671,"y":57,"on":false},{"x":690,"y":91,"on":false},{"x":690,"y":132,"on":true},{"x":690,"y":156,"on":true},{"x":642,"y":156,"on":false},{"x":610,"y":124,"on":false},{"x":610,"y":101,"on":true},{"x":610,"y":82,"on":false},{"x":629,"y":57,"on":false}] + ] + }, + "uniAB3B": { + "advanceWidth": 583, + "contours": [ + [{"x":375,"y":-10,"on":true},{"x":324,"y":-10,"on":false},{"x":258,"y":45,"on":false},{"x":258,"y":100,"on":true},{"x":258,"y":211,"on":false},{"x":404,"y":220,"on":true},{"x":404,"y":334,"on":true},{"x":404,"y":399,"on":false},{"x":358,"y":463,"on":false},{"x":309,"y":463,"on":true},{"x":236,"y":463,"on":false},{"x":178,"y":370,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true},{"x":156,"y":540,"on":true},{"x":169,"y":468,"on":true},{"x":175,"y":468,"on":true},{"x":199,"y":509,"on":false},{"x":281,"y":550,"on":false},{"x":333,"y":550,"on":true},{"x":416,"y":550,"on":false},{"x":506,"y":455,"on":false},{"x":506,"y":356,"on":true},{"x":506,"y":218,"on":true},{"x":528,"y":215,"on":false},{"x":565,"y":207,"on":false},{"x":581,"y":202,"on":true},{"x":564,"y":142,"on":true},{"x":531,"y":151,"on":false},{"x":507,"y":155,"on":true},{"x":507,"y":73,"on":false},{"x":444,"y":-10,"on":false}], + [{"x":362,"y":57,"on":true},{"x":385,"y":57,"on":false},{"x":404,"y":92,"on":false},{"x":404,"y":132,"on":true},{"x":404,"y":156,"on":true},{"x":356,"y":155,"on":false},{"x":323,"y":123,"on":false},{"x":323,"y":100,"on":true},{"x":323,"y":82,"on":false},{"x":343,"y":57,"on":false}] + ] + }, + "uniAB3C": { + "advanceWidth": 574, + "contours": [ + [{"x":499,"y":-243,"on":true},{"x":485,"y":-205,"on":false},{"x":465,"y":-173,"on":true},{"x":445,"y":-203,"on":false},{"x":382,"y":-238,"on":false},{"x":337,"y":-238,"on":true},{"x":282,"y":-238,"on":false},{"x":210,"y":-179,"on":false},{"x":210,"y":-126,"on":true},{"x":210,"y":-73,"on":false},{"x":276,"y":-14,"on":false},{"x":326,"y":-14,"on":true},{"x":363,"y":-14,"on":false},{"x":398,"y":-29,"on":true},{"x":398,"y":338,"on":true},{"x":398,"y":463,"on":false},{"x":305,"y":463,"on":true},{"x":234,"y":463,"on":false},{"x":178,"y":370,"on":false},{"x":178,"y":273,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true},{"x":157,"y":540,"on":true},{"x":170,"y":468,"on":true},{"x":176,"y":468,"on":true},{"x":198,"y":509,"on":false},{"x":279,"y":550,"on":false},{"x":330,"y":550,"on":true},{"x":411,"y":550,"on":false},{"x":500,"y":456,"on":false},{"x":500,"y":357,"on":true},{"x":500,"y":-36,"on":true},{"x":500,"y":-73,"on":false},{"x":493,"y":-104,"on":true},{"x":532,"y":-153,"on":false},{"x":557,"y":-222,"on":true}], + [{"x":281,"y":-125,"on":true},{"x":281,"y":-144,"on":false},{"x":303,"y":-172,"on":false},{"x":327,"y":-172,"on":true},{"x":384,"y":-172,"on":false},{"x":396,"y":-98,"on":true},{"x":365,"y":-77,"on":false},{"x":335,"y":-77,"on":true},{"x":309,"y":-77,"on":false},{"x":281,"y":-104,"on":false}] + ] + }, + "uniAB3D": { + "advanceWidth": 459, + "contours": [ + [{"x":331,"y":509,"on":true},{"x":346,"y":481,"on":true},{"x":332,"y":474,"on":true},{"x":342,"y":452,"on":false},{"x":368,"y":408,"on":false},{"x":376,"y":395,"on":true},{"x":398,"y":360,"on":false},{"x":436,"y":294,"on":false},{"x":436,"y":254,"on":true},{"x":436,"y":211,"on":false},{"x":386,"y":132,"on":false},{"x":308,"y":50,"on":false},{"x":267,"y":4,"on":true},{"x":243,"y":-23,"on":true},{"x":213,"y":-23,"on":true},{"x":212,"y":-15,"on":false},{"x":163,"y":10,"on":false},{"x":88,"y":36,"on":false},{"x":44,"y":48,"on":true},{"x":44,"y":78,"on":true},{"x":58,"y":82,"on":false},{"x":67,"y":110,"on":false},{"x":67,"y":147,"on":true},{"x":67,"y":318,"on":true},{"x":67,"y":339,"on":false},{"x":65,"y":380,"on":false},{"x":62,"y":400,"on":true}], + [{"x":229,"y":428,"on":true},{"x":184,"y":410,"on":true},{"x":184,"y":112,"on":true},{"x":228,"y":90,"on":false},{"x":271,"y":72,"on":false},{"x":276,"y":72,"on":true},{"x":282,"y":72,"on":false},{"x":306,"y":104,"on":false},{"x":325,"y":162,"on":false},{"x":325,"y":199,"on":true},{"x":325,"y":245,"on":false},{"x":287,"y":319,"on":false},{"x":274,"y":341,"on":true},{"x":258,"y":370,"on":false},{"x":238,"y":406,"on":false}] + ] + }, + "uniAB3E": { + "advanceWidth": 459, + "contours": [ + [{"x":331,"y":509,"on":true},{"x":346,"y":481,"on":true},{"x":332,"y":474,"on":true},{"x":336,"y":465,"on":false},{"x":345,"y":448,"on":false},{"x":350,"y":440,"on":true},{"x":410,"y":532,"on":true},{"x":447,"y":507,"on":true},{"x":375,"y":397,"on":true},{"x":376,"y":395,"on":true},{"x":398,"y":360,"on":false},{"x":436,"y":294,"on":false},{"x":436,"y":254,"on":true},{"x":436,"y":211,"on":false},{"x":386,"y":132,"on":false},{"x":308,"y":50,"on":false},{"x":267,"y":4,"on":true},{"x":243,"y":-23,"on":true},{"x":213,"y":-23,"on":true},{"x":212,"y":-15,"on":false},{"x":165,"y":9,"on":false},{"x":130,"y":21,"on":true},{"x":86,"y":-46,"on":true},{"x":49,"y":-21,"on":true},{"x":86,"y":36,"on":true},{"x":65,"y":42,"on":false},{"x":44,"y":48,"on":true},{"x":44,"y":78,"on":true},{"x":58,"y":82,"on":false},{"x":67,"y":110,"on":false},{"x":67,"y":147,"on":true},{"x":67,"y":318,"on":true},{"x":67,"y":339,"on":false},{"x":65,"y":380,"on":false},{"x":62,"y":400,"on":true}], + [{"x":229,"y":428,"on":true},{"x":184,"y":410,"on":true},{"x":184,"y":186,"on":true},{"x":279,"y":332,"on":true},{"x":278,"y":334,"on":false},{"x":275,"y":339,"on":false},{"x":274,"y":341,"on":true},{"x":258,"y":370,"on":false},{"x":238,"y":406,"on":false}], + [{"x":325,"y":199,"on":true},{"x":325,"y":224,"on":false},{"x":312,"y":268,"on":false},{"x":304,"y":287,"on":true},{"x":188,"y":110,"on":true},{"x":229,"y":89,"on":false},{"x":271,"y":72,"on":false},{"x":276,"y":72,"on":true},{"x":282,"y":72,"on":false},{"x":306,"y":104,"on":false},{"x":325,"y":162,"on":false}] + ] + }, + "uniAB3F": { + "advanceWidth": 540, + "contours": [ + [{"x":136,"y":227,"on":true},{"x":139,"y":207,"on":false},{"x":150,"y":170,"on":false},{"x":157,"y":157,"on":true},{"x":337,"y":439,"on":true},{"x":308,"y":465,"on":false},{"x":263,"y":465,"on":true},{"x":230,"y":465,"on":false},{"x":166,"y":449,"on":false},{"x":137,"y":432,"on":true},{"x":137,"y":521,"on":true},{"x":189,"y":550,"on":false},{"x":267,"y":550,"on":true},{"x":334,"y":550,"on":false},{"x":383,"y":515,"on":true},{"x":419,"y":572,"on":true},{"x":475,"y":536,"on":true},{"x":435,"y":471,"on":true},{"x":464,"y":435,"on":false},{"x":494,"y":334,"on":false},{"x":494,"y":271,"on":true},{"x":494,"y":139,"on":false},{"x":373,"y":-10,"on":false},{"x":263,"y":-10,"on":true},{"x":201,"y":-10,"on":false},{"x":151,"y":21,"on":true},{"x":113,"y":-42,"on":true},{"x":57,"y":-6,"on":true},{"x":99,"y":64,"on":true},{"x":80,"y":86,"on":false},{"x":53,"y":145,"on":false},{"x":46,"y":180,"on":true}], + [{"x":390,"y":271,"on":true},{"x":390,"y":333,"on":false},{"x":375,"y":375,"on":true},{"x":197,"y":96,"on":true},{"x":225,"y":74,"on":false},{"x":265,"y":74,"on":true},{"x":330,"y":74,"on":false},{"x":390,"y":177,"on":false}] + ] + }, + "uniAB40": { + "advanceWidth": 865, + "references": [ + {"glyph":"oe","x":0,"y":544,"a":1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniAB41": { + "advanceWidth": 871, + "contours": [ + [{"x":259,"y":-10,"on":true},{"x":160,"y":-10,"on":false},{"x":53,"y":123,"on":false},{"x":53,"y":232,"on":true},{"x":53,"y":292,"on":true},{"x":374,"y":292,"on":true},{"x":370,"y":466,"on":false},{"x":234,"y":466,"on":true},{"x":188,"y":466,"on":false},{"x":115,"y":447,"on":false},{"x":77,"y":428,"on":true},{"x":77,"y":513,"on":true},{"x":114,"y":532,"on":false},{"x":189,"y":549,"on":false},{"x":239,"y":549,"on":true},{"x":363,"y":549,"on":false},{"x":423,"y":452,"on":true},{"x":479,"y":549,"on":false},{"x":599,"y":549,"on":true},{"x":663,"y":549,"on":false},{"x":712,"y":519,"on":true},{"x":743,"y":572,"on":true},{"x":799,"y":539,"on":true},{"x":762,"y":476,"on":true},{"x":792,"y":440,"on":false},{"x":825,"y":335,"on":false},{"x":825,"y":268,"on":true},{"x":825,"y":135,"on":false},{"x":706,"y":-10,"on":false},{"x":597,"y":-10,"on":true},{"x":539,"y":-10,"on":false},{"x":494,"y":17,"on":true},{"x":459,"y":-43,"on":true},{"x":403,"y":-11,"on":true},{"x":444,"y":60,"on":true},{"x":434,"y":72,"on":false},{"x":426,"y":86,"on":true},{"x":370,"y":-10,"on":false}], + [{"x":476,"y":270,"on":true},{"x":476,"y":192,"on":false},{"x":495,"y":146,"on":true},{"x":667,"y":442,"on":true},{"x":639,"y":464,"on":false},{"x":597,"y":464,"on":true},{"x":534,"y":464,"on":false},{"x":476,"y":367,"on":false}], + [{"x":599,"y":75,"on":true},{"x":663,"y":75,"on":false},{"x":720,"y":172,"on":false},{"x":720,"y":269,"on":true},{"x":720,"y":336,"on":false},{"x":706,"y":380,"on":true},{"x":537,"y":91,"on":true},{"x":563,"y":75,"on":false}], + [{"x":259,"y":71,"on":true},{"x":308,"y":71,"on":false},{"x":368,"y":143,"on":false},{"x":372,"y":215,"on":true},{"x":153,"y":215,"on":true},{"x":153,"y":151,"on":false},{"x":205,"y":71,"on":false}] + ] + }, + "uniAB42": { + "advanceWidth": 871, + "contours": [ + [{"x":259,"y":-10,"on":true},{"x":160,"y":-10,"on":false},{"x":53,"y":123,"on":false},{"x":53,"y":232,"on":true},{"x":53,"y":292,"on":true},{"x":374,"y":292,"on":true},{"x":370,"y":466,"on":false},{"x":234,"y":466,"on":true},{"x":188,"y":466,"on":false},{"x":115,"y":447,"on":false},{"x":77,"y":428,"on":true},{"x":77,"y":513,"on":true},{"x":114,"y":532,"on":false},{"x":189,"y":549,"on":false},{"x":239,"y":549,"on":true},{"x":363,"y":549,"on":false},{"x":423,"y":452,"on":true},{"x":479,"y":549,"on":false},{"x":599,"y":549,"on":true},{"x":701,"y":549,"on":false},{"x":825,"y":401,"on":false},{"x":825,"y":268,"on":true},{"x":825,"y":135,"on":false},{"x":706,"y":-10,"on":false},{"x":597,"y":-10,"on":true},{"x":482,"y":-10,"on":false},{"x":426,"y":86,"on":true},{"x":370,"y":-10,"on":false}], + [{"x":597,"y":464,"on":true},{"x":540,"y":464,"on":false},{"x":482,"y":385,"on":false},{"x":477,"y":306,"on":true},{"x":719,"y":306,"on":true},{"x":714,"y":384,"on":false},{"x":654,"y":464,"on":false}], + [{"x":599,"y":75,"on":true},{"x":657,"y":75,"on":false},{"x":714,"y":155,"on":false},{"x":719,"y":234,"on":true},{"x":477,"y":234,"on":true},{"x":487,"y":75,"on":false}], + [{"x":259,"y":71,"on":true},{"x":308,"y":71,"on":false},{"x":368,"y":143,"on":false},{"x":372,"y":215,"on":true},{"x":153,"y":215,"on":true},{"x":153,"y":151,"on":false},{"x":205,"y":71,"on":false}] + ] + }, + "uniAB43": { + "advanceWidth": 886, + "contours": [ + [{"x":280,"y":-10,"on":true},{"x":170,"y":-10,"on":false},{"x":47,"y":138,"on":false},{"x":47,"y":268,"on":true},{"x":47,"y":403,"on":false},{"x":169,"y":550,"on":false},{"x":280,"y":550,"on":true},{"x":306,"y":550,"on":false},{"x":347,"y":542,"on":false},{"x":365,"y":536,"on":true},{"x":335,"y":453,"on":true},{"x":311,"y":463,"on":false},{"x":278,"y":463,"on":true},{"x":216,"y":463,"on":false},{"x":152,"y":364,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":217,"y":76,"on":false},{"x":287,"y":76,"on":true},{"x":323,"y":76,"on":false},{"x":381,"y":101,"on":false},{"x":407,"y":125,"on":true},{"x":381,"y":187,"on":false},{"x":381,"y":271,"on":true},{"x":381,"y":401,"on":false},{"x":498,"y":550,"on":false},{"x":611,"y":550,"on":true},{"x":716,"y":550,"on":false},{"x":839,"y":403,"on":false},{"x":839,"y":271,"on":true},{"x":839,"y":144,"on":false},{"x":722,"y":-10,"on":false},{"x":609,"y":-10,"on":true},{"x":511,"y":-10,"on":false},{"x":451,"y":55,"on":true},{"x":383,"y":-10,"on":false}], + [{"x":610,"y":76,"on":true},{"x":674,"y":76,"on":false},{"x":734,"y":177,"on":false},{"x":734,"y":271,"on":true},{"x":734,"y":364,"on":false},{"x":674,"y":464,"on":false},{"x":610,"y":464,"on":true},{"x":486,"y":464,"on":false},{"x":486,"y":270,"on":true},{"x":486,"y":178,"on":false},{"x":546,"y":76,"on":false}] + ] + }, + "uniAB44": { + "advanceWidth": 889, + "contours": [ + [{"x":280,"y":-10,"on":true},{"x":170,"y":-10,"on":false},{"x":47,"y":138,"on":false},{"x":47,"y":268,"on":true},{"x":47,"y":403,"on":false},{"x":169,"y":550,"on":false},{"x":280,"y":550,"on":true},{"x":306,"y":550,"on":false},{"x":347,"y":542,"on":false},{"x":365,"y":536,"on":true},{"x":335,"y":453,"on":true},{"x":311,"y":463,"on":false},{"x":278,"y":463,"on":true},{"x":216,"y":463,"on":false},{"x":152,"y":364,"on":false},{"x":152,"y":268,"on":true},{"x":152,"y":174,"on":false},{"x":217,"y":76,"on":false},{"x":287,"y":76,"on":true},{"x":323,"y":76,"on":false},{"x":381,"y":101,"on":false},{"x":407,"y":125,"on":true},{"x":381,"y":187,"on":false},{"x":381,"y":271,"on":true},{"x":381,"y":401,"on":false},{"x":498,"y":550,"on":false},{"x":611,"y":550,"on":true},{"x":664,"y":550,"on":false},{"x":706,"y":531,"on":true},{"x":731,"y":579,"on":true},{"x":788,"y":548,"on":true},{"x":761,"y":495,"on":true},{"x":798,"y":459,"on":false},{"x":839,"y":346,"on":false},{"x":839,"y":271,"on":true},{"x":839,"y":144,"on":false},{"x":722,"y":-10,"on":false},{"x":609,"y":-10,"on":true},{"x":556,"y":-10,"on":false},{"x":513,"y":10,"on":true},{"x":486,"y":-43,"on":true},{"x":429,"y":-12,"on":true},{"x":459,"y":47,"on":true},{"x":455,"y":51,"on":false},{"x":451,"y":55,"on":true},{"x":383,"y":-10,"on":false}], + [{"x":486,"y":270,"on":true},{"x":486,"y":189,"on":false},{"x":508,"y":142,"on":true},{"x":666,"y":451,"on":true},{"x":642,"y":464,"on":false},{"x":610,"y":464,"on":true},{"x":486,"y":464,"on":false}], + [{"x":610,"y":76,"on":true},{"x":674,"y":76,"on":false},{"x":734,"y":177,"on":false},{"x":734,"y":271,"on":true},{"x":734,"y":352,"on":false},{"x":712,"y":399,"on":true},{"x":554,"y":89,"on":true},{"x":578,"y":76,"on":false}] + ] + }, + "uniAB45": { + "advanceWidth": 580, + "contours": [ + [{"x":174,"y":110,"on":true},{"x":174,"y":0,"on":true},{"x":72,"y":0,"on":true},{"x":72,"y":119,"on":true},{"x":72,"y":300,"on":false},{"x":238,"y":324,"on":true},{"x":238,"y":540,"on":true},{"x":340,"y":540,"on":true},{"x":340,"y":325,"on":true},{"x":508,"y":301,"on":false},{"x":508,"y":119,"on":true},{"x":508,"y":0,"on":true},{"x":406,"y":0,"on":true},{"x":406,"y":110,"on":true},{"x":406,"y":178,"on":false},{"x":349,"y":242,"on":false},{"x":290,"y":242,"on":true},{"x":231,"y":242,"on":false},{"x":174,"y":178,"on":false}] + ] + }, + "uniAB46": { + "advanceWidth": 507, + "contours": [ + [{"x":448,"y":77,"on":true},{"x":448,"y":-85,"on":true},{"x":448,"y":-155,"on":false},{"x":506,"y":-155,"on":true},{"x":520,"y":-155,"on":false},{"x":542,"y":-151,"on":false},{"x":555,"y":-147,"on":true},{"x":555,"y":-229,"on":true},{"x":541,"y":-235,"on":false},{"x":504,"y":-240,"on":false},{"x":485,"y":-240,"on":true},{"x":412,"y":-240,"on":false},{"x":346,"y":-160,"on":false},{"x":346,"y":-88,"on":true},{"x":346,"y":70,"on":true},{"x":346,"y":140,"on":false},{"x":292,"y":212,"on":false},{"x":229,"y":213,"on":true},{"x":180,"y":213,"on":true},{"x":180,"y":0,"on":true},{"x":77,"y":0,"on":true},{"x":77,"y":540,"on":true},{"x":265,"y":540,"on":true},{"x":356,"y":540,"on":false},{"x":455,"y":460,"on":false},{"x":455,"y":382,"on":true},{"x":455,"y":325,"on":false},{"x":403,"y":257,"on":false},{"x":361,"y":239,"on":true},{"x":403,"y":221,"on":false},{"x":448,"y":144,"on":false}], + [{"x":258,"y":462,"on":true},{"x":180,"y":462,"on":true},{"x":180,"y":288,"on":true},{"x":254,"y":288,"on":true},{"x":299,"y":288,"on":false},{"x":353,"y":331,"on":false},{"x":353,"y":378,"on":true},{"x":353,"y":462,"on":false}] + ] + }, + "uniAB47": { + "advanceWidth": 314, + "contours": [ + [{"x":295,"y":448,"on":true},{"x":242,"y":444,"on":false},{"x":177,"y":354,"on":false},{"x":178,"y":283,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true},{"x":155,"y":540,"on":true},{"x":169,"y":447,"on":true},{"x":174,"y":447,"on":true},{"x":195,"y":489,"on":false},{"x":253,"y":542,"on":false},{"x":295,"y":546,"on":true}] + ] + }, + "uniAB48": { + "advanceWidth": 558, + "contours": [ + [{"x":487,"y":550,"on":true},{"x":516,"y":550,"on":false},{"x":544,"y":544,"on":true},{"x":534,"y":444,"on":true},{"x":523,"y":447,"on":false},{"x":482,"y":451,"on":false},{"x":463,"y":451,"on":true},{"x":441,"y":451,"on":false},{"x":388,"y":441,"on":false},{"x":366,"y":426,"on":true},{"x":338,"y":448,"on":false},{"x":291,"y":448,"on":true},{"x":244,"y":448,"on":false},{"x":177,"y":359,"on":false},{"x":178,"y":283,"on":true},{"x":178,"y":0,"on":true},{"x":75,"y":0,"on":true},{"x":75,"y":540,"on":true},{"x":155,"y":540,"on":true},{"x":169,"y":447,"on":true},{"x":174,"y":447,"on":true},{"x":197,"y":495,"on":false},{"x":266,"y":550,"on":false},{"x":309,"y":550,"on":true},{"x":324,"y":550,"on":false},{"x":353,"y":545,"on":false},{"x":366,"y":540,"on":true},{"x":366,"y":483,"on":true},{"x":388,"y":512,"on":false},{"x":452,"y":550,"on":false}] + ] + }, + "uniAB49": { + "advanceWidth": 459, + "contours": [ + [{"x":389,"y":550,"on":true},{"x":418,"y":550,"on":false},{"x":443,"y":544,"on":true},{"x":433,"y":444,"on":true},{"x":410,"y":450,"on":false},{"x":383,"y":450,"on":true},{"x":326,"y":450,"on":false},{"x":251,"y":360,"on":false},{"x":251,"y":283,"on":true},{"x":251,"y":218,"on":true},{"x":273,"y":215,"on":false},{"x":310,"y":207,"on":false},{"x":326,"y":202,"on":true},{"x":309,"y":142,"on":true},{"x":278,"y":151,"on":false},{"x":251,"y":155,"on":true},{"x":251,"y":75,"on":false},{"x":189,"y":-10,"on":false},{"x":121,"y":-10,"on":true},{"x":68,"y":-10,"on":false},{"x":3,"y":45,"on":false},{"x":3,"y":99,"on":true},{"x":3,"y":211,"on":false},{"x":149,"y":220,"on":true},{"x":149,"y":540,"on":true},{"x":228,"y":540,"on":true},{"x":242,"y":447,"on":true},{"x":248,"y":447,"on":true},{"x":270,"y":493,"on":false},{"x":340,"y":550,"on":false}], + [{"x":149,"y":156,"on":true},{"x":101,"y":156,"on":false},{"x":68,"y":124,"on":false},{"x":68,"y":100,"on":true},{"x":68,"y":82,"on":false},{"x":88,"y":57,"on":false},{"x":107,"y":57,"on":true},{"x":130,"y":57,"on":false},{"x":149,"y":94,"on":false},{"x":149,"y":134,"on":true}] + ] + }, + "uniAB4A": { + "advanceWidth": 631, + "contours": [ + [{"x":560,"y":550,"on":true},{"x":590,"y":550,"on":false},{"x":618,"y":544,"on":true},{"x":607,"y":444,"on":true},{"x":596,"y":447,"on":false},{"x":556,"y":451,"on":false},{"x":536,"y":451,"on":true},{"x":514,"y":451,"on":false},{"x":462,"y":441,"on":false},{"x":439,"y":427,"on":true},{"x":426,"y":437,"on":false},{"x":388,"y":448,"on":false},{"x":364,"y":448,"on":true},{"x":319,"y":448,"on":false},{"x":251,"y":359,"on":false},{"x":251,"y":283,"on":true},{"x":251,"y":218,"on":true},{"x":273,"y":215,"on":false},{"x":310,"y":207,"on":false},{"x":326,"y":202,"on":true},{"x":309,"y":142,"on":true},{"x":278,"y":151,"on":false},{"x":251,"y":155,"on":true},{"x":251,"y":73,"on":false},{"x":189,"y":-10,"on":false},{"x":119,"y":-10,"on":true},{"x":68,"y":-10,"on":false},{"x":3,"y":46,"on":false},{"x":3,"y":101,"on":true},{"x":3,"y":211,"on":false},{"x":149,"y":220,"on":true},{"x":149,"y":540,"on":true},{"x":228,"y":540,"on":true},{"x":242,"y":447,"on":true},{"x":248,"y":447,"on":true},{"x":270,"y":496,"on":false},{"x":338,"y":550,"on":false},{"x":382,"y":550,"on":true},{"x":397,"y":550,"on":false},{"x":427,"y":545,"on":false},{"x":439,"y":540,"on":true},{"x":439,"y":483,"on":true},{"x":463,"y":512,"on":false},{"x":526,"y":550,"on":false}], + [{"x":149,"y":156,"on":true},{"x":101,"y":156,"on":false},{"x":68,"y":124,"on":false},{"x":68,"y":100,"on":true},{"x":68,"y":82,"on":false},{"x":88,"y":57,"on":false},{"x":107,"y":57,"on":true},{"x":130,"y":57,"on":false},{"x":149,"y":94,"on":false},{"x":149,"y":134,"on":true}] + ] + }, + "uniAB4B": { + "advanceWidth": 402, + "contours": [ + [{"x":8,"y":550,"on":true},{"x":91,"y":524,"on":false},{"x":166,"y":524,"on":true},{"x":201,"y":524,"on":false},{"x":284,"y":536,"on":false},{"x":327,"y":550,"on":true},{"x":327,"y":0,"on":true},{"x":225,"y":0,"on":true},{"x":225,"y":452,"on":true},{"x":196,"y":445,"on":false},{"x":162,"y":445,"on":true},{"x":124,"y":445,"on":false},{"x":46,"y":457,"on":false},{"x":8,"y":470,"on":true}] + ] + }, + "uniAB4C": { + "advanceWidth": 615, + "contours": [ + [{"x":410,"y":-10,"on":true},{"x":322,"y":-10,"on":false},{"x":221,"y":98,"on":false},{"x":221,"y":186,"on":true},{"x":221,"y":452,"on":true},{"x":190,"y":445,"on":false},{"x":158,"y":445,"on":true},{"x":120,"y":445,"on":false},{"x":41,"y":457,"on":false},{"x":3,"y":470,"on":true},{"x":3,"y":550,"on":true},{"x":86,"y":524,"on":false},{"x":162,"y":524,"on":true},{"x":196,"y":524,"on":false},{"x":280,"y":536,"on":false},{"x":323,"y":550,"on":true},{"x":323,"y":283,"on":true},{"x":362,"y":320,"on":false},{"x":417,"y":320,"on":true},{"x":466,"y":320,"on":false},{"x":541,"y":277,"on":false},{"x":583,"y":204,"on":false},{"x":583,"y":158,"on":true},{"x":583,"y":85,"on":false},{"x":491,"y":-10,"on":false}], + [{"x":502,"y":157,"on":true},{"x":502,"y":196,"on":false},{"x":452,"y":248,"on":false},{"x":412,"y":248,"on":true},{"x":373,"y":248,"on":false},{"x":323,"y":195,"on":false},{"x":323,"y":155,"on":true},{"x":323,"y":115,"on":false},{"x":373,"y":63,"on":false},{"x":412,"y":63,"on":true},{"x":450,"y":63,"on":false},{"x":502,"y":114,"on":false}] + ] + }, + "uniAB4D": { + "advanceWidth": 326, + "contours": [ + [{"x":230,"y":144,"on":true},{"x":230,"y":71,"on":false},{"x":161,"y":-10,"on":false},{"x":89,"y":-10,"on":true},{"x":70,"y":-10,"on":false},{"x":32,"y":-4,"on":false},{"x":18,"y":2,"on":true},{"x":18,"y":86,"on":true},{"x":32,"y":82,"on":false},{"x":56,"y":76,"on":false},{"x":70,"y":76,"on":true},{"x":98,"y":76,"on":false},{"x":128,"y":111,"on":false},{"x":128,"y":149,"on":true},{"x":128,"y":614,"on":true},{"x":128,"y":693,"on":false},{"x":201,"y":766,"on":false},{"x":270,"y":766,"on":true},{"x":291,"y":766,"on":false},{"x":328,"y":758,"on":false},{"x":339,"y":754,"on":true},{"x":339,"y":670,"on":true},{"x":328,"y":674,"on":false},{"x":302,"y":679,"on":false},{"x":288,"y":679,"on":true},{"x":259,"y":679,"on":false},{"x":230,"y":645,"on":false},{"x":230,"y":607,"on":true}] + ] + }, + "uniAB4E": { + "advanceWidth": 570, + "contours": [ + [{"x":495,"y":344,"on":true},{"x":495,"y":0,"on":true},{"x":415,"y":0,"on":true},{"x":401,"y":71,"on":true},{"x":395,"y":71,"on":true},{"x":372,"y":30,"on":false},{"x":292,"y":-10,"on":false},{"x":241,"y":-10,"on":true},{"x":158,"y":-10,"on":false},{"x":72,"y":90,"on":false},{"x":72,"y":187,"on":true},{"x":72,"y":540,"on":true},{"x":174,"y":540,"on":true},{"x":174,"y":210,"on":true},{"x":174,"y":142,"on":false},{"x":219,"y":77,"on":false},{"x":266,"y":77,"on":true},{"x":337,"y":77,"on":false},{"x":393,"y":171,"on":false},{"x":393,"y":263,"on":true},{"x":393,"y":344,"on":true}] + ] + }, + "uniAB4F": { + "advanceWidth": 570, + "contours": [ + [{"x":4,"y":291,"on":true},{"x":72,"y":291,"on":true},{"x":72,"y":540,"on":true},{"x":174,"y":540,"on":true},{"x":174,"y":291,"on":true},{"x":393,"y":290,"on":true},{"x":393,"y":344,"on":true},{"x":495,"y":344,"on":true},{"x":495,"y":290,"on":true},{"x":566,"y":290,"on":true},{"x":566,"y":215,"on":true},{"x":495,"y":215,"on":true},{"x":495,"y":0,"on":true},{"x":415,"y":0,"on":true},{"x":401,"y":71,"on":true},{"x":395,"y":71,"on":true},{"x":372,"y":30,"on":false},{"x":292,"y":-10,"on":false},{"x":241,"y":-10,"on":true},{"x":158,"y":-10,"on":false},{"x":72,"y":90,"on":false},{"x":72,"y":187,"on":true},{"x":72,"y":216,"on":true},{"x":4,"y":216,"on":true}], + [{"x":174,"y":210,"on":true},{"x":174,"y":142,"on":false},{"x":219,"y":77,"on":false},{"x":266,"y":77,"on":true},{"x":327,"y":77,"on":false},{"x":385,"y":147,"on":false},{"x":391,"y":215,"on":true},{"x":174,"y":216,"on":true}] + ] + }, + "uniAB50": { + "advanceWidth": 852, + "contours": [ + [{"x":425,"y":550,"on":true},{"x":452,"y":550,"on":false},{"x":485,"y":520,"on":false},{"x":485,"y":487,"on":true},{"x":485,"y":455,"on":false},{"x":452,"y":426,"on":false},{"x":425,"y":426,"on":true},{"x":397,"y":426,"on":false},{"x":365,"y":455,"on":false},{"x":365,"y":487,"on":true},{"x":365,"y":520,"on":false},{"x":397,"y":550,"on":false}], + [{"x":235,"y":-10,"on":true},{"x":153,"y":-10,"on":false},{"x":72,"y":84,"on":false},{"x":72,"y":185,"on":true},{"x":72,"y":540,"on":true},{"x":174,"y":540,"on":true},{"x":174,"y":206,"on":true},{"x":174,"y":138,"on":false},{"x":216,"y":76,"on":false},{"x":260,"y":76,"on":true},{"x":320,"y":76,"on":false},{"x":373,"y":164,"on":false},{"x":373,"y":250,"on":true},{"x":373,"y":350,"on":true},{"x":476,"y":350,"on":true},{"x":476,"y":201,"on":true},{"x":476,"y":76,"on":false},{"x":562,"y":76,"on":true},{"x":625,"y":76,"on":false},{"x":675,"y":174,"on":false},{"x":675,"y":266,"on":true},{"x":675,"y":540,"on":true},{"x":777,"y":540,"on":true},{"x":777,"y":0,"on":true},{"x":697,"y":0,"on":true},{"x":683,"y":71,"on":true},{"x":677,"y":71,"on":true},{"x":657,"y":30,"on":false},{"x":582,"y":-10,"on":false},{"x":537,"y":-10,"on":true},{"x":426,"y":-10,"on":false},{"x":391,"y":75,"on":true},{"x":383,"y":75,"on":true},{"x":360,"y":32,"on":false},{"x":282,"y":-10,"on":false}] + ] + }, + "uniAB51": { + "advanceWidth": 852, + "references": [ + {"glyph":"uniAB50","x":853,"y":540,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniAB52": { + "advanceWidth": 613, + "contours": [ + [{"x":216,"y":396,"on":true},{"x":216,"y":210,"on":true},{"x":216,"y":142,"on":false},{"x":261,"y":77,"on":false},{"x":309,"y":77,"on":true},{"x":380,"y":77,"on":false},{"x":436,"y":171,"on":false},{"x":436,"y":263,"on":true},{"x":436,"y":540,"on":true},{"x":538,"y":540,"on":true},{"x":538,"y":0,"on":true},{"x":457,"y":0,"on":true},{"x":443,"y":71,"on":true},{"x":437,"y":71,"on":true},{"x":414,"y":30,"on":false},{"x":334,"y":-10,"on":false},{"x":284,"y":-10,"on":true},{"x":115,"y":-10,"on":false},{"x":115,"y":187,"on":true},{"x":115,"y":392,"on":true},{"x":115,"y":432,"on":false},{"x":88,"y":468,"on":false},{"x":60,"y":468,"on":true},{"x":38,"y":468,"on":false},{"x":13,"y":458,"on":true},{"x":13,"y":538,"on":true},{"x":42,"y":550,"on":false},{"x":84,"y":550,"on":true},{"x":147,"y":550,"on":false},{"x":216,"y":475,"on":false}] + ] + }, + "uniAB53": { + "advanceWidth": 507, + "references": [ + {"glyph":"chi","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniAB54": { + "advanceWidth": 550, + "contours": [ + [{"x":460,"y":-244,"on":true},{"x":395,"y":-244,"on":false},{"x":324,"y":-168,"on":false},{"x":299,"y":-95,"on":true},{"x":243,"y":71,"on":true},{"x":97,"y":-240,"on":true},{"x":-11,"y":-240,"on":true},{"x":199,"y":177,"on":true},{"x":124,"y":393,"on":true},{"x":112,"y":430,"on":false},{"x":83,"y":461,"on":false},{"x":63,"y":461,"on":true},{"x":43,"y":461,"on":false},{"x":22,"y":455,"on":true},{"x":22,"y":536,"on":true},{"x":36,"y":540,"on":false},{"x":68,"y":547,"on":false},{"x":86,"y":547,"on":true},{"x":138,"y":547,"on":false},{"x":191,"y":491,"on":false},{"x":210,"y":431,"on":true},{"x":262,"y":275,"on":true},{"x":388,"y":540,"on":true},{"x":492,"y":540,"on":true},{"x":305,"y":167,"on":true},{"x":372,"y":-30,"on":true},{"x":389,"y":-12,"on":false},{"x":437,"y":10,"on":false},{"x":466,"y":10,"on":true},{"x":523,"y":10,"on":false},{"x":594,"y":-62,"on":false},{"x":594,"y":-114,"on":true},{"x":594,"y":-170,"on":false},{"x":524,"y":-244,"on":false}], + [{"x":524,"y":-115,"on":true},{"x":524,"y":-90,"on":false},{"x":490,"y":-57,"on":false},{"x":465,"y":-57,"on":true},{"x":438,"y":-57,"on":false},{"x":406,"y":-90,"on":false},{"x":406,"y":-117,"on":true},{"x":406,"y":-144,"on":false},{"x":438,"y":-177,"on":false},{"x":465,"y":-177,"on":true},{"x":490,"y":-177,"on":false},{"x":524,"y":-144,"on":false}] + ] + }, + "uniAB55": { + "advanceWidth": 513, + "contours": [ + [{"x":-35,"y":-240,"on":true},{"x":-35,"y":-52,"on":true},{"x":27,"y":-52,"on":true},{"x":27,"y":-125,"on":true},{"x":27,"y":-150,"on":false},{"x":42,"y":-150,"on":true},{"x":48,"y":-150,"on":false},{"x":60,"y":-142,"on":false},{"x":78,"y":-112,"on":false},{"x":92,"y":-80,"on":true},{"x":209,"y":167,"on":true},{"x":132,"y":393,"on":true},{"x":119,"y":430,"on":false},{"x":90,"y":461,"on":false},{"x":70,"y":461,"on":true},{"x":52,"y":461,"on":false},{"x":29,"y":455,"on":true},{"x":29,"y":536,"on":true},{"x":43,"y":540,"on":false},{"x":75,"y":547,"on":false},{"x":94,"y":547,"on":true},{"x":146,"y":547,"on":false},{"x":198,"y":491,"on":false},{"x":217,"y":431,"on":true},{"x":271,"y":272,"on":true},{"x":395,"y":540,"on":true},{"x":500,"y":540,"on":true},{"x":313,"y":164,"on":true},{"x":393,"y":-64,"on":true},{"x":409,"y":-111,"on":false},{"x":442,"y":-154,"on":false},{"x":470,"y":-154,"on":true},{"x":480,"y":-154,"on":false},{"x":500,"y":-151,"on":false},{"x":510,"y":-149,"on":true},{"x":510,"y":-230,"on":true},{"x":483,"y":-240,"on":false},{"x":444,"y":-240,"on":true},{"x":388,"y":-240,"on":false},{"x":326,"y":-172,"on":false},{"x":303,"y":-99,"on":true},{"x":253,"y":59,"on":true},{"x":181,"y":-108,"on":true},{"x":161,"y":-154,"on":false},{"x":125,"y":-213,"on":false},{"x":78,"y":-240,"on":false},{"x":40,"y":-240,"on":true}] + ] + }, + "uniAB56": { + "advanceWidth": 590, + "contours": [ + [{"x":456,"y":-10,"on":true},{"x":403,"y":-10,"on":false},{"x":342,"y":37,"on":false},{"x":317,"y":80,"on":true},{"x":243,"y":204,"on":true},{"x":126,"y":0,"on":true},{"x":14,"y":0,"on":true},{"x":179,"y":277,"on":true},{"x":21,"y":540,"on":true},{"x":136,"y":540,"on":true},{"x":244,"y":348,"on":true},{"x":353,"y":540,"on":true},{"x":466,"y":540,"on":true},{"x":308,"y":276,"on":true},{"x":364,"y":182,"on":true},{"x":396,"y":228,"on":false},{"x":457,"y":228,"on":true},{"x":510,"y":228,"on":false},{"x":577,"y":160,"on":false},{"x":577,"y":111,"on":true},{"x":577,"y":59,"on":false},{"x":512,"y":-10,"on":false}], + [{"x":512,"y":110,"on":true},{"x":512,"y":135,"on":false},{"x":480,"y":166,"on":false},{"x":456,"y":166,"on":true},{"x":430,"y":166,"on":false},{"x":399,"y":134,"on":false},{"x":399,"y":109,"on":true},{"x":399,"y":84,"on":false},{"x":430,"y":52,"on":false},{"x":456,"y":52,"on":true},{"x":480,"y":52,"on":false},{"x":512,"y":82,"on":false}] + ] + }, + "uniAB57": { + "advanceWidth": 488, + "contours": [ + [{"x":183,"y":272,"on":true},{"x":22,"y":540,"on":true},{"x":136,"y":540,"on":true},{"x":244,"y":348,"on":true},{"x":353,"y":540,"on":true},{"x":467,"y":540,"on":true},{"x":308,"y":276,"on":true},{"x":475,"y":0,"on":true},{"x":361,"y":0,"on":true},{"x":247,"y":200,"on":true},{"x":3,"y":-240,"on":true},{"x":-109,"y":-240,"on":true}] + ] + }, + "uniAB58": { + "advanceWidth": 590, + "contours": [ + [{"x":-109,"y":-240,"on":true},{"x":183,"y":272,"on":true},{"x":22,"y":540,"on":true},{"x":136,"y":540,"on":true},{"x":244,"y":348,"on":true},{"x":353,"y":540,"on":true},{"x":467,"y":540,"on":true},{"x":308,"y":276,"on":true},{"x":365,"y":182,"on":true},{"x":397,"y":228,"on":false},{"x":457,"y":228,"on":true},{"x":510,"y":228,"on":false},{"x":577,"y":160,"on":false},{"x":577,"y":111,"on":true},{"x":577,"y":59,"on":false},{"x":512,"y":-10,"on":false},{"x":457,"y":-10,"on":true},{"x":403,"y":-10,"on":false},{"x":341,"y":37,"on":false},{"x":317,"y":80,"on":true},{"x":246,"y":200,"on":true},{"x":3,"y":-240,"on":true}], + [{"x":512,"y":110,"on":true},{"x":512,"y":135,"on":false},{"x":480,"y":166,"on":false},{"x":456,"y":166,"on":true},{"x":430,"y":166,"on":false},{"x":399,"y":134,"on":false},{"x":399,"y":109,"on":true},{"x":399,"y":84,"on":false},{"x":430,"y":52,"on":false},{"x":456,"y":52,"on":true},{"x":480,"y":52,"on":false},{"x":512,"y":82,"on":false}] + ] + }, + "uniAB59": { + "advanceWidth": 501, + "contours": [ + [{"x":-124,"y":-240,"on":true},{"x":-124,"y":-52,"on":true},{"x":-61,"y":-52,"on":true},{"x":-61,"y":-125,"on":true},{"x":-61,"y":-150,"on":false},{"x":-48,"y":-150,"on":true},{"x":-39,"y":-150,"on":false},{"x":-20,"y":-124,"on":false},{"x":5,"y":-79,"on":true},{"x":197,"y":271,"on":true},{"x":34,"y":540,"on":true},{"x":149,"y":540,"on":true},{"x":258,"y":347,"on":true},{"x":366,"y":540,"on":true},{"x":479,"y":540,"on":true},{"x":323,"y":275,"on":true},{"x":488,"y":0,"on":true},{"x":374,"y":0,"on":true},{"x":261,"y":199,"on":true},{"x":96,"y":-108,"on":true},{"x":72,"y":-152,"on":false},{"x":33,"y":-211,"on":false},{"x":-14,"y":-240,"on":false},{"x":-50,"y":-240,"on":true}] + ] + }, + "uniAB5A": { + "advanceWidth": 570, + "contours": [ + [{"x":495,"y":-2,"on":true},{"x":495,"y":-116,"on":false},{"x":380,"y":-240,"on":false},{"x":259,"y":-240,"on":true},{"x":208,"y":-240,"on":false},{"x":122,"y":-224,"on":false},{"x":84,"y":-207,"on":true},{"x":84,"y":-116,"on":true},{"x":126,"y":-136,"on":false},{"x":215,"y":-156,"on":false},{"x":262,"y":-156,"on":true},{"x":392,"y":-156,"on":false},{"x":392,"y":-17,"on":true},{"x":392,"y":-7,"on":true},{"x":392,"y":10,"on":false},{"x":394,"y":51,"on":false},{"x":396,"y":71,"on":true},{"x":392,"y":71,"on":true},{"x":368,"y":30,"on":false},{"x":290,"y":-10,"on":false},{"x":241,"y":-10,"on":true},{"x":72,"y":-10,"on":false},{"x":72,"y":187,"on":true},{"x":72,"y":540,"on":true},{"x":174,"y":540,"on":true},{"x":174,"y":210,"on":true},{"x":174,"y":142,"on":false},{"x":218,"y":77,"on":false},{"x":266,"y":77,"on":true},{"x":337,"y":77,"on":false},{"x":393,"y":171,"on":false},{"x":393,"y":263,"on":true},{"x":393,"y":344,"on":true},{"x":495,"y":344,"on":true}] + ] + }, + "uniAB5B": { + "advanceWidth": 563, + "references": [ + {"glyph":"breve","x":94,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"breve","x":94,"y":1160,"a":1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniAB5C": { + "advanceWidth": 371, + "references": [ + {"glyph":"uniA727","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uniAB5D": { + "advanceWidth": 270, + "references": [ + {"glyph":"uniAB37","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uniAB5E": { + "advanceWidth": 244, + "references": [ + {"glyph":"uni026B","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uniAB5F": { + "advanceWidth": 398, + "references": [ + {"glyph":"uniAB52","x":0,"y":287,"a":0.6500244140625,"b":0,"c":0,"d":0.5999755859375,"roundToGrid":true} + ] + }, + "uniAB60": { + "advanceWidth": 753, + "contours": [ + [{"x":312,"y":0,"on":true},{"x":312,"y":540,"on":true},{"x":414,"y":540,"on":true},{"x":414,"y":324,"on":true},{"x":510,"y":324,"on":true},{"x":614,"y":324,"on":false},{"x":711,"y":244,"on":false},{"x":711,"y":167,"on":true},{"x":711,"y":87,"on":false},{"x":610,"y":0,"on":false},{"x":506,"y":0,"on":true}], + [{"x":78,"y":0,"on":true},{"x":78,"y":540,"on":true},{"x":181,"y":540,"on":true},{"x":181,"y":0,"on":true}], + [{"x":414,"y":77,"on":true},{"x":504,"y":77,"on":true},{"x":554,"y":77,"on":false},{"x":608,"y":120,"on":false},{"x":608,"y":163,"on":true},{"x":608,"y":207,"on":false},{"x":556,"y":246,"on":false},{"x":504,"y":246,"on":true},{"x":414,"y":246,"on":true}] + ] + }, + "uniAB61": { + "advanceWidth": 760, + "contours": [ + [{"x":509,"y":549,"on":true},{"x":607,"y":549,"on":false},{"x":716,"y":416,"on":false},{"x":716,"y":307,"on":true},{"x":716,"y":247,"on":true},{"x":392,"y":247,"on":true},{"x":397,"y":74,"on":false},{"x":536,"y":74,"on":true},{"x":580,"y":74,"on":false},{"x":653,"y":92,"on":false},{"x":692,"y":112,"on":true},{"x":692,"y":26,"on":true},{"x":655,"y":7,"on":false},{"x":578,"y":-10,"on":false},{"x":529,"y":-10,"on":true},{"x":421,"y":-10,"on":false},{"x":296,"y":122,"on":false},{"x":290,"y":241,"on":true},{"x":175,"y":241,"on":true},{"x":175,"y":0,"on":true},{"x":73,"y":0,"on":true},{"x":73,"y":539,"on":true},{"x":175,"y":539,"on":true},{"x":175,"y":321,"on":true},{"x":292,"y":321,"on":true},{"x":304,"y":431,"on":false},{"x":418,"y":549,"on":false}], + [{"x":509,"y":469,"on":true},{"x":459,"y":469,"on":false},{"x":399,"y":395,"on":false},{"x":394,"y":324,"on":true},{"x":616,"y":324,"on":true},{"x":616,"y":387,"on":false},{"x":564,"y":469,"on":false}] + ] + }, + "uniAB62": { + "advanceWidth": 770, + "references": [ + {"glyph":"c","x":448,"y":541,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true}, + {"glyph":"e","x":250,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniAB63": { + "advanceWidth": 907, + "contours": [ + [{"x":501,"y":539,"on":true},{"x":501,"y":513,"on":true},{"x":554,"y":549,"on":false},{"x":630,"y":549,"on":true},{"x":700,"y":549,"on":false},{"x":804,"y":481,"on":false},{"x":860,"y":356,"on":false},{"x":860,"y":270,"on":true},{"x":860,"y":141,"on":false},{"x":738,"y":-10,"on":false},{"x":628,"y":-10,"on":true},{"x":567,"y":-10,"on":false},{"x":470,"y":46,"on":false},{"x":440,"y":97,"on":true},{"x":414,"y":48,"on":false},{"x":326,"y":-10,"on":false},{"x":259,"y":-10,"on":true},{"x":165,"y":-10,"on":false},{"x":72,"y":87,"on":false},{"x":72,"y":188,"on":true},{"x":72,"y":539,"on":true},{"x":174,"y":539,"on":true},{"x":174,"y":211,"on":true},{"x":174,"y":142,"on":false},{"x":220,"y":75,"on":false},{"x":276,"y":75,"on":true},{"x":335,"y":75,"on":false},{"x":399,"y":164,"on":false},{"x":399,"y":259,"on":true},{"x":399,"y":539,"on":true}], + [{"x":504,"y":270,"on":true},{"x":504,"y":180,"on":false},{"x":563,"y":73,"on":false},{"x":629,"y":73,"on":true},{"x":695,"y":73,"on":false},{"x":755,"y":181,"on":false},{"x":755,"y":270,"on":true},{"x":755,"y":361,"on":false},{"x":694,"y":466,"on":false},{"x":629,"y":466,"on":true},{"x":567,"y":466,"on":false},{"x":504,"y":365,"on":false}] + ] + }, + "uniAB64": { + "advanceWidth": 566, + "references": [ + {"glyph":"uni0251","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniAB65": { + "advanceWidth": 569, + "contours": [ + [{"x":284,"y":472,"on":true},{"x":220,"y":472,"on":false},{"x":150,"y":378,"on":false},{"x":150,"y":296,"on":true},{"x":150,"y":117,"on":false},{"x":248,"y":75,"on":true},{"x":248,"y":0,"on":true},{"x":37,"y":0,"on":true},{"x":37,"y":77,"on":true},{"x":150,"y":77,"on":true},{"x":107,"y":111,"on":false},{"x":57,"y":224,"on":false},{"x":57,"y":305,"on":true},{"x":57,"y":376,"on":false},{"x":109,"y":486,"on":false},{"x":210,"y":549,"on":false},{"x":285,"y":549,"on":true},{"x":358,"y":549,"on":false},{"x":459,"y":486,"on":false},{"x":511,"y":376,"on":false},{"x":511,"y":304,"on":true},{"x":511,"y":224,"on":false},{"x":460,"y":111,"on":false},{"x":417,"y":77,"on":true},{"x":531,"y":77,"on":true},{"x":531,"y":0,"on":true},{"x":320,"y":0,"on":true},{"x":320,"y":75,"on":true},{"x":418,"y":117,"on":false},{"x":418,"y":295,"on":true},{"x":418,"y":378,"on":false},{"x":349,"y":472,"on":false}] + ] + }, + "uniFB00": { + "advanceWidth": 647, + "references": [ + {"glyph":"f","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"f","x":324,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniFB01": { + "advanceWidth": 576, + "references": [ + {"glyph":"f","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"i","x":324,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniFB02": { + "advanceWidth": 576, + "references": [ + {"glyph":"f","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"l","x":324,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniFB03": { + "advanceWidth": 900, + "references": [ + {"glyph":"f","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"f","x":324,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"i","x":647,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniFB04": { + "advanceWidth": 900, + "references": [ + {"glyph":"f","x":0,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"f","x":324,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true}, + {"glyph":"l","x":647,"y":0,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniFB05": { + "advanceWidth": 637, + "contours": [ + [{"x":519,"y":-10,"on":true},{"x":456,"y":-10,"on":false},{"x":376,"y":62,"on":false},{"x":376,"y":154,"on":true},{"x":376,"y":459,"on":true},{"x":310,"y":459,"on":true},{"x":310,"y":508,"on":true},{"x":377,"y":540,"on":true},{"x":377,"y":637,"on":true},{"x":364,"y":656,"on":false},{"x":313,"y":680,"on":false},{"x":279,"y":680,"on":true},{"x":180,"y":680,"on":false},{"x":180,"y":574,"on":true},{"x":180,"y":0,"on":true},{"x":78,"y":0,"on":true},{"x":78,"y":573,"on":true},{"x":78,"y":670,"on":false},{"x":188,"y":765,"on":false},{"x":276,"y":765,"on":true},{"x":352,"y":765,"on":false},{"x":456,"y":706,"on":false},{"x":479,"y":666,"on":true},{"x":479,"y":539,"on":true},{"x":610,"y":539,"on":true},{"x":610,"y":459,"on":true},{"x":479,"y":459,"on":true},{"x":479,"y":158,"on":true},{"x":479,"y":75,"on":false},{"x":546,"y":75,"on":true},{"x":584,"y":75,"on":false},{"x":616,"y":88,"on":true},{"x":616,"y":9,"on":true},{"x":599,"y":1,"on":false},{"x":547,"y":-10,"on":false}] + ] + }, + "uniFB06": { + "advanceWidth": 778, + "contours": [ + [{"x":199,"y":-10,"on":true},{"x":150,"y":-10,"on":false},{"x":74,"y":6,"on":false},{"x":43,"y":22,"on":true},{"x":43,"y":116,"on":true},{"x":74,"y":99,"on":false},{"x":158,"y":73,"on":false},{"x":199,"y":73,"on":true},{"x":249,"y":73,"on":false},{"x":296,"y":111,"on":false},{"x":296,"y":143,"on":true},{"x":296,"y":161,"on":false},{"x":278,"y":190,"on":false},{"x":230,"y":221,"on":false},{"x":185,"y":241,"on":true},{"x":118,"y":271,"on":false},{"x":43,"y":340,"on":false},{"x":43,"y":404,"on":true},{"x":43,"y":473,"on":false},{"x":145,"y":549,"on":false},{"x":230,"y":549,"on":true},{"x":252,"y":549,"on":false},{"x":274,"y":546,"on":true},{"x":267,"y":560,"on":false},{"x":260,"y":592,"on":false},{"x":260,"y":609,"on":true},{"x":260,"y":679,"on":false},{"x":355,"y":765,"on":false},{"x":434,"y":765,"on":true},{"x":508,"y":765,"on":false},{"x":599,"y":706,"on":false},{"x":620,"y":665,"on":true},{"x":620,"y":539,"on":true},{"x":752,"y":539,"on":true},{"x":752,"y":459,"on":true},{"x":620,"y":459,"on":true},{"x":620,"y":158,"on":true},{"x":620,"y":75,"on":false},{"x":687,"y":75,"on":true},{"x":724,"y":75,"on":false},{"x":757,"y":88,"on":true},{"x":757,"y":9,"on":true},{"x":740,"y":1,"on":false},{"x":689,"y":-10,"on":false},{"x":661,"y":-10,"on":true},{"x":598,"y":-10,"on":false},{"x":518,"y":62,"on":false},{"x":518,"y":154,"on":true},{"x":518,"y":459,"on":true},{"x":452,"y":459,"on":true},{"x":452,"y":508,"on":true},{"x":518,"y":540,"on":true},{"x":518,"y":638,"on":true},{"x":507,"y":655,"on":false},{"x":466,"y":680,"on":false},{"x":436,"y":680,"on":true},{"x":395,"y":680,"on":false},{"x":349,"y":634,"on":false},{"x":349,"y":597,"on":true},{"x":349,"y":574,"on":false},{"x":366,"y":532,"on":false},{"x":389,"y":512,"on":true},{"x":356,"y":433,"on":true},{"x":325,"y":448,"on":false},{"x":262,"y":467,"on":false},{"x":228,"y":467,"on":true},{"x":186,"y":467,"on":false},{"x":142,"y":436,"on":false},{"x":142,"y":409,"on":true},{"x":142,"y":390,"on":false},{"x":162,"y":362,"on":false},{"x":211,"y":334,"on":false},{"x":254,"y":314,"on":true},{"x":298,"y":294,"on":false},{"x":362,"y":252,"on":false},{"x":396,"y":194,"on":false},{"x":396,"y":151,"on":true},{"x":396,"y":72,"on":false},{"x":292,"y":-10,"on":false}] + ] + }, + "uniFE00": { + "advanceWidth": 0 + }, + "uniFE20": { + "advanceWidth": 0, + "contours": [ + [{"x":-350,"y":587,"on":true},{"x":-305,"y":688,"on":false},{"x":-119,"y":777,"on":false},{"x":0,"y":777,"on":true},{"x":5,"y":777,"on":true},{"x":5,"y":698,"on":true},{"x":0,"y":698,"on":true},{"x":-94,"y":698,"on":false},{"x":-238,"y":646,"on":false},{"x":-276,"y":587,"on":true}] + ] + }, + "uniFE21": { + "advanceWidth": 0, + "contours": [ + [{"x":-1,"y":777,"on":true},{"x":126,"y":777,"on":false},{"x":311,"y":686,"on":false},{"x":352,"y":587,"on":true},{"x":278,"y":587,"on":true},{"x":242,"y":644,"on":false},{"x":97,"y":698,"on":false},{"x":-1,"y":698,"on":true},{"x":-5,"y":698,"on":true},{"x":-5,"y":777,"on":true}] + ] + }, + "uniFE22": { + "advanceWidth": 0, + "contours": [ + [{"x":0,"y":637,"on":true},{"x":-48,"y":648,"on":false},{"x":-142,"y":666,"on":false},{"x":-192,"y":666,"on":true},{"x":-238,"y":666,"on":false},{"x":-288,"y":635,"on":false},{"x":-295,"y":607,"on":true},{"x":-350,"y":607,"on":true},{"x":-340,"y":678,"on":false},{"x":-256,"y":741,"on":false},{"x":-191,"y":741,"on":true},{"x":-138,"y":741,"on":false},{"x":-45,"y":724,"on":false},{"x":0,"y":713,"on":true}] + ] + }, + "uniFE23": { + "advanceWidth": 0, + "contours": [ + [{"x":0,"y":713,"on":true},{"x":47,"y":702,"on":false},{"x":141,"y":683,"on":false},{"x":191,"y":683,"on":true},{"x":239,"y":683,"on":false},{"x":288,"y":715,"on":false},{"x":295,"y":742,"on":true},{"x":350,"y":742,"on":true},{"x":341,"y":672,"on":false},{"x":255,"y":608,"on":false},{"x":192,"y":608,"on":true},{"x":140,"y":608,"on":false},{"x":46,"y":626,"on":false},{"x":0,"y":637,"on":true}] + ] + }, + "uniFE24": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02C9","x":-38,"y":16,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniFE25": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02C9","x":-325,"y":16,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniFE26": { + "advanceWidth": 0, + "contours": [ + [{"x":-286,"y":699,"on":true},{"x":286,"y":699,"on":true},{"x":286,"y":624,"on":true},{"x":-286,"y":624,"on":true}] + ] + }, + "uniFE27": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniFE20","x":-5,"y":521,"a":1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniFE28": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniFE20","x":0,"y":521,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniFE29": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniFE22","x":0,"y":-832,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniFE2A": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniFE22","x":0,"y":517,"a":-1,"b":0,"c":0,"d":-1,"roundToGrid":true} + ] + }, + "uniFE2B": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02C9","x":-36,"y":-785,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniFE2C": { + "advanceWidth": 0, + "references": [ + {"glyph":"uni02C9","x":-322,"y":-785,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true} + ] + }, + "uniFE2D": { + "advanceWidth": 0, + "references": [ + {"glyph":"uniFE26","x":0,"y":-803,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "uniFE2E": { + "advanceWidth": 0, + "contours": [ + [{"x":-50,"y":612,"on":true},{"x":-57,"y":568,"on":false},{"x":-100,"y":568,"on":true},{"x":-149,"y":568,"on":false},{"x":-149,"y":623,"on":true},{"x":-149,"y":678,"on":false},{"x":-91,"y":678,"on":true},{"x":148,"y":678,"on":true},{"x":148,"y":612,"on":true}] + ] + }, + "uniFE2F": { + "advanceWidth": 0, + "contours": [ + [{"x":-149,"y":612,"on":true},{"x":-149,"y":678,"on":true},{"x":50,"y":678,"on":true},{"x":56,"y":722,"on":false},{"x":99,"y":722,"on":true},{"x":149,"y":722,"on":false},{"x":149,"y":669,"on":true},{"x":149,"y":644,"on":false},{"x":124,"y":612,"on":false},{"x":90,"y":612,"on":true}] + ] + }, + "uniFEFF": { + "advanceWidth": 0 + }, + "uniFFFC": { + "advanceWidth": 999, + "contours": [ + [{"x":820,"y":690,"on":true},{"x":820,"y":741,"on":true},{"x":968,"y":741,"on":true},{"x":968,"y":593,"on":true},{"x":918,"y":593,"on":true},{"x":918,"y":690,"on":true}], + [{"x":629,"y":690,"on":true},{"x":629,"y":741,"on":true},{"x":762,"y":741,"on":true},{"x":762,"y":690,"on":true}], + [{"x":438,"y":690,"on":true},{"x":438,"y":741,"on":true},{"x":571,"y":741,"on":true},{"x":571,"y":690,"on":true}], + [{"x":247,"y":690,"on":true},{"x":247,"y":741,"on":true},{"x":379,"y":741,"on":true},{"x":379,"y":690,"on":true}], + [{"x":40,"y":593,"on":true},{"x":40,"y":741,"on":true},{"x":188,"y":741,"on":true},{"x":188,"y":690,"on":true},{"x":91,"y":690,"on":true},{"x":91,"y":593,"on":true}], + [{"x":968,"y":402,"on":true},{"x":918,"y":402,"on":true},{"x":918,"y":534,"on":true},{"x":968,"y":534,"on":true}], + [{"x":91,"y":402,"on":true},{"x":40,"y":402,"on":true},{"x":40,"y":534,"on":true},{"x":91,"y":534,"on":true}], + [{"x":420,"y":307,"on":true},{"x":420,"y":240,"on":false},{"x":357,"y":160,"on":false},{"x":293,"y":160,"on":true},{"x":230,"y":160,"on":false},{"x":167,"y":240,"on":false},{"x":167,"y":307,"on":true},{"x":167,"y":375,"on":false},{"x":230,"y":454,"on":false},{"x":293,"y":454,"on":true},{"x":358,"y":454,"on":false},{"x":420,"y":376,"on":false}], + [{"x":727,"y":161,"on":true},{"x":703,"y":161,"on":false},{"x":688,"y":166,"on":true},{"x":688,"y":215,"on":true},{"x":697,"y":214,"on":false},{"x":713,"y":211,"on":false},{"x":721,"y":211,"on":true},{"x":740,"y":211,"on":false},{"x":763,"y":231,"on":false},{"x":763,"y":255,"on":true},{"x":763,"y":450,"on":true},{"x":821,"y":450,"on":true},{"x":821,"y":256,"on":true},{"x":821,"y":207,"on":false},{"x":770,"y":161,"on":false}], + [{"x":462,"y":450,"on":true},{"x":546,"y":450,"on":true},{"x":599,"y":450,"on":false},{"x":654,"y":418,"on":false},{"x":654,"y":377,"on":true},{"x":654,"y":353,"on":false},{"x":632,"y":321,"on":false},{"x":610,"y":317,"on":true},{"x":610,"y":313,"on":true},{"x":634,"y":308,"on":false},{"x":662,"y":278,"on":false},{"x":662,"y":247,"on":true},{"x":662,"y":208,"on":false},{"x":609,"y":164,"on":false},{"x":563,"y":164,"on":true},{"x":462,"y":164,"on":true}], + [{"x":226,"y":307,"on":true},{"x":226,"y":260,"on":false},{"x":260,"y":209,"on":false},{"x":293,"y":209,"on":true},{"x":328,"y":209,"on":false},{"x":361,"y":260,"on":false},{"x":361,"y":307,"on":true},{"x":361,"y":354,"on":false},{"x":328,"y":405,"on":false},{"x":293,"y":405,"on":true},{"x":260,"y":405,"on":false},{"x":226,"y":354,"on":false}], + [{"x":520,"y":336,"on":true},{"x":556,"y":336,"on":true},{"x":579,"y":336,"on":false},{"x":597,"y":353,"on":false},{"x":597,"y":369,"on":true},{"x":597,"y":402,"on":false},{"x":553,"y":402,"on":true},{"x":520,"y":402,"on":true}], + [{"x":91,"y":210,"on":true},{"x":40,"y":210,"on":true},{"x":40,"y":343,"on":true},{"x":91,"y":343,"on":true}], + [{"x":968,"y":210,"on":true},{"x":918,"y":210,"on":true},{"x":918,"y":343,"on":true},{"x":968,"y":343,"on":true}], + [{"x":520,"y":290,"on":true},{"x":520,"y":212,"on":true},{"x":560,"y":212,"on":true},{"x":585,"y":212,"on":false},{"x":603,"y":235,"on":false},{"x":603,"y":253,"on":true},{"x":603,"y":270,"on":false},{"x":584,"y":290,"on":false},{"x":558,"y":290,"on":true}], + [{"x":91,"y":19,"on":true},{"x":40,"y":19,"on":true},{"x":40,"y":151,"on":true},{"x":91,"y":151,"on":true}], + [{"x":968,"y":19,"on":true},{"x":918,"y":19,"on":true},{"x":918,"y":151,"on":true},{"x":968,"y":151,"on":true}], + [{"x":40,"y":-187,"on":true},{"x":40,"y":-39,"on":true},{"x":91,"y":-39,"on":true},{"x":91,"y":-137,"on":true},{"x":188,"y":-137,"on":true},{"x":188,"y":-187,"on":true}], + [{"x":820,"y":-187,"on":true},{"x":820,"y":-137,"on":true},{"x":918,"y":-137,"on":true},{"x":918,"y":-39,"on":true},{"x":968,"y":-39,"on":true},{"x":968,"y":-187,"on":true}], + [{"x":438,"y":-187,"on":true},{"x":438,"y":-137,"on":true},{"x":571,"y":-137,"on":true},{"x":571,"y":-187,"on":true}], + [{"x":247,"y":-187,"on":true},{"x":247,"y":-137,"on":true},{"x":379,"y":-137,"on":true},{"x":379,"y":-187,"on":true}], + [{"x":629,"y":-187,"on":true},{"x":629,"y":-137,"on":true},{"x":762,"y":-137,"on":true},{"x":762,"y":-187,"on":true}] + ] + }, + "uniFFFD": { + "advanceWidth": 999, + "contours": [ + [{"x":498,"y":760,"on":true},{"x":957,"y":302,"on":true},{"x":498,"y":-156,"on":true},{"x":40,"y":302,"on":true}], + [{"x":530,"y":179,"on":true},{"x":530,"y":202,"on":true},{"x":530,"y":228,"on":false},{"x":552,"y":258,"on":false},{"x":583,"y":282,"on":true},{"x":628,"y":318,"on":false},{"x":669,"y":379,"on":false},{"x":669,"y":427,"on":true},{"x":669,"y":494,"on":false},{"x":576,"y":568,"on":false},{"x":497,"y":568,"on":true},{"x":457,"y":568,"on":false},{"x":367,"y":540,"on":false},{"x":333,"y":520,"on":true},{"x":373,"y":433,"on":true},{"x":408,"y":450,"on":false},{"x":470,"y":472,"on":false},{"x":495,"y":472,"on":true},{"x":526,"y":472,"on":false},{"x":556,"y":444,"on":false},{"x":556,"y":421,"on":true},{"x":556,"y":392,"on":false},{"x":530,"y":358,"on":false},{"x":497,"y":332,"on":true},{"x":460,"y":302,"on":false},{"x":427,"y":248,"on":false},{"x":427,"y":208,"on":true},{"x":427,"y":179,"on":true}], + [{"x":414,"y":45,"on":true},{"x":414,"y":11,"on":false},{"x":452,"y":-21,"on":false},{"x":483,"y":-21,"on":true},{"x":512,"y":-21,"on":false},{"x":551,"y":11,"on":false},{"x":551,"y":45,"on":true},{"x":551,"y":80,"on":false},{"x":512,"y":112,"on":false},{"x":483,"y":112,"on":true},{"x":452,"y":112,"on":false},{"x":414,"y":80,"on":false}] + ] + }, + "glyph2786": { + "advanceWidth": 0 + }, + "glyph2787": { + "advanceWidth": 1000, + "contours": [ + [{"x":38,"y":226,"on":true},{"x":38,"y":311,"on":true},{"x":962,"y":311,"on":true},{"x":962,"y":226,"on":true}] + ] + }, + "glyph2788": { + "advanceWidth": 194, + "contours": [ + [{"x":24,"y":466,"on":true},{"x":18,"y":477,"on":true},{"x":32,"y":535,"on":false},{"x":76,"y":660,"on":false},{"x":100,"y":714,"on":true},{"x":176,"y":714,"on":true},{"x":161,"y":655,"on":false},{"x":135,"y":518,"on":false},{"x":129,"y":466,"on":true}] + ] + }, + "glyph2789": { + "advanceWidth": 194, + "contours": [ + [{"x":169,"y":714,"on":true},{"x":176,"y":703,"on":true},{"x":162,"y":645,"on":false},{"x":118,"y":521,"on":false},{"x":94,"y":466,"on":true},{"x":18,"y":466,"on":true},{"x":28,"y":504,"on":false},{"x":46,"y":593,"on":false},{"x":61,"y":680,"on":false},{"x":65,"y":714,"on":true}] + ] + }, + "glyph2790": { + "advanceWidth": 383, + "contours": [ + [{"x":358,"y":714,"on":true},{"x":365,"y":703,"on":true},{"x":352,"y":645,"on":false},{"x":308,"y":521,"on":false},{"x":284,"y":466,"on":true},{"x":207,"y":466,"on":true},{"x":222,"y":527,"on":false},{"x":248,"y":659,"on":false},{"x":255,"y":714,"on":true}], + [{"x":168,"y":714,"on":true},{"x":175,"y":703,"on":true},{"x":162,"y":645,"on":false},{"x":118,"y":521,"on":false},{"x":94,"y":466,"on":true},{"x":18,"y":466,"on":true},{"x":28,"y":504,"on":false},{"x":46,"y":593,"on":false},{"x":60,"y":680,"on":false},{"x":65,"y":714,"on":true}] + ] + }, + "glyph2791": { + "advanceWidth": 556, + "contours": [ + [{"x":461,"y":763,"on":true},{"x":454,"y":686,"on":false},{"x":367,"y":605,"on":false},{"x":275,"y":605,"on":true},{"x":180,"y":605,"on":false},{"x":99,"y":684,"on":false},{"x":94,"y":763,"on":true},{"x":185,"y":763,"on":true},{"x":189,"y":709,"on":false},{"x":230,"y":669,"on":false},{"x":277,"y":669,"on":true},{"x":318,"y":669,"on":false},{"x":364,"y":712,"on":false},{"x":369,"y":763,"on":true}] + ] + }, + "glyph2792": { + "advanceWidth": 478, + "contours": [ + [{"x":305,"y":760,"on":true},{"x":305,"y":750,"on":true},{"x":299,"y":730,"on":false},{"x":277,"y":676,"on":false},{"x":249,"y":622,"on":false},{"x":235,"y":600,"on":true},{"x":176,"y":600,"on":true},{"x":176,"y":612,"on":true},{"x":181,"y":628,"on":false},{"x":193,"y":683,"on":false},{"x":202,"y":740,"on":false},{"x":204,"y":760,"on":true}] + ] + }, + "glyph2793": { + "advanceWidth": 478, + "contours": [ + [{"x":307,"y":766,"on":true},{"x":307,"y":754,"on":true},{"x":300,"y":735,"on":false},{"x":284,"y":681,"on":false},{"x":272,"y":626,"on":false},{"x":270,"y":606,"on":true},{"x":170,"y":606,"on":true},{"x":170,"y":616,"on":true},{"x":179,"y":647,"on":false},{"x":222,"y":733,"on":false},{"x":247,"y":766,"on":true}] + ] + }, + "glyph2794": { + "advanceWidth": 0, + "contours": [ + [{"x":-185,"y":729,"on":true},{"x":-185,"y":692,"on":false},{"x":-227,"y":648,"on":false},{"x":-263,"y":639,"on":true},{"x":-269,"y":592,"on":true},{"x":-327,"y":592,"on":true},{"x":-335,"y":672,"on":true},{"x":-265,"y":681,"on":false},{"x":-265,"y":723,"on":true},{"x":-265,"y":744,"on":false},{"x":-295,"y":762,"on":false},{"x":-320,"y":762,"on":true},{"x":-334,"y":762,"on":false},{"x":-360,"y":758,"on":false},{"x":-370,"y":755,"on":true},{"x":-370,"y":816,"on":true},{"x":-344,"y":824,"on":false},{"x":-306,"y":824,"on":true},{"x":-248,"y":824,"on":false},{"x":-185,"y":776,"on":false}] + ] + }, + "glyph2795": { + "advanceWidth": 0, + "contours": [ + [{"x":-177,"y":713,"on":true},{"x":-142,"y":757,"on":false},{"x":-117,"y":812,"on":true},{"x":-23,"y":812,"on":true},{"x":-23,"y":802,"on":true},{"x":-43,"y":774,"on":false},{"x":-94,"y":724,"on":false},{"x":-122,"y":701,"on":true},{"x":-177,"y":701,"on":true}], + [{"x":-141,"y":607,"on":true},{"x":-196,"y":607,"on":true},{"x":-243,"y":640,"on":false},{"x":-291,"y":688,"on":true},{"x":-316,"y":663,"on":false},{"x":-364,"y":622,"on":false},{"x":-386,"y":607,"on":true},{"x":-441,"y":607,"on":true},{"x":-441,"y":619,"on":true},{"x":-417,"y":648,"on":false},{"x":-366,"y":714,"on":false},{"x":-344,"y":748,"on":true},{"x":-238,"y":748,"on":true},{"x":-216,"y":714,"on":false},{"x":-165,"y":647,"on":false},{"x":-141,"y":619,"on":true}] + ] + }, + "glyph2796": { + "advanceWidth": 0, + "contours": [ + [{"x":-460,"y":701,"on":true},{"x":-488,"y":724,"on":false},{"x":-539,"y":774,"on":false},{"x":-559,"y":802,"on":true},{"x":-559,"y":812,"on":true},{"x":-466,"y":812,"on":true},{"x":-453,"y":783,"on":false},{"x":-423,"y":734,"on":false},{"x":-406,"y":712,"on":true},{"x":-406,"y":701,"on":true}], + [{"x":-442,"y":607,"on":true},{"x":-442,"y":618,"on":true},{"x":-418,"y":647,"on":false},{"x":-367,"y":714,"on":false},{"x":-345,"y":747,"on":true},{"x":-238,"y":747,"on":true},{"x":-216,"y":712,"on":false},{"x":-165,"y":646,"on":false},{"x":-142,"y":618,"on":true},{"x":-142,"y":607,"on":true},{"x":-197,"y":607,"on":true},{"x":-219,"y":623,"on":false},{"x":-266,"y":664,"on":false},{"x":-292,"y":688,"on":true},{"x":-317,"y":664,"on":false},{"x":-365,"y":622,"on":false},{"x":-387,"y":607,"on":true}] + ] + }, + "glyph2797": { + "advanceWidth": 0, + "contours": [ + [{"x":-146,"y":869,"on":true},{"x":-102,"y":869,"on":false},{"x":-52,"y":833,"on":false},{"x":-52,"y":798,"on":true},{"x":-52,"y":770,"on":false},{"x":-87,"y":738,"on":false},{"x":-113,"y":734,"on":true},{"x":-116,"y":699,"on":true},{"x":-163,"y":699,"on":true},{"x":-167,"y":759,"on":true},{"x":-138,"y":761,"on":false},{"x":-112,"y":776,"on":false},{"x":-112,"y":793,"on":true},{"x":-112,"y":821,"on":false},{"x":-154,"y":821,"on":true},{"x":-164,"y":821,"on":false},{"x":-182,"y":818,"on":false},{"x":-188,"y":817,"on":true},{"x":-188,"y":865,"on":true},{"x":-182,"y":867,"on":false},{"x":-160,"y":869,"on":false}], + [{"x":-238,"y":748,"on":true},{"x":-216,"y":714,"on":false},{"x":-165,"y":647,"on":false},{"x":-141,"y":619,"on":true},{"x":-141,"y":607,"on":true},{"x":-196,"y":607,"on":true},{"x":-243,"y":640,"on":false},{"x":-291,"y":688,"on":true},{"x":-316,"y":663,"on":false},{"x":-364,"y":622,"on":false},{"x":-386,"y":607,"on":true},{"x":-441,"y":607,"on":true},{"x":-441,"y":619,"on":true},{"x":-417,"y":648,"on":false},{"x":-366,"y":714,"on":false},{"x":-344,"y":748,"on":true}] + ] + }, + "glyph2798": { + "advanceWidth": 0, + "contours": [ + [{"x":-132,"y":881,"on":true},{"x":-136,"y":834,"on":false},{"x":-180,"y":770,"on":false},{"x":-223,"y":770,"on":true},{"x":-247,"y":770,"on":false},{"x":-292,"y":794,"on":false},{"x":-333,"y":817,"on":false},{"x":-350,"y":817,"on":true},{"x":-369,"y":817,"on":false},{"x":-389,"y":793,"on":false},{"x":-394,"y":769,"on":true},{"x":-443,"y":769,"on":true},{"x":-438,"y":820,"on":false},{"x":-392,"y":880,"on":false},{"x":-352,"y":880,"on":true},{"x":-326,"y":880,"on":false},{"x":-281,"y":856,"on":false},{"x":-241,"y":833,"on":false},{"x":-223,"y":833,"on":true},{"x":-204,"y":833,"on":false},{"x":-186,"y":857,"on":false},{"x":-181,"y":881,"on":true}], + [{"x":-241,"y":743,"on":true},{"x":-219,"y":709,"on":false},{"x":-166,"y":648,"on":false},{"x":-140,"y":618,"on":true},{"x":-140,"y":607,"on":true},{"x":-189,"y":607,"on":true},{"x":-240,"y":637,"on":false},{"x":-290,"y":684,"on":true},{"x":-316,"y":660,"on":false},{"x":-367,"y":621,"on":false},{"x":-390,"y":607,"on":true},{"x":-439,"y":607,"on":true},{"x":-439,"y":618,"on":true},{"x":-412,"y":649,"on":false},{"x":-358,"y":712,"on":false},{"x":-338,"y":743,"on":true}] + ] + }, + "glyph2799": { + "advanceWidth": 0, + "contours": [ + [{"x":-182,"y":843,"on":true},{"x":-182,"y":833,"on":true},{"x":-222,"y":777,"on":false},{"x":-278,"y":732,"on":true},{"x":-331,"y":732,"on":true},{"x":-331,"y":743,"on":true},{"x":-314,"y":766,"on":false},{"x":-285,"y":815,"on":false},{"x":-273,"y":843,"on":true}], + [{"x":-145,"y":743,"on":true},{"x":-150,"y":678,"on":false},{"x":-226,"y":606,"on":false},{"x":-294,"y":606,"on":true},{"x":-364,"y":606,"on":false},{"x":-437,"y":679,"on":false},{"x":-441,"y":743,"on":true},{"x":-385,"y":743,"on":true},{"x":-380,"y":703,"on":false},{"x":-333,"y":672,"on":false},{"x":-294,"y":672,"on":true},{"x":-256,"y":672,"on":false},{"x":-207,"y":705,"on":false},{"x":-202,"y":743,"on":true}] + ] + }, + "glyph2800": { + "advanceWidth": 0, + "contours": [ + [{"x":-316,"y":843,"on":true},{"x":-294,"y":791,"on":false},{"x":-258,"y":743,"on":true},{"x":-258,"y":732,"on":true},{"x":-310,"y":732,"on":true},{"x":-337,"y":754,"on":false},{"x":-388,"y":807,"on":false},{"x":-407,"y":833,"on":true},{"x":-407,"y":843,"on":true}], + [{"x":-145,"y":743,"on":true},{"x":-150,"y":678,"on":false},{"x":-225,"y":606,"on":false},{"x":-294,"y":606,"on":true},{"x":-364,"y":606,"on":false},{"x":-436,"y":679,"on":false},{"x":-441,"y":743,"on":true},{"x":-385,"y":743,"on":true},{"x":-380,"y":703,"on":false},{"x":-333,"y":672,"on":false},{"x":-294,"y":672,"on":true},{"x":-256,"y":672,"on":false},{"x":-207,"y":705,"on":false},{"x":-202,"y":743,"on":true}] + ] + }, + "glyph2801": { + "advanceWidth": 0, + "contours": [ + [{"x":-311,"y":879,"on":true},{"x":-269,"y":879,"on":false},{"x":-220,"y":844,"on":false},{"x":-220,"y":810,"on":true},{"x":-220,"y":782,"on":false},{"x":-254,"y":751,"on":false},{"x":-279,"y":746,"on":true},{"x":-283,"y":725,"on":true},{"x":-326,"y":725,"on":true},{"x":-330,"y":773,"on":true},{"x":-304,"y":776,"on":false},{"x":-279,"y":790,"on":false},{"x":-279,"y":806,"on":true},{"x":-279,"y":833,"on":false},{"x":-319,"y":833,"on":true},{"x":-330,"y":833,"on":false},{"x":-348,"y":830,"on":false},{"x":-354,"y":829,"on":true},{"x":-354,"y":875,"on":true},{"x":-343,"y":879,"on":false}], + [{"x":-145,"y":743,"on":true},{"x":-150,"y":678,"on":false},{"x":-225,"y":606,"on":false},{"x":-294,"y":606,"on":true},{"x":-364,"y":606,"on":false},{"x":-436,"y":679,"on":false},{"x":-441,"y":743,"on":true},{"x":-385,"y":743,"on":true},{"x":-380,"y":703,"on":false},{"x":-333,"y":672,"on":false},{"x":-294,"y":672,"on":true},{"x":-256,"y":672,"on":false},{"x":-207,"y":705,"on":false},{"x":-202,"y":743,"on":true}] + ] + }, + "glyph2802": { + "advanceWidth": 0, + "contours": [ + [{"x":-134,"y":880,"on":true},{"x":-138,"y":830,"on":false},{"x":-184,"y":770,"on":false},{"x":-224,"y":770,"on":true},{"x":-248,"y":770,"on":false},{"x":-294,"y":794,"on":false},{"x":-335,"y":817,"on":false},{"x":-352,"y":817,"on":true},{"x":-371,"y":817,"on":false},{"x":-390,"y":793,"on":false},{"x":-396,"y":769,"on":true},{"x":-444,"y":769,"on":true},{"x":-439,"y":820,"on":false},{"x":-393,"y":879,"on":false},{"x":-354,"y":879,"on":true},{"x":-328,"y":879,"on":false},{"x":-283,"y":856,"on":false},{"x":-242,"y":832,"on":false},{"x":-225,"y":832,"on":true},{"x":-206,"y":832,"on":false},{"x":-187,"y":856,"on":false},{"x":-182,"y":880,"on":true}], + [{"x":-146,"y":736,"on":true},{"x":-150,"y":675,"on":false},{"x":-224,"y":606,"on":false},{"x":-294,"y":606,"on":true},{"x":-364,"y":606,"on":false},{"x":-436,"y":675,"on":false},{"x":-440,"y":736,"on":true},{"x":-383,"y":736,"on":true},{"x":-378,"y":700,"on":false},{"x":-332,"y":672,"on":false},{"x":-293,"y":672,"on":true},{"x":-255,"y":672,"on":false},{"x":-207,"y":701,"on":false},{"x":-202,"y":736,"on":true}] + ] + }, + "glyph2803": { + "advanceWidth": 198, + "contours": [ + [{"x":102,"y":-114,"on":true},{"x":102,"y":-88,"on":false},{"x":70,"y":-34,"on":false},{"x":37,"y":0,"on":true},{"x":104,"y":0,"on":true},{"x":135,"y":-23,"on":false},{"x":182,"y":-87,"on":false},{"x":182,"y":-127,"on":true},{"x":182,"y":-174,"on":false},{"x":128,"y":-226,"on":false},{"x":79,"y":-226,"on":true},{"x":44,"y":-226,"on":false},{"x":19,"y":-217,"on":true},{"x":19,"y":-152,"on":true},{"x":26,"y":-155,"on":false},{"x":49,"y":-158,"on":false},{"x":61,"y":-158,"on":true},{"x":80,"y":-158,"on":false},{"x":102,"y":-136,"on":false}] + ] + }, + "glyph2804": { + "advanceWidth": 218, + "contours": [ + [{"x":80,"y":-207,"on":true},{"x":60,"y":-207,"on":false},{"x":24,"y":-200,"on":false},{"x":12,"y":-196,"on":true},{"x":12,"y":-112,"on":true},{"x":22,"y":-116,"on":false},{"x":47,"y":-121,"on":false},{"x":61,"y":-121,"on":true},{"x":86,"y":-121,"on":false},{"x":112,"y":-92,"on":false},{"x":112,"y":-58,"on":true},{"x":112,"y":0,"on":true},{"x":102,"y":0,"on":true},{"x":102,"y":92,"on":true},{"x":209,"y":92,"on":true},{"x":209,"y":-60,"on":true},{"x":209,"y":-130,"on":false},{"x":145,"y":-207,"on":false}] + ] + }, + "glyph2805": { + "advanceWidth": 0, + "contours": [ + [{"x":-52,"y":730,"on":true},{"x":-52,"y":741,"on":true},{"x":-30,"y":770,"on":false},{"x":16,"y":842,"on":false},{"x":31,"y":874,"on":true},{"x":145,"y":874,"on":true},{"x":145,"y":865,"on":true},{"x":132,"y":846,"on":false},{"x":87,"y":796,"on":false},{"x":36,"y":748,"on":false},{"x":14,"y":730,"on":true}], + [{"x":-89,"y":604,"on":true},{"x":-110,"y":604,"on":false},{"x":-138,"y":629,"on":false},{"x":-138,"y":656,"on":true},{"x":-138,"y":682,"on":false},{"x":-110,"y":708,"on":false},{"x":-89,"y":708,"on":true},{"x":-69,"y":708,"on":false},{"x":-40,"y":682,"on":false},{"x":-40,"y":656,"on":true},{"x":-40,"y":629,"on":false},{"x":-69,"y":604,"on":false}], + [{"x":88,"y":604,"on":true},{"x":68,"y":604,"on":false},{"x":39,"y":629,"on":false},{"x":39,"y":656,"on":true},{"x":39,"y":682,"on":false},{"x":68,"y":708,"on":false},{"x":88,"y":708,"on":true},{"x":109,"y":708,"on":false},{"x":138,"y":682,"on":false},{"x":138,"y":656,"on":true},{"x":138,"y":629,"on":false},{"x":109,"y":604,"on":false}] + ] + }, + "glyph2806": { + "advanceWidth": 0, + "contours": [ + [{"x":-31,"y":874,"on":true},{"x":-16,"y":842,"on":false},{"x":30,"y":770,"on":false},{"x":52,"y":741,"on":true},{"x":52,"y":730,"on":true},{"x":-14,"y":730,"on":true},{"x":-36,"y":748,"on":false},{"x":-87,"y":796,"on":false},{"x":-132,"y":846,"on":false},{"x":-145,"y":865,"on":true},{"x":-145,"y":874,"on":true}], + [{"x":-89,"y":708,"on":true},{"x":-69,"y":708,"on":false},{"x":-40,"y":682,"on":false},{"x":-40,"y":656,"on":true},{"x":-40,"y":629,"on":false},{"x":-69,"y":604,"on":false},{"x":-89,"y":604,"on":true},{"x":-110,"y":604,"on":false},{"x":-138,"y":629,"on":false},{"x":-138,"y":656,"on":true},{"x":-138,"y":682,"on":false},{"x":-110,"y":708,"on":false}], + [{"x":88,"y":708,"on":true},{"x":109,"y":708,"on":false},{"x":138,"y":682,"on":false},{"x":138,"y":656,"on":true},{"x":138,"y":629,"on":false},{"x":109,"y":604,"on":false},{"x":88,"y":604,"on":true},{"x":68,"y":604,"on":false},{"x":39,"y":629,"on":false},{"x":39,"y":656,"on":true},{"x":39,"y":682,"on":false},{"x":68,"y":708,"on":false}] + ] + }, + "glyph2807": { + "advanceWidth": 0, + "contours": [ + [{"x":-27,"y":606,"on":true},{"x":-27,"y":618,"on":true},{"x":-6,"y":649,"on":false},{"x":40,"y":732,"on":false},{"x":57,"y":766,"on":true},{"x":173,"y":766,"on":true},{"x":173,"y":756,"on":true},{"x":159,"y":736,"on":false},{"x":111,"y":680,"on":false},{"x":58,"y":625,"on":false},{"x":36,"y":606,"on":true}], + [{"x":-84,"y":631,"on":true},{"x":-106,"y":631,"on":false},{"x":-134,"y":658,"on":false},{"x":-134,"y":684,"on":true},{"x":-134,"y":712,"on":false},{"x":-106,"y":738,"on":false},{"x":-84,"y":738,"on":true},{"x":-64,"y":738,"on":false},{"x":-35,"y":712,"on":false},{"x":-35,"y":684,"on":true},{"x":-35,"y":658,"on":false},{"x":-64,"y":631,"on":false}] + ] + }, + "glyph2808": { + "advanceWidth": 0, + "contours": [ + [{"x":0,"y":752,"on":true},{"x":-22,"y":752,"on":false},{"x":-50,"y":779,"on":false},{"x":-50,"y":806,"on":true},{"x":-50,"y":833,"on":false},{"x":-22,"y":859,"on":false},{"x":0,"y":859,"on":true},{"x":22,"y":859,"on":false},{"x":50,"y":833,"on":false},{"x":50,"y":806,"on":true},{"x":50,"y":779,"on":false},{"x":22,"y":752,"on":false}], + [{"x":-49,"y":604,"on":true},{"x":-62,"y":627,"on":false},{"x":-100,"y":680,"on":false},{"x":-142,"y":732,"on":false},{"x":-160,"y":752,"on":true},{"x":-160,"y":764,"on":true},{"x":-99,"y":764,"on":true},{"x":-76,"y":747,"on":false},{"x":-25,"y":700,"on":false},{"x":-1,"y":673,"on":true},{"x":24,"y":702,"on":false},{"x":72,"y":744,"on":false},{"x":98,"y":764,"on":true},{"x":159,"y":764,"on":true},{"x":159,"y":752,"on":true},{"x":142,"y":732,"on":false},{"x":99,"y":681,"on":false},{"x":60,"y":628,"on":false},{"x":48,"y":604,"on":true}] + ] + }, + "glyph2809": { + "advanceWidth": 0, + "contours": [ + [{"x":-91,"y":854,"on":true},{"x":-70,"y":854,"on":false},{"x":-41,"y":828,"on":false},{"x":-41,"y":800,"on":true},{"x":-41,"y":773,"on":false},{"x":-70,"y":746,"on":false},{"x":-91,"y":746,"on":true},{"x":-113,"y":746,"on":false},{"x":-142,"y":773,"on":false},{"x":-142,"y":800,"on":true},{"x":-142,"y":827,"on":false},{"x":-113,"y":854,"on":false}], + [{"x":91,"y":854,"on":true},{"x":112,"y":854,"on":false},{"x":141,"y":828,"on":false},{"x":141,"y":800,"on":true},{"x":141,"y":773,"on":false},{"x":112,"y":746,"on":false},{"x":91,"y":746,"on":true},{"x":69,"y":746,"on":false},{"x":41,"y":773,"on":false},{"x":41,"y":800,"on":true},{"x":41,"y":827,"on":false},{"x":69,"y":854,"on":false}], + [{"x":144,"y":689,"on":true},{"x":144,"y":613,"on":true},{"x":-143,"y":613,"on":true},{"x":-143,"y":689,"on":true}] + ] + }, + "glyph2810": { + "advanceWidth": 0, + "contours": [ + [{"x":-89,"y":747,"on":true},{"x":-110,"y":747,"on":false},{"x":-138,"y":773,"on":false},{"x":-138,"y":799,"on":true},{"x":-138,"y":826,"on":false},{"x":-110,"y":851,"on":false},{"x":-89,"y":851,"on":true},{"x":-68,"y":851,"on":false},{"x":-40,"y":826,"on":false},{"x":-40,"y":799,"on":true},{"x":-40,"y":773,"on":false},{"x":-68,"y":747,"on":false}], + [{"x":88,"y":747,"on":true},{"x":68,"y":747,"on":false},{"x":40,"y":773,"on":false},{"x":40,"y":799,"on":true},{"x":40,"y":826,"on":false},{"x":68,"y":851,"on":false},{"x":88,"y":851,"on":true},{"x":109,"y":851,"on":false},{"x":138,"y":826,"on":false},{"x":138,"y":799,"on":true},{"x":138,"y":773,"on":false},{"x":109,"y":747,"on":false}], + [{"x":-164,"y":605,"on":true},{"x":-159,"y":654,"on":false},{"x":-111,"y":717,"on":false},{"x":-66,"y":717,"on":true},{"x":-38,"y":717,"on":false},{"x":10,"y":693,"on":false},{"x":52,"y":669,"on":false},{"x":70,"y":669,"on":true},{"x":90,"y":669,"on":false},{"x":110,"y":695,"on":false},{"x":115,"y":718,"on":true},{"x":164,"y":718,"on":true},{"x":159,"y":668,"on":false},{"x":112,"y":606,"on":false},{"x":67,"y":606,"on":true},{"x":40,"y":606,"on":false},{"x":-7,"y":630,"on":false},{"x":-50,"y":655,"on":false},{"x":-68,"y":655,"on":true},{"x":-88,"y":655,"on":false},{"x":-109,"y":629,"on":false},{"x":-115,"y":605,"on":true}] + ] + }, + "glyph2811": { + "advanceWidth": 0, + "contours": [ + [{"x":-62,"y":743,"on":true},{"x":-62,"y":755,"on":true},{"x":-42,"y":784,"on":false},{"x":-1,"y":846,"on":false},{"x":14,"y":880,"on":true},{"x":127,"y":880,"on":true},{"x":127,"y":870,"on":true},{"x":108,"y":841,"on":false},{"x":35,"y":771,"on":false},{"x":4,"y":743,"on":true}], + [{"x":-159,"y":605,"on":true},{"x":-154,"y":654,"on":false},{"x":-108,"y":717,"on":false},{"x":-65,"y":717,"on":true},{"x":-38,"y":717,"on":false},{"x":9,"y":693,"on":false},{"x":49,"y":669,"on":false},{"x":67,"y":669,"on":true},{"x":86,"y":669,"on":false},{"x":103,"y":695,"on":false},{"x":108,"y":718,"on":true},{"x":159,"y":718,"on":true},{"x":154,"y":668,"on":false},{"x":108,"y":606,"on":false},{"x":65,"y":606,"on":true},{"x":40,"y":606,"on":false},{"x":-7,"y":630,"on":false},{"x":-48,"y":655,"on":false},{"x":-65,"y":655,"on":true},{"x":-84,"y":655,"on":false},{"x":-103,"y":629,"on":false},{"x":-108,"y":605,"on":true}] + ] + }, + "glyph2812": { + "advanceWidth": 0, + "contours": [ + [{"x":-4,"y":731,"on":true},{"x":-24,"y":749,"on":false},{"x":-73,"y":796,"on":false},{"x":-116,"y":844,"on":false},{"x":-128,"y":863,"on":true},{"x":-128,"y":875,"on":true},{"x":-14,"y":875,"on":true},{"x":0,"y":841,"on":false},{"x":44,"y":770,"on":false},{"x":63,"y":744,"on":true},{"x":63,"y":731,"on":true}], + [{"x":-136,"y":614,"on":true},{"x":-136,"y":688,"on":true},{"x":137,"y":688,"on":true},{"x":137,"y":614,"on":true}] + ] + }, + "glyph2813": { + "advanceWidth": 0, + "contours": [ + [{"x":-62,"y":731,"on":true},{"x":-62,"y":744,"on":true},{"x":-44,"y":770,"on":false},{"x":0,"y":841,"on":false},{"x":15,"y":875,"on":true},{"x":129,"y":875,"on":true},{"x":129,"y":863,"on":true},{"x":116,"y":844,"on":false},{"x":73,"y":796,"on":false},{"x":24,"y":749,"on":false},{"x":4,"y":731,"on":true}], + [{"x":-136,"y":614,"on":true},{"x":-136,"y":688,"on":true},{"x":137,"y":688,"on":true},{"x":137,"y":614,"on":true}] + ] + }, + "glyph2814": { + "advanceWidth": 0, + "contours": [ + [{"x":-49,"y":733,"on":true},{"x":-69,"y":767,"on":false},{"x":-131,"y":837,"on":false},{"x":-157,"y":868,"on":true},{"x":-157,"y":880,"on":true},{"x":-104,"y":880,"on":true},{"x":-78,"y":864,"on":false},{"x":-24,"y":822,"on":false},{"x":-1,"y":797,"on":true},{"x":24,"y":823,"on":false},{"x":75,"y":861,"on":false},{"x":102,"y":880,"on":true},{"x":157,"y":880,"on":true},{"x":157,"y":868,"on":true},{"x":132,"y":840,"on":false},{"x":68,"y":767,"on":false},{"x":48,"y":733,"on":true}], + [{"x":-89,"y":602,"on":true},{"x":-110,"y":602,"on":false},{"x":-138,"y":627,"on":false},{"x":-138,"y":654,"on":true},{"x":-138,"y":680,"on":false},{"x":-110,"y":706,"on":false},{"x":-89,"y":706,"on":true},{"x":-69,"y":706,"on":false},{"x":-40,"y":680,"on":false},{"x":-40,"y":654,"on":true},{"x":-40,"y":627,"on":false},{"x":-69,"y":602,"on":false}], + [{"x":88,"y":602,"on":true},{"x":68,"y":602,"on":false},{"x":39,"y":627,"on":false},{"x":39,"y":654,"on":true},{"x":39,"y":680,"on":false},{"x":68,"y":706,"on":false},{"x":88,"y":706,"on":true},{"x":109,"y":706,"on":false},{"x":138,"y":680,"on":false},{"x":138,"y":654,"on":true},{"x":138,"y":627,"on":false},{"x":109,"y":602,"on":false}] + ] + }, + "glyph2815": { + "advanceWidth": 0, + "contours": [ + [{"x":143,"y":833,"on":true},{"x":143,"y":759,"on":true},{"x":-144,"y":759,"on":true},{"x":-144,"y":833,"on":true}], + [{"x":-90,"y":706,"on":true},{"x":-70,"y":706,"on":false},{"x":-42,"y":680,"on":false},{"x":-42,"y":653,"on":true},{"x":-42,"y":627,"on":false},{"x":-70,"y":602,"on":false},{"x":-90,"y":602,"on":true},{"x":-112,"y":602,"on":false},{"x":-140,"y":627,"on":false},{"x":-140,"y":653,"on":true},{"x":-140,"y":680,"on":false},{"x":-112,"y":706,"on":false}], + [{"x":90,"y":706,"on":true},{"x":111,"y":706,"on":false},{"x":140,"y":680,"on":false},{"x":140,"y":653,"on":true},{"x":140,"y":627,"on":false},{"x":111,"y":602,"on":false},{"x":90,"y":602,"on":true},{"x":69,"y":602,"on":false},{"x":41,"y":627,"on":false},{"x":41,"y":653,"on":true},{"x":41,"y":680,"on":false},{"x":69,"y":706,"on":false}] + ] + }, + "glyph2816": { + "advanceWidth": 0, + "contours": [ + [{"x":-144,"y":757,"on":true},{"x":-144,"y":830,"on":true},{"x":143,"y":830,"on":true},{"x":143,"y":757,"on":true}], + [{"x":-159,"y":605,"on":true},{"x":-154,"y":655,"on":false},{"x":-108,"y":717,"on":false},{"x":-65,"y":717,"on":true},{"x":-38,"y":717,"on":false},{"x":9,"y":693,"on":false},{"x":49,"y":669,"on":false},{"x":67,"y":669,"on":true},{"x":86,"y":669,"on":false},{"x":103,"y":695,"on":false},{"x":108,"y":718,"on":true},{"x":159,"y":718,"on":true},{"x":154,"y":668,"on":false},{"x":108,"y":606,"on":false},{"x":65,"y":606,"on":true},{"x":40,"y":606,"on":false},{"x":-7,"y":630,"on":false},{"x":-48,"y":655,"on":false},{"x":-65,"y":655,"on":true},{"x":-84,"y":655,"on":false},{"x":-103,"y":629,"on":false},{"x":-108,"y":605,"on":true}] + ] + }, + "glyph2817": { + "advanceWidth": 0, + "contours": [ + [{"x":143,"y":833,"on":true},{"x":143,"y":760,"on":true},{"x":-143,"y":760,"on":true},{"x":-143,"y":833,"on":true}], + [{"x":0,"y":718,"on":true},{"x":22,"y":718,"on":false},{"x":51,"y":690,"on":false},{"x":51,"y":661,"on":true},{"x":51,"y":634,"on":false},{"x":22,"y":605,"on":false},{"x":0,"y":605,"on":true},{"x":-23,"y":605,"on":false},{"x":-52,"y":634,"on":false},{"x":-52,"y":661,"on":true},{"x":-52,"y":690,"on":false},{"x":-23,"y":718,"on":false}] + ] + }, + "glyph2818": { + "advanceWidth": 0, + "contours": [ + [{"x":144,"y":1002,"on":true},{"x":144,"y":929,"on":true},{"x":-146,"y":929,"on":true},{"x":-146,"y":1002,"on":true}], + [{"x":0,"y":883,"on":true},{"x":22,"y":883,"on":false},{"x":53,"y":855,"on":false},{"x":53,"y":826,"on":true},{"x":53,"y":798,"on":false},{"x":22,"y":770,"on":false},{"x":0,"y":770,"on":true},{"x":-23,"y":770,"on":false},{"x":-53,"y":798,"on":false},{"x":-53,"y":826,"on":true},{"x":-53,"y":855,"on":false},{"x":-23,"y":883,"on":false}] + ] + }, + "glyph2819": { + "advanceWidth": 570, + "contours": [ + [{"x":475,"y":712,"on":true},{"x":475,"y":684,"on":true},{"x":437,"y":605,"on":true},{"x":418,"y":605,"on":true},{"x":395,"y":654,"on":true},{"x":316,"y":654,"on":true},{"x":293,"y":605,"on":true},{"x":275,"y":605,"on":true},{"x":252,"y":654,"on":true},{"x":173,"y":654,"on":true},{"x":150,"y":605,"on":true},{"x":131,"y":605,"on":true},{"x":94,"y":684,"on":true},{"x":94,"y":712,"on":true}] + ] + }, + "glyph2820": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2070","x":0,"y":-416,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2821": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni00B9","x":0,"y":-416,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2822": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni00B3","x":0,"y":-416,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2823": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2075","x":0,"y":-416,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2824": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2076","x":0,"y":-416,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2825": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2077","x":0,"y":-416,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2826": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2079","x":0,"y":-416,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2827": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2070","x":0,"y":-130,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2828": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni00B9","x":0,"y":-130,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2829": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni00B2","x":0,"y":-130,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2830": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni00B3","x":0,"y":-130,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2831": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2074","x":0,"y":-130,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2832": { + "advanceWidth": 344, + "references": [ + {"glyph":"uni2075","x":0,"y":-130,"a":1,"b":0,"c":0,"d":1,"roundToGrid":true,"useMyMetrics":true} + ] + }, + "glyph2833": { + "advanceWidth": 478, + "contours": [ + [{"x":303,"y":-61,"on":true},{"x":303,"y":-71,"on":true},{"x":293,"y":-102,"on":false},{"x":252,"y":-188,"on":false},{"x":228,"y":-221,"on":true},{"x":169,"y":-221,"on":true},{"x":169,"y":-209,"on":true},{"x":175,"y":-192,"on":false},{"x":189,"y":-138,"on":false},{"x":202,"y":-82,"on":false},{"x":204,"y":-61,"on":true}] + ] + } + }, + "glyph_order": [".notdef","space","exclam","quotedbl","numbersign","dollar","percent","ampersand","quotesingle","parenleft","parenright","asterisk","plus","comma","hyphen","period","slash","zero","one","two","three","four","five","six","seven","eight","nine","colon","semicolon","less","equal","greater","question","at","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","bracketleft","backslash","bracketright","asciicircum","underscore","grave","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","braceleft","bar","braceright","asciitilde","uni00A0","exclamdown","cent","sterling","currency","yen","brokenbar","section","dieresis","copyright","ordfeminine","guillemotleft","logicalnot","uni00AD","registered","macron","degree","plusminus","uni00B2","uni00B3","acute","mu","paragraph","periodcentered","cedilla","uni00B9","ordmasculine","guillemotright","onequarter","onehalf","threequarters","questiondown","Agrave","Aacute","Acircumflex","Atilde","Adieresis","Aring","AE","Ccedilla","Egrave","Eacute","Ecircumflex","Edieresis","Igrave","Iacute","Icircumflex","Idieresis","Eth","Ntilde","Ograve","Oacute","Ocircumflex","Otilde","Odieresis","multiply","Oslash","Ugrave","Uacute","Ucircumflex","Udieresis","Yacute","Thorn","germandbls","agrave","aacute","acircumflex","atilde","adieresis","aring","ae","ccedilla","egrave","eacute","ecircumflex","edieresis","igrave","iacute","icircumflex","idieresis","eth","ntilde","ograve","oacute","ocircumflex","otilde","odieresis","divide","oslash","ugrave","uacute","ucircumflex","udieresis","yacute","thorn","ydieresis","Amacron","amacron","Abreve","abreve","Aogonek","aogonek","Cacute","cacute","Ccircumflex","ccircumflex","Cdotaccent","cdotaccent","Ccaron","ccaron","Dcaron","dcaron","Dcroat","dcroat","Emacron","emacron","Ebreve","ebreve","Edotaccent","edotaccent","Eogonek","eogonek","Ecaron","ecaron","Gcircumflex","gcircumflex","Gbreve","gbreve","Gdotaccent","gdotaccent","uni0122","uni0123","Hcircumflex","hcircumflex","Hbar","hbar","Itilde","itilde","Imacron","imacron","Ibreve","ibreve","Iogonek","iogonek","Idotaccent","dotlessi","IJ","ij","Jcircumflex","jcircumflex","uni0136","uni0137","kgreenlandic","Lacute","lacute","uni013B","uni013C","Lcaron","lcaron","Ldot","ldot","Lslash","lslash","Nacute","nacute","uni0145","uni0146","Ncaron","ncaron","napostrophe","Eng","eng","Omacron","omacron","Obreve","obreve","Ohungarumlaut","ohungarumlaut","OE","oe","Racute","racute","uni0156","uni0157","Rcaron","rcaron","Sacute","sacute","Scircumflex","scircumflex","Scedilla","scedilla","Scaron","scaron","uni0162","uni0163","Tcaron","tcaron","Tbar","tbar","Utilde","utilde","Umacron","umacron","Ubreve","ubreve","Uring","uring","Uhungarumlaut","uhungarumlaut","Uogonek","uogonek","Wcircumflex","wcircumflex","Ycircumflex","ycircumflex","Ydieresis","Zacute","zacute","Zdotaccent","zdotaccent","Zcaron","zcaron","longs","uni0180","uni0181","uni0182","uni0183","uni0184","uni0185","uni0186","uni0187","uni0188","uni0189","uni018A","uni018B","uni018C","uni018D","uni018E","uni018F","uni0190","uni0191","florin","uni0193","uni0194","uni0195","uni0196","uni0197","uni0198","uni0199","uni019A","uni019B","uni019C","uni019D","uni019E","uni019F","Ohorn","ohorn","uni01A2","uni01A3","uni01A4","uni01A5","uni01A6","uni01A7","uni01A8","uni01A9","uni01AA","uni01AB","uni01AC","uni01AD","uni01AE","Uhorn","uhorn","uni01B1","uni01B2","uni01B3","uni01B4","uni01B5","uni01B6","uni01B7","uni01B8","uni01B9","uni01BA","uni01BB","uni01BC","uni01BD","uni01BE","uni01BF","uni01C0","uni01C1","uni01C2","uni01C3","uni01C4","uni01C5","uni01C6","uni01C7","uni01C8","uni01C9","uni01CA","uni01CB","uni01CC","uni01CD","uni01CE","uni01CF","uni01D0","uni01D1","uni01D2","uni01D3","uni01D4","uni01D5","uni01D6","uni01D7","uni01D8","uni01D9","uni01DA","uni01DB","uni01DC","uni01DD","uni01DE","uni01DF","uni01E0","uni01E1","uni01E2","uni01E3","uni01E4","uni01E5","Gcaron","gcaron","uni01E8","uni01E9","uni01EA","uni01EB","uni01EC","uni01ED","uni01EE","uni01EF","uni01F0","uni01F1","uni01F2","uni01F3","uni01F4","uni01F5","uni01F6","uni01F7","uni01F8","uni01F9","Aringacute","aringacute","AEacute","aeacute","Oslashacute","oslashacute","uni0200","uni0201","uni0202","uni0203","uni0204","uni0205","uni0206","uni0207","uni0208","uni0209","uni020A","uni020B","uni020C","uni020D","uni020E","uni020F","uni0210","uni0211","uni0212","uni0213","uni0214","uni0215","uni0216","uni0217","uni0218","uni0219","uni021A","uni021B","uni021C","uni021D","uni021E","uni021F","uni0220","uni0221","uni0222","uni0223","uni0224","uni0225","uni0226","uni0227","uni0228","uni0229","uni022A","uni022B","uni022C","uni022D","uni022E","uni022F","uni0230","uni0231","uni0232","uni0233","uni0234","uni0235","uni0236","uni0237","uni0238","uni0239","uni023A","uni023B","uni023C","uni023D","uni023E","uni023F","uni0240","uni0241","uni0242","uni0243","uni0244","uni0245","uni0246","uni0247","uni0248","uni0249","uni024A","uni024B","uni024C","uni024D","uni024E","uni024F","uni0250","uni0251","uni0252","uni0253","uni0254","uni0255","uni0256","uni0257","uni0258","uni0259","uni025A","uni025B","uni025C","uni025D","uni025E","uni025F","uni0260","uni0261","uni0262","uni0263","uni0264","uni0265","uni0266","uni0267","uni0268","uni0269","uni026A","uni026B","uni026C","uni026D","uni026E","uni026F","uni0270","uni0271","uni0272","uni0273","uni0274","uni0275","uni0276","uni0277","uni0278","uni0279","uni027A","uni027B","uni027C","uni027D","uni027E","uni027F","uni0280","uni0281","uni0282","uni0283","uni0284","uni0285","uni0286","uni0287","uni0288","uni0289","uni028A","uni028B","uni028C","uni028D","uni028E","uni028F","uni0290","uni0291","uni0292","uni0293","uni0294","uni0295","uni0296","uni0297","uni0298","uni0299","uni029A","uni029B","uni029C","uni029D","uni029E","uni029F","uni02A0","uni02A1","uni02A2","uni02A3","uni02A4","uni02A5","uni02A6","uni02A7","uni02A8","uni02A9","uni02AA","uni02AB","uni02AC","uni02AD","uni02AE","uni02AF","uni02B0","uni02B1","uni02B2","uni02B3","uni02B4","uni02B5","uni02B6","uni02B7","uni02B8","uni02B9","uni02BA","uni02BB","uni02BC","uni02BD","uni02BE","uni02BF","uni02C0","uni02C1","uni02C2","uni02C3","uni02C4","uni02C5","circumflex","caron","uni02C8","uni02C9","uni02CA","uni02CB","uni02CC","uni02CD","uni02CE","uni02CF","uni02D0","uni02D1","uni02D2","uni02D3","uni02D4","uni02D5","uni02D6","uni02D7","breve","dotaccent","ring","ogonek","tilde","hungarumlaut","uni02DE","uni02DF","uni02E0","uni02E1","uni02E2","uni02E3","uni02E4","uni02E5","uni02E6","uni02E7","uni02E8","uni02E9","uni02EA","uni02EB","uni02EC","uni02ED","uni02EE","uni02EF","uni02F0","uni02F1","uni02F2","uni02F3","uni02F4","uni02F5","uni02F6","uni02F7","uni02F8","uni02F9","uni02FA","uni02FB","uni02FC","uni02FD","uni02FE","uni02FF","gravecomb","acutecomb","uni0302","tildecomb","uni0304","uni0305","uni0306","uni0307","uni0308","hookabovecomb","uni030A","uni030B","uni030C","uni030D","uni030E","uni030F","uni0310","uni0311","uni0312","uni0313","uni0314","uni0315","uni0316","uni0317","uni0318","uni0319","uni031A","uni031B","uni031C","uni031D","uni031E","uni031F","uni0320","uni0321","uni0322","dotbelowcomb","uni0324","uni0325","uni0326","uni0327","uni0328","uni0329","uni032A","uni032B","uni032C","uni032D","uni032E","uni032F","uni0330","uni0331","uni0332","uni0333","uni0334","uni0335","uni0336","uni0337","uni0338","uni0339","uni033A","uni033B","uni033C","uni033D","uni033E","uni033F","uni0340","uni0341","uni0342","uni0343","uni0344","uni0345","uni0346","uni0347","uni0348","uni0349","uni034A","uni034B","uni034C","uni034D","uni034E","uni034F","uni0350","uni0351","uni0352","uni0353","uni0354","uni0355","uni0356","uni0357","uni0358","uni0359","uni035A","uni035B","uni035C","uni035D","uni035E","uni035F","uni0360","uni0361","uni0362","uni0363","uni0364","uni0365","uni0366","uni0367","uni0368","uni0369","uni036A","uni036B","uni036C","uni036D","uni036E","uni036F","uni0370","uni0371","uni0372","uni0373","uni0374","uni0375","uni0376","uni0377","uni037A","uni037B","uni037C","uni037D","uni037E","uni037F","tonos","dieresistonos","Alphatonos","anoteleia","Epsilontonos","Etatonos","Iotatonos","Omicrontonos","Upsilontonos","Omegatonos","iotadieresistonos","Alpha","Beta","Gamma","uni0394","Epsilon","Zeta","Eta","Theta","Iota","Kappa","Lambda","Mu","Nu","Xi","Omicron","Pi","Rho","Sigma","Tau","Upsilon","Phi","Chi","Psi","uni03A9","Iotadieresis","Upsilondieresis","alphatonos","epsilontonos","etatonos","iotatonos","upsilondieresistonos","alpha","beta","gamma","delta","epsilon","zeta","eta","theta","iota","kappa","lambda","uni03BC","nu","xi","omicron","pi","rho","sigma1","sigma","tau","upsilon","phi","chi","psi","omega","iotadieresis","upsilondieresis","omicrontonos","upsilontonos","omegatonos","uni03CF","uni03D0","theta1","Upsilon1","uni03D3","uni03D4","phi1","omega1","uni03D7","uni03D8","uni03D9","uni03DA","uni03DB","uni03DC","uni03DD","uni03DE","uni03DF","uni03E0","uni03E1","uni03F0","uni03F1","uni03F2","uni03F3","uni03F4","uni03F5","uni03F6","uni03F7","uni03F8","uni03F9","uni03FA","uni03FB","uni03FC","uni03FD","uni03FE","uni03FF","uni0400","uni0401","uni0402","uni0403","uni0404","uni0405","uni0406","uni0407","uni0408","uni0409","uni040A","uni040B","uni040C","uni040D","uni040E","uni040F","uni0410","uni0411","uni0412","uni0413","uni0414","uni0415","uni0416","uni0417","uni0418","uni0419","uni041A","uni041B","uni041C","uni041D","uni041E","uni041F","uni0420","uni0421","uni0422","uni0423","uni0424","uni0425","uni0426","uni0427","uni0428","uni0429","uni042A","uni042B","uni042C","uni042D","uni042E","uni042F","uni0430","uni0431","uni0432","uni0433","uni0434","uni0435","uni0436","uni0437","uni0438","uni0439","uni043A","uni043B","uni043C","uni043D","uni043E","uni043F","uni0440","uni0441","uni0442","uni0443","uni0444","uni0445","uni0446","uni0447","uni0448","uni0449","uni044A","uni044B","uni044C","uni044D","uni044E","uni044F","uni0450","uni0451","uni0452","uni0453","uni0454","uni0455","uni0456","uni0457","uni0458","uni0459","uni045A","uni045B","uni045C","uni045D","uni045E","uni045F","uni0460","uni0461","uni0462","uni0463","uni0464","uni0465","uni0466","uni0467","uni0468","uni0469","uni046A","uni046B","uni046C","uni046D","uni046E","uni046F","uni0470","uni0471","uni0472","uni0473","uni0474","uni0475","uni0476","uni0477","uni0478","uni0479","uni047A","uni047B","uni047C","uni047D","uni047E","uni047F","uni0480","uni0481","uni0482","uni0483","uni0484","uni0485","uni0486","uni0487","uni0488","uni0489","uni048A","uni048B","uni048C","uni048D","uni048E","uni048F","uni0490","uni0491","uni0492","uni0493","uni0494","uni0495","uni0496","uni0497","uni0498","uni0499","uni049A","uni049B","uni049C","uni049D","uni049E","uni049F","uni04A0","uni04A1","uni04A2","uni04A3","uni04A4","uni04A5","uni04A6","uni04A7","uni04A8","uni04A9","uni04AA","uni04AB","uni04AC","uni04AD","uni04AE","uni04AF","uni04B0","uni04B1","uni04B2","uni04B3","uni04B4","uni04B5","uni04B6","uni04B7","uni04B8","uni04B9","uni04BA","uni04BB","uni04BC","uni04BD","uni04BE","uni04BF","uni04C0","uni04C1","uni04C2","uni04C3","uni04C4","uni04C5","uni04C6","uni04C7","uni04C8","uni04C9","uni04CA","uni04CB","uni04CC","uni04CD","uni04CE","uni04CF","uni04D0","uni04D1","uni04D2","uni04D3","uni04D4","uni04D5","uni04D6","uni04D7","uni04D8","uni04D9","uni04DA","uni04DB","uni04DC","uni04DD","uni04DE","uni04DF","uni04E0","uni04E1","uni04E2","uni04E3","uni04E4","uni04E5","uni04E6","uni04E7","uni04E8","uni04E9","uni04EA","uni04EB","uni04EC","uni04ED","uni04EE","uni04EF","uni04F0","uni04F1","uni04F2","uni04F3","uni04F4","uni04F5","uni04F6","uni04F7","uni04F8","uni04F9","uni04FA","uni04FB","uni04FC","uni04FD","uni04FE","uni04FF","uni0500","uni0501","uni0502","uni0503","uni0504","uni0505","uni0506","uni0507","uni0508","uni0509","uni050A","uni050B","uni050C","uni050D","uni050E","uni050F","uni0510","uni0511","uni0512","uni0513","uni0514","uni0515","uni0516","uni0517","uni0518","uni0519","uni051A","uni051B","uni051C","uni051D","uni051E","uni051F","uni0520","uni0521","uni0522","uni0523","uni0524","uni0525","uni0526","uni0527","uni0528","uni0529","uni052A","uni052B","uni052C","uni052D","uni052E","uni052F","uni1AB0","uni1AB1","uni1AB2","uni1AB3","uni1AB4","uni1AB5","uni1AB6","uni1AB7","uni1AB8","uni1AB9","uni1ABA","uni1ABB","uni1ABC","uni1ABD","uni1ABE","uni1C80","uni1C81","uni1C82","uni1C83","uni1C84","uni1C85","uni1C86","uni1C87","uni1C88","uni1D00","uni1D01","uni1D02","uni1D03","uni1D04","uni1D05","uni1D06","uni1D07","uni1D08","uni1D09","uni1D0A","uni1D0B","uni1D0C","uni1D0D","uni1D0E","uni1D0F","uni1D10","uni1D11","uni1D12","uni1D13","uni1D14","uni1D15","uni1D16","uni1D17","uni1D18","uni1D19","uni1D1A","uni1D1B","uni1D1C","uni1D1D","uni1D1E","uni1D1F","uni1D20","uni1D21","uni1D22","uni1D23","uni1D24","uni1D25","uni1D26","uni1D27","uni1D28","uni1D29","uni1D2A","uni1D2B","uni1D2C","uni1D2D","uni1D2E","uni1D2F","uni1D30","uni1D31","uni1D32","uni1D33","uni1D34","uni1D35","uni1D36","uni1D37","uni1D38","uni1D39","uni1D3A","uni1D3B","uni1D3C","uni1D3D","uni1D3E","uni1D3F","uni1D40","uni1D41","uni1D42","uni1D43","uni1D44","uni1D45","uni1D46","uni1D47","uni1D48","uni1D49","uni1D4A","uni1D4B","uni1D4C","uni1D4D","uni1D4E","uni1D4F","uni1D50","uni1D51","uni1D52","uni1D53","uni1D54","uni1D55","uni1D56","uni1D57","uni1D58","uni1D59","uni1D5A","uni1D5B","uni1D5C","uni1D5D","uni1D5E","uni1D5F","uni1D60","uni1D61","uni1D62","uni1D63","uni1D64","uni1D65","uni1D66","uni1D67","uni1D68","uni1D69","uni1D6A","uni1D6B","uni1D6C","uni1D6D","uni1D6E","uni1D6F","uni1D70","uni1D71","uni1D72","uni1D73","uni1D74","uni1D75","uni1D76","uni1D77","uni1D78","uni1D79","uni1D7A","uni1D7B","uni1D7C","uni1D7D","uni1D7E","uni1D7F","uni1D80","uni1D81","uni1D82","uni1D83","uni1D84","uni1D85","uni1D86","uni1D87","uni1D88","uni1D89","uni1D8A","uni1D8B","uni1D8C","uni1D8D","uni1D8E","uni1D8F","uni1D90","uni1D91","uni1D92","uni1D93","uni1D94","uni1D95","uni1D96","uni1D97","uni1D98","uni1D99","uni1D9A","uni1D9B","uni1D9C","uni1D9D","uni1D9E","uni1D9F","uni1DA0","uni1DA1","uni1DA2","uni1DA3","uni1DA4","uni1DA5","uni1DA6","uni1DA7","uni1DA8","uni1DA9","uni1DAA","uni1DAB","uni1DAC","uni1DAD","uni1DAE","uni1DAF","uni1DB0","uni1DB1","uni1DB2","uni1DB3","uni1DB4","uni1DB5","uni1DB6","uni1DB7","uni1DB8","uni1DB9","uni1DBA","uni1DBB","uni1DBC","uni1DBD","uni1DBE","uni1DBF","uni1DC0","uni1DC1","uni1DC2","uni1DC3","uni1DC4","uni1DC5","uni1DC6","uni1DC7","uni1DC8","uni1DC9","uni1DCA","uni1DCB","uni1DCC","uni1DCD","uni1DCE","uni1DCF","uni1DD0","uni1DD1","uni1DD2","uni1DD3","uni1DD4","uni1DD5","uni1DD6","uni1DD7","uni1DD8","uni1DD9","uni1DDA","uni1DDB","uni1DDC","uni1DDD","uni1DDE","uni1DDF","uni1DE0","uni1DE1","uni1DE2","uni1DE3","uni1DE4","uni1DE5","uni1DE6","uni1DE7","uni1DE8","uni1DE9","uni1DEA","uni1DEB","uni1DEC","uni1DED","uni1DEE","uni1DEF","uni1DF0","uni1DF1","uni1DF2","uni1DF3","uni1DF4","uni1DF5","uni1DFB","uni1DFC","uni1DFD","uni1DFE","uni1DFF","uni1E00","uni1E01","uni1E02","uni1E03","uni1E04","uni1E05","uni1E06","uni1E07","uni1E08","uni1E09","uni1E0A","uni1E0B","uni1E0C","uni1E0D","uni1E0E","uni1E0F","uni1E10","uni1E11","uni1E12","uni1E13","uni1E14","uni1E15","uni1E16","uni1E17","uni1E18","uni1E19","uni1E1A","uni1E1B","uni1E1C","uni1E1D","uni1E1E","uni1E1F","uni1E20","uni1E21","uni1E22","uni1E23","uni1E24","uni1E25","uni1E26","uni1E27","uni1E28","uni1E29","uni1E2A","uni1E2B","uni1E2C","uni1E2D","uni1E2E","uni1E2F","uni1E30","uni1E31","uni1E32","uni1E33","uni1E34","uni1E35","uni1E36","uni1E37","uni1E38","uni1E39","uni1E3A","uni1E3B","uni1E3C","uni1E3D","uni1E3E","uni1E3F","uni1E40","uni1E41","uni1E42","uni1E43","uni1E44","uni1E45","uni1E46","uni1E47","uni1E48","uni1E49","uni1E4A","uni1E4B","uni1E4C","uni1E4D","uni1E4E","uni1E4F","uni1E50","uni1E51","uni1E52","uni1E53","uni1E54","uni1E55","uni1E56","uni1E57","uni1E58","uni1E59","uni1E5A","uni1E5B","uni1E5C","uni1E5D","uni1E5E","uni1E5F","uni1E60","uni1E61","uni1E62","uni1E63","uni1E64","uni1E65","uni1E66","uni1E67","uni1E68","uni1E69","uni1E6A","uni1E6B","uni1E6C","uni1E6D","uni1E6E","uni1E6F","uni1E70","uni1E71","uni1E72","uni1E73","uni1E74","uni1E75","uni1E76","uni1E77","uni1E78","uni1E79","uni1E7A","uni1E7B","uni1E7C","uni1E7D","uni1E7E","uni1E7F","Wgrave","wgrave","Wacute","wacute","Wdieresis","wdieresis","uni1E86","uni1E87","uni1E88","uni1E89","uni1E8A","uni1E8B","uni1E8C","uni1E8D","uni1E8E","uni1E8F","uni1E90","uni1E91","uni1E92","uni1E93","uni1E94","uni1E95","uni1E96","uni1E97","uni1E98","uni1E99","uni1E9A","uni1E9B","uni1E9C","uni1E9D","uni1E9E","uni1E9F","uni1EA0","uni1EA1","uni1EA2","uni1EA3","uni1EA4","uni1EA5","uni1EA6","uni1EA7","uni1EA8","uni1EA9","uni1EAA","uni1EAB","uni1EAC","uni1EAD","uni1EAE","uni1EAF","uni1EB0","uni1EB1","uni1EB2","uni1EB3","uni1EB4","uni1EB5","uni1EB6","uni1EB7","uni1EB8","uni1EB9","uni1EBA","uni1EBB","uni1EBC","uni1EBD","uni1EBE","uni1EBF","uni1EC0","uni1EC1","uni1EC2","uni1EC3","uni1EC4","uni1EC5","uni1EC6","uni1EC7","uni1EC8","uni1EC9","uni1ECA","uni1ECB","uni1ECC","uni1ECD","uni1ECE","uni1ECF","uni1ED0","uni1ED1","uni1ED2","uni1ED3","uni1ED4","uni1ED5","uni1ED6","uni1ED7","uni1ED8","uni1ED9","uni1EDA","uni1EDB","uni1EDC","uni1EDD","uni1EDE","uni1EDF","uni1EE0","uni1EE1","uni1EE2","uni1EE3","uni1EE4","uni1EE5","uni1EE6","uni1EE7","uni1EE8","uni1EE9","uni1EEA","uni1EEB","uni1EEC","uni1EED","uni1EEE","uni1EEF","uni1EF0","uni1EF1","Ygrave","ygrave","uni1EF4","uni1EF5","uni1EF6","uni1EF7","uni1EF8","uni1EF9","uni1EFA","uni1EFB","uni1EFC","uni1EFD","uni1EFE","uni1EFF","uni1F00","uni1F01","uni1F02","uni1F03","uni1F04","uni1F05","uni1F06","uni1F07","uni1F08","uni1F09","uni1F0A","uni1F0B","uni1F0C","uni1F0D","uni1F0E","uni1F0F","uni1F10","uni1F11","uni1F12","uni1F13","uni1F14","uni1F15","uni1F18","uni1F19","uni1F1A","uni1F1B","uni1F1C","uni1F1D","uni1F20","uni1F21","uni1F22","uni1F23","uni1F24","uni1F25","uni1F26","uni1F27","uni1F28","uni1F29","uni1F2A","uni1F2B","uni1F2C","uni1F2D","uni1F2E","uni1F2F","uni1F30","uni1F31","uni1F32","uni1F33","uni1F34","uni1F35","uni1F36","uni1F37","uni1F38","uni1F39","uni1F3A","uni1F3B","uni1F3C","uni1F3D","uni1F3E","uni1F3F","uni1F40","uni1F41","uni1F42","uni1F43","uni1F44","uni1F45","uni1F48","uni1F49","uni1F4A","uni1F4B","uni1F4C","uni1F4D","uni1F50","uni1F51","uni1F52","uni1F53","uni1F54","uni1F55","uni1F56","uni1F57","uni1F59","uni1F5B","uni1F5D","uni1F5F","uni1F60","uni1F61","uni1F62","uni1F63","uni1F64","uni1F65","uni1F66","uni1F67","uni1F68","uni1F69","uni1F6A","uni1F6B","uni1F6C","uni1F6D","uni1F6E","uni1F6F","uni1F70","uni1F71","uni1F72","uni1F73","uni1F74","uni1F75","uni1F76","uni1F77","uni1F78","uni1F79","uni1F7A","uni1F7B","uni1F7C","uni1F7D","uni1F80","uni1F81","uni1F82","uni1F83","uni1F84","uni1F85","uni1F86","uni1F87","uni1F88","uni1F89","uni1F8A","uni1F8B","uni1F8C","uni1F8D","uni1F8E","uni1F8F","uni1F90","uni1F91","uni1F92","uni1F93","uni1F94","uni1F95","uni1F96","uni1F97","uni1F98","uni1F99","uni1F9A","uni1F9B","uni1F9C","uni1F9D","uni1F9E","uni1F9F","uni1FA0","uni1FA1","uni1FA2","uni1FA3","uni1FA4","uni1FA5","uni1FA6","uni1FA7","uni1FA8","uni1FA9","uni1FAA","uni1FAB","uni1FAC","uni1FAD","uni1FAE","uni1FAF","uni1FB0","uni1FB1","uni1FB2","uni1FB3","uni1FB4","uni1FB6","uni1FB7","uni1FB8","uni1FB9","uni1FBA","uni1FBB","uni1FBC","uni1FBD","uni1FBE","uni1FBF","uni1FC0","uni1FC1","uni1FC2","uni1FC3","uni1FC4","uni1FC6","uni1FC7","uni1FC8","uni1FC9","uni1FCA","uni1FCB","uni1FCC","uni1FCD","uni1FCE","uni1FCF","uni1FD0","uni1FD1","uni1FD2","uni1FD3","uni1FD6","uni1FD7","uni1FD8","uni1FD9","uni1FDA","uni1FDB","uni1FDD","uni1FDE","uni1FDF","uni1FE0","uni1FE1","uni1FE2","uni1FE3","uni1FE4","uni1FE5","uni1FE6","uni1FE7","uni1FE8","uni1FE9","uni1FEA","uni1FEB","uni1FEC","uni1FED","uni1FEE","uni1FEF","uni1FF2","uni1FF3","uni1FF4","uni1FF6","uni1FF7","uni1FF8","uni1FF9","uni1FFA","uni1FFB","uni1FFC","uni1FFD","uni1FFE","uni2000","uni2001","uni2002","uni2003","uni2004","uni2005","uni2006","uni2007","uni2008","uni2009","uni200A","uni200B","uni200C","uni200D","uni200E","uni200F","uni2010","uni2011","figuredash","endash","uni2015","uni2016","underscoredbl","quotesinglbase","quotereversed","quotedblbase","uni201F","dagger","daggerdbl","bullet","uni2023","onedotenleader","twodotenleader","uni2027","uni2028","uni2029","uni202A","uni202B","uni202C","uni202D","uni202E","uni202F","perthousand","uni2031","minute","second","uni2034","uni2035","uni2036","uni2037","uni2038","guilsinglleft","guilsinglright","uni203B","exclamdbl","uni203D","uni203E","uni203F","uni2040","uni2041","uni2042","uni2043","fraction","uni2045","uni2046","uni2047","uni2048","uni2049","uni204A","uni204B","uni204C","uni204D","uni204E","uni204F","uni2050","uni2051","uni2052","uni2053","uni2054","uni2055","uni2056","uni2057","uni2058","uni2059","uni205A","uni205B","uni205C","uni205D","uni205E","uni205F","uni2060","uni2061","uni2062","uni2063","uni2064","uni2066","uni2067","uni2068","uni2069","uni206A","uni206B","uni206C","uni206D","uni206E","uni206F","uni2070","uni2071","uni2074","uni2075","uni2076","uni2077","uni2078","uni2079","uni207A","uni207B","uni207C","uni207D","uni207E","uni207F","uni2080","uni2081","uni2082","uni2083","uni2084","uni2085","uni2086","uni2087","uni2088","uni2089","uni208A","uni208B","uni208C","uni208D","uni208E","uni2090","uni2091","uni2092","uni2093","uni2094","uni2095","uni2096","uni2097","uni2098","uni2099","uni209A","uni209B","uni209C","uni20A0","colonmonetary","uni20A2","franc","lira","uni20A5","uni20A6","peseta","uni20A8","uni20A9","uni20AA","dong","Euro","uni20AD","uni20AE","uni20AF","uni20B0","uni20B1","uni20B2","uni20B3","uni20B4","uni20B5","uni20B6","uni20B7","uni20B8","uni20B9","uni20BA","uni20BB","uni20BC","uni20BD","uni20BE","uni20BF","uni20F0","uni2100","uni2101","uni2102","uni2103","uni2104","uni2105","uni2106","uni2107","uni2108","uni2109","uni210A","uni210B","uni210C","uni210D","uni210E","uni210F","uni2110","Ifraktur","uni2112","uni2113","uni2114","uni2115","uni2116","uni2117","weierstrass","uni2119","uni211A","uni211B","Rfraktur","uni211D","prescription","uni211F","uni2120","uni2121","trademark","uni2123","uni2124","uni2125","Omega","uni2127","uni2128","uni2129","uni212A","uni212B","uni212C","uni212D","estimated","uni212F","uni2130","uni2131","uni2132","uni2133","uni2134","aleph","uni2136","uni2137","uni2138","uni2139","uni213A","uni213B","uni213C","uni213D","uni213E","uni213F","uni2140","uni2141","uni2142","uni2143","uni2144","uni2145","uni2146","uni2147","uni2148","uni2149","uni214A","uni214B","uni214C","uni214D","uni214E","uni214F","uni2150","uni2151","uni2152","onethird","twothirds","uni2155","uni2156","uni2157","uni2158","uni2159","uni215A","oneeighth","threeeighths","fiveeighths","seveneighths","uni215F","uni2184","uni2189","uni2C60","uni2C61","uni2C62","uni2C63","uni2C64","uni2C65","uni2C66","uni2C67","uni2C68","uni2C69","uni2C6A","uni2C6B","uni2C6C","uni2C6D","uni2C6E","uni2C6F","uni2C70","uni2C71","uni2C72","uni2C73","uni2C74","uni2C75","uni2C76","uni2C77","uni2C78","uni2C79","uni2C7A","uni2C7B","uni2C7C","uni2C7D","uni2C7E","uni2C7F","uni2DE0","uni2DE1","uni2DE2","uni2DE3","uni2DE4","uni2DE5","uni2DE6","uni2DE7","uni2DE8","uni2DE9","uni2DEA","uni2DEB","uni2DEC","uni2DED","uni2DEE","uni2DEF","uni2DF0","uni2DF1","uni2DF2","uni2DF3","uni2DF4","uni2DF5","uni2DF6","uni2DF7","uni2DF8","uni2DF9","uni2DFA","uni2DFB","uni2DFC","uni2DFD","uni2DFE","uni2DFF","uni2E00","uni2E01","uni2E02","uni2E03","uni2E04","uni2E05","uni2E06","uni2E07","uni2E08","uni2E09","uni2E0A","uni2E0B","uni2E0C","uni2E0D","uni2E0E","uni2E0F","uni2E10","uni2E11","uni2E12","uni2E13","uni2E14","uni2E15","uni2E16","uni2E17","uni2E18","uni2E19","uni2E1A","uni2E1B","uni2E1C","uni2E1D","uni2E1E","uni2E1F","uni2E20","uni2E21","uni2E22","uni2E23","uni2E24","uni2E25","uni2E26","uni2E27","uni2E28","uni2E29","uni2E2A","uni2E2B","uni2E2C","uni2E2D","uni2E2E","uni2E2F","uni2E30","uni2E31","uni2E32","uni2E33","uni2E34","uni2E35","uni2E36","uni2E37","uni2E38","uni2E39","uni2E3A","uni2E3B","uni2E3C","uni2E3D","uni2E3E","uni2E3F","uni2E40","uni2E41","uni2E42","uni2E43","uni2E44","uniA640","uniA641","uniA642","uniA643","uniA644","uniA645","uniA646","uniA647","uniA648","uniA649","uniA64A","uniA64B","uniA64C","uniA64D","uniA64E","uniA64F","uniA650","uniA651","uniA652","uniA653","uniA654","uniA655","uniA656","uniA657","uniA658","uniA659","uniA65A","uniA65B","uniA65C","uniA65D","uniA65E","uniA65F","uniA660","uniA661","uniA662","uniA663","uniA664","uniA665","uniA666","uniA667","uniA668","uniA669","uniA66A","uniA66B","uniA66C","uniA66D","uniA66E","uniA66F","uniA670","uniA671","uniA672","uniA673","uniA674","uniA675","uniA676","uniA677","uniA678","uniA679","uniA67A","uniA67B","uniA67C","uniA67D","uniA67E","uniA67F","uniA680","uniA681","uniA682","uniA683","uniA684","uniA685","uniA686","uniA687","uniA688","uniA689","uniA68A","uniA68B","uniA68C","uniA68D","uniA68E","uniA68F","uniA690","uniA691","uniA692","uniA693","uniA694","uniA695","uniA696","uniA697","uniA698","uniA699","uniA69A","uniA69B","uniA69C","uniA69D","uniA69E","uniA69F","uniA700","uniA701","uniA702","uniA703","uniA704","uniA705","uniA706","uniA707","uniA708","uniA709","uniA70A","uniA70B","uniA70C","uniA70D","uniA70E","uniA70F","uniA710","uniA711","uniA712","uniA713","uniA714","uniA715","uniA716","uniA717","uniA718","uniA719","uniA71A","uniA71B","uniA71C","uniA71D","uniA71E","uniA71F","uniA720","uniA721","uniA722","uniA723","uniA724","uniA725","uniA726","uniA727","uniA728","uniA729","uniA72A","uniA72B","uniA72C","uniA72D","uniA72E","uniA72F","uniA730","uniA731","uniA732","uniA733","uniA734","uniA735","uniA736","uniA737","uniA738","uniA739","uniA73A","uniA73B","uniA73C","uniA73D","uniA73E","uniA73F","uniA740","uniA741","uniA742","uniA743","uniA744","uniA745","uniA746","uniA747","uniA748","uniA749","uniA74A","uniA74B","uniA74C","uniA74D","uniA74E","uniA74F","uniA750","uniA751","uniA752","uniA753","uniA754","uniA755","uniA756","uniA757","uniA758","uniA759","uniA75A","uniA75B","uniA75C","uniA75D","uniA75E","uniA75F","uniA760","uniA761","uniA762","uniA763","uniA764","uniA765","uniA766","uniA767","uniA768","uniA769","uniA76A","uniA76B","uniA76C","uniA76D","uniA76E","uniA76F","uniA770","uniA771","uniA772","uniA773","uniA774","uniA775","uniA776","uniA777","uniA778","uniA779","uniA77A","uniA77B","uniA77C","uniA77D","uniA77E","uniA77F","uniA780","uniA781","uniA782","uniA783","uniA784","uniA785","uniA786","uniA787","uniA788","uniA789","uniA78A","uniA78B","uniA78C","uniA78D","uniA78E","uniA78F","uniA790","uniA791","uniA792","uniA793","uniA794","uniA795","uniA796","uniA797","uniA798","uniA799","uniA79A","uniA79B","uniA79C","uniA79D","uniA79E","uniA79F","uniA7A0","uniA7A1","uniA7A2","uniA7A3","uniA7A4","uniA7A5","uniA7A6","uniA7A7","uniA7A8","uniA7A9","uniA7AA","uniA7AB","uniA7AC","uniA7AD","uniA7AE","uniA7B0","uniA7B1","uniA7B2","uniA7B3","uniA7B4","uniA7B5","uniA7B6","uniA7B7","uniA7F7","uniA7F8","uniA7F9","uniA7FA","uniA7FB","uniA7FC","uniA7FD","uniA7FE","uniA7FF","uniA92E","uniAB30","uniAB31","uniAB32","uniAB33","uniAB34","uniAB35","uniAB36","uniAB37","uniAB38","uniAB39","uniAB3A","uniAB3B","uniAB3C","uniAB3D","uniAB3E","uniAB3F","uniAB40","uniAB41","uniAB42","uniAB43","uniAB44","uniAB45","uniAB46","uniAB47","uniAB48","uniAB49","uniAB4A","uniAB4B","uniAB4C","uniAB4D","uniAB4E","uniAB4F","uniAB50","uniAB51","uniAB52","uniAB53","uniAB54","uniAB55","uniAB56","uniAB57","uniAB58","uniAB59","uniAB5A","uniAB5B","uniAB5C","uniAB5D","uniAB5E","uniAB5F","uniAB60","uniAB61","uniAB62","uniAB63","uniAB64","uniAB65","uniFB00","uniFB01","uniFB02","uniFB03","uniFB04","uniFB05","uniFB06","uniFE00","uniFE20","uniFE21","uniFE22","uniFE23","uniFE24","uniFE25","uniFE26","uniFE27","uniFE28","uniFE29","uniFE2A","uniFE2B","uniFE2C","uniFE2D","uniFE2E","uniFE2F","uniFEFF","uniFFFC","uniFFFD","glyph2786","glyph2787","glyph2788","glyph2789","glyph2790","glyph2791","glyph2792","glyph2793","glyph2794","glyph2795","glyph2796","glyph2797","glyph2798","glyph2799","glyph2800","glyph2801","glyph2802","glyph2803","glyph2804","glyph2805","glyph2806","glyph2807","glyph2808","glyph2809","glyph2810","glyph2811","glyph2812","glyph2813","glyph2814","glyph2815","glyph2816","glyph2817","glyph2818","glyph2819","glyph2820","glyph2821","glyph2822","glyph2823","glyph2824","glyph2825","glyph2826","glyph2827","glyph2828","glyph2829","glyph2830","glyph2831","glyph2832","glyph2833"] +} \ No newline at end of file diff --git a/script/comp.bat b/script-windows/comp.bat similarity index 100% rename from script/comp.bat rename to script-windows/comp.bat diff --git a/script/fonts.url b/script-windows/fonts.url similarity index 100% rename from script/fonts.url rename to script-windows/fonts.url diff --git a/script/link.url b/script-windows/link.url similarity index 100% rename from script/link.url rename to script-windows/link.url diff --git a/script/merge+comp.bat b/script-windows/merge+comp.bat similarity index 100% rename from script/merge+comp.bat rename to script-windows/merge+comp.bat diff --git a/script/merge.bat b/script-windows/merge.bat similarity index 100% rename from script/merge.bat rename to script-windows/merge.bat diff --git a/script/pack-zh.bat b/script-windows/pack-zh.bat similarity index 100% rename from script/pack-zh.bat rename to script-windows/pack-zh.bat diff --git a/script/pack.bat b/script-windows/pack.bat similarity index 100% rename from script/pack.bat rename to script-windows/pack.bat diff --git a/src/merge-otd.cpp b/src/merge-otd.cpp index f038a54..8af8086 100644 --- a/src/merge-otd.cpp +++ b/src/merge-otd.cpp @@ -7,6 +7,7 @@ #include #include #include +#include #include #include @@ -124,6 +125,21 @@ void RemoveBlankGlyph(json &font) { } } +json MergeCodePage(std::vector cpranges) { + json result = json::object(); + + for (auto &cprange : cpranges) + for (auto &[k, v] : cprange.items()) { + // std::cerr << cprange << ' ' << k << std::endl; + if (result.find(k) != result.end()) + result[k] = result[k] || v; + else + result[k] = v; + } + + return result; +} + int main(int argc, char *u8argv[]) { static char u8buffer[4096]; nowide::args _{argc, u8argv}; @@ -134,6 +150,8 @@ int main(int argc, char *u8argv[]) { return EXIT_FAILURE; } + std::vector ulCodePageRanges1, ulCodePageRanges2; + json base; bool basecff; try { @@ -159,6 +177,24 @@ int main(int argc, char *u8argv[]) { } RemoveBlankGlyph(ext); MergeFont(base, ext); + if (ext.find("OS_2") != ext.end()) { + auto &OS_2 = ext["OS_2"]; + if (OS_2.find("ulCodePageRange1") != OS_2.end()) + ulCodePageRanges1.push_back(OS_2["ulCodePageRange1"]); + if (OS_2.find("ulCodePageRange2") != OS_2.end()) + ulCodePageRanges2.push_back(OS_2["ulCodePageRange2"]); + } + } + + if (base.find("OS_2") != base.end()) { + auto &OS_2 = base["OS_2"]; + if (OS_2.find("ulCodePageRange1") != OS_2.end()) + ulCodePageRanges1.push_back(OS_2["ulCodePageRange1"]); + if (OS_2.find("ulCodePageRange2") != OS_2.end()) + ulCodePageRanges2.push_back(OS_2["ulCodePageRange2"]); + + OS_2["ulCodePageRange1"] = MergeCodePage(ulCodePageRanges1); + OS_2["ulCodePageRange2"] = MergeCodePage(ulCodePageRanges2); } std::string out = base.dump();