From abc8bf49c9f47108600514f296edacd35e967474 Mon Sep 17 00:00:00 2001 From: Dmitry Iv Date: Thu, 7 Sep 2023 14:46:20 -0400 Subject: [PATCH 1/7] Fix range mapping --- _sources/Wavefont.designspace | 39 ++++++++++++++++------------ plopfile.js | 31 +++++++++++++++------- readme.md | 2 +- scripts/index.html | 49 +++++++++++++++++++++++++---------- 4 files changed, 80 insertions(+), 41 deletions(-) diff --git a/_sources/Wavefont.designspace b/_sources/Wavefont.designspace index 19031e96..1dc7d4f5 100644 --- a/_sources/Wavefont.designspace +++ b/_sources/Wavefont.designspace @@ -6,25 +6,30 @@ - - - + + + + - - - - - - - + + + + + + + + + {{#each clips as |code value| }} {{/each}} + {{#each masters as |master name| }} @@ -39,7 +44,7 @@ - + @@ -53,42 +58,42 @@ - + - + - + - + - + - + diff --git a/plopfile.js b/plopfile.js index d42941c3..351c8bc8 100644 --- a/plopfile.js +++ b/plopfile.js @@ -51,22 +51,33 @@ function alias(value, char) { // axes definition, per https://github.com/dy/wavefont/issues/42 const AXES = { + width: { name: 'Width', tag: 'wdth', min: 25, max: 200 }, + weight: { name: 'Weight', tag: 'wght', min: 8, max: 256 }, roundness: { name: 'Roundness', tag: 'ROND', min: 0, max: 100 }, - weight: { name: 'Weight', tag: 'wght', min: 5, max: 200 }, align: { name: 'Vertical Element Alignment', tag: 'YELA', min: 0, max: 1 } } // create masters const MASTERS = { - 'wmin,rmin,amin': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.min }, - 'wmin,rmax,amin': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.min }, - 'wmax,rmin,amin': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.min }, - 'wmax,rmax,amin': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.min }, - - 'wmin,rmin,amax': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.max }, - 'wmin,rmax,amax': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.max }, - 'wmax,rmin,amax': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.max }, - 'wmax,rmax,amax': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.max } + 'wmin,rmin,amin': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.min }, + 'wmin,rmax,amin': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.min }, + 'wmax,rmin,amin': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.min }, + 'wmax,rmax,amin': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.min }, + + 'wmin,rmin,amax': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.min }, + 'wmin,rmax,amax': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.min }, + 'wmax,rmin,amax': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.min }, + 'wmax,rmax,amax': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.min }, + + // 'wmin,rmin,amin,smax': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.max }, + // 'wmin,rmax,amin,smax': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.max }, + // 'wmax,rmin,amin,smax': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.max }, + // 'wmax,rmax,amin,smax': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.max }, + + // 'wmin,rmin,amax,smax': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.max }, + // 'wmin,rmax,amax,smax': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.max }, + // 'wmax,rmin,amax,smax': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.max }, + // 'wmax,rmax,amax,smax': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.max } } module.exports = function (plop) { diff --git a/readme.md b/readme.md index 2cc0ff11..5560307c 100644 --- a/readme.md +++ b/readme.md @@ -48,7 +48,7 @@ Wavefont bars correspond to values from 0 to 100, assigned to different characte Tag | Range | Default | Meaning ---|---|---|--- -`wght` | _1_-_1000_ | 400 | Bar width, or boldness. +`wght` | _1_-_1000_ | 1 | Bar width, or boldness (in upm). `ROND` | _0_-_100_ | 100 | Border radius, or roundness (percent). `YELA` | _-100_-_100_ | -100 | Alignment: bottom, center or top. diff --git a/scripts/index.html b/scripts/index.html index 572cca33..335f26a1 100644 --- a/scripts/index.html +++ b/scripts/index.html @@ -166,8 +166,8 @@

Wavefont 3.3

- + @@ -268,27 +268,50 @@

- ĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĸĺļľŀłńņňŊŌŎŐŒŔŖŘŚŜŞŠŢĀĂĆĊĎĒĖĚĞĢĦĪĮIJĶĺľłņŊŎŒŖŚŞŢĀĂĊĒĚĢĪIJĺłŊŒŚŢĀĂĒĢIJłŒŢĀĂĢłŢ
+ <<<<<<< HEAD + ĀĂĄĆĈĊČĎĐĒĔĖĘĚĜĞĠĢĤĦĨĪĬĮİIJĴĶĸĺļľŀłńņňŊŌŎŐŒŔŖŘŚŜŞŠŢĀĂĆĊĎĒĖĚĞĢĦĪĮIJĶĺľłņŊŎŒŖŚŞŢĀĂĊĒĚĢĪIJĺłŊŒŚŢĀĂĒĢIJłŒŢĀĂĢłŢ

+ ======= + + + >>>>>>> 12d8277a (Fix range mapping)
- IJĺłʼnŐŗŜşŢţţŢşśŖŏňŁĹİĨĠĘĒČćăāĀĀĂąĉĎĕĜĤĬĴļńŌŒŘŝŠţţţšŞřŔōņľĶĮĦĞĖĐĊĆĂĀĀĀĂĆĊĐėĞĦĮķĿŇŎŔŚŞšţţţŠŝŘŒŋńļĴīģěĔĎĉĄāĀĀāăć
+ <<<<<<< HEAD + IJĺłʼnŐŗŜşŢţţŢşśŖŏňŁĹİĨĠĘĒČćăāĀĀĂąĉĎĕĜĤĬĴļńŌŒŘŝŠţţţšŞřŔōņľĶĮĦĞĖĐĊĆĂĀĀĀĂĆĊĐėĞĦĮķĿŇŎŔŚŞšţţţŠŝŘŒŋńļĴīģěĔĎĉĄāĀĀāăć + ======= + + + >>>>>>> 12d8277a (Fix range mapping)
- ĀĆČĒĘĞĤĪİĶļłňŎŔŚŠŠŚŔŎňłļĶİĪĤĞĘĒČĆĀĆČĒĘĞĤĪİĶļłňŎŔŚŠŠŚŔŎňłļĶİĪĤĞĘĒČĆĀĆČĒĘĞĤĪİĶļłňŎŔŚŠŠŚŔŎňłļĶİĪĤĞĘĒČĆĀĆČĒĘĞĤĪİ
+ <<<<<<< HEAD + ĀĆČĒĘĞĤĪİĶļłňŎŔŚŠŠŚŔŎňłļĶİĪĤĞĘĒČĆĀĆČĒĘĞĤĪİĶļłňŎŔŚŠŠŚŔŎňłļĶİĪĤĞĘĒČĆĀĆČĒĘĞĤĪİĶļłňŎŔŚŠŠŚŔŎňłļĶİĪĤĞĘĒČĆĀĆČĒĘĞĤĪİ + ======= + + + >>>>>>> 12d8277a (Fix range mapping)
From 1beae5a0507855d8abeace6b1dbf9ea891e2f4a5 Mon Sep 17 00:00:00 2001 From: Dmitry Iv Date: Thu, 7 Sep 2023 15:11:52 -0400 Subject: [PATCH 2/7] Add wdth axis --- _sources/Wavefont.designspace | 13 +++++++++-- _sources/config.yaml | 7 ++++++ package.json | 14 ++++++------ plopfile.js | 41 +++++++++++++++++------------------ readme.md | 13 ++++++----- requirements.txt | 2 +- scripts/index.html | 23 +++++++++++++++++--- 7 files changed, 74 insertions(+), 39 deletions(-) diff --git a/_sources/Wavefont.designspace b/_sources/Wavefont.designspace index 1dc7d4f5..49df5663 100644 --- a/_sources/Wavefont.designspace +++ b/_sources/Wavefont.designspace @@ -6,8 +6,8 @@
- + + @@ -45,6 +45,7 @@ + @@ -52,6 +53,7 @@ + @@ -59,6 +61,7 @@ + @@ -66,6 +69,7 @@ + @@ -73,6 +77,7 @@ + @@ -80,6 +85,7 @@ + @@ -87,6 +93,7 @@ + @@ -94,6 +101,7 @@ + @@ -101,6 +109,7 @@ + diff --git a/_sources/config.yaml b/_sources/config.yaml index aa926e8f..177528d2 100644 --- a/_sources/config.yaml +++ b/_sources/config.yaml @@ -7,6 +7,7 @@ axisOrder: - ROND - YELA - wght + - wdth stat: - name: Roundness tag: ROND @@ -20,6 +21,12 @@ stat: - name: Default value: -100 flags: 2 + - name: Width + tag: wdth + values: + - name: Default + value: 200 + flags: 2 - name: Weight tag: wght values: diff --git a/package.json b/package.json index e2c76883..09d873a2 100644 --- a/package.json +++ b/package.json @@ -10,12 +10,12 @@ "hint-ufo": "psautohint --no-hint-sub --no-flex -d -c -a sources/*.ufo", "build-otf": "npm-run-all build-masterotfs build-vf add-blanks-otf", "build-masterotfs": "buildmasterotfs --mkot -r,-omitMacNames,-S,-ga,-adds -d \"sources/Wavefont.designspace\"", - "build-vf": "buildcff2vf --omit-mac-names -c -k -d \"sources/Wavefont.designspace\" -o ./fonts/variable/Wavefont[ROND,YELA,wght].otf", - "add-blanks-otf": "ttx -o ./fonts/variable/Wavefont[ROND,YELA,wght].otf -m ./fonts/variable/Wavefont[ROND,YELA,wght].otf sources/cmap.ttx", - "add-blanks-ttf": "ttx -o ./fonts/variable/Wavefont[ROND,YELA,wght].ttf -m ./fonts/variable/Wavefont[ROND,YELA,wght].ttf sources/cmap.ttx", - "build-ttf": "fontmake -m \"sources/Wavefont.designspace\" -o variable --output-path ./fonts/variable/Wavefont[ROND,YELA,wght].ttf --validate-ufo --round-instances --expand-features-to-instances --autohint && npm run add-blanks-ttf", - "build-woff2": "fonttools ttLib.woff2 compress ./fonts/variable/Wavefont[ROND,YELA,wght].ttf -o ./fonts/variable/Wavefont[ROND,YELA,wght].woff2", - "subroutinize-otf": "shx cp ./fonts/variable/Wavefont[ROND,YELA,wght].otf ./fonts/variable/Wavefont[ROND,YELA,wght].min.otf && tx -cff2 +S +b -o ./table.CFF2 -f ./fonts/variable/Wavefont[ROND,YELA,wght].otf && sfntedit -a CFF2=./table.CFF2 ./fonts/variable/Wavefont[ROND,YELA,wght].min.otf" + "build-vf": "buildcff2vf --omit-mac-names -c -k -d \"sources/Wavefont.designspace\" -o ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].otf", + "add-blanks-otf": "ttx -o ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].otf -m ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].otf sources/cmap.ttx", + "add-blanks-ttf": "ttx -o ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].ttf -m ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].ttf sources/cmap.ttx", + "build-ttf": "fontmake -m \"sources/Wavefont.designspace\" -o variable --output-path ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].ttf --validate-ufo --round-instances --expand-features-to-instances --autohint && npm run add-blanks-ttf", + "build-woff2": "fonttools ttLib.woff2 compress ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].ttf -o ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].woff2", + "subroutinize-otf": "shx cp ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].otf ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].min.otf && tx -cff2 +S +b -o ./table.CFF2 -f ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].otf && sfntedit -a CFF2=./table.CFF2 ./fonts/variable/Wavefont[ROND,YELA,wdth,wght].min.otf" }, "repository": { "type": "git", @@ -46,4 +46,4 @@ "plop": "^3.1.0", "shx": "^0.3.3" } -} +} \ No newline at end of file diff --git a/plopfile.js b/plopfile.js index 351c8bc8..1e1aa9d6 100644 --- a/plopfile.js +++ b/plopfile.js @@ -59,25 +59,25 @@ const AXES = { // create masters const MASTERS = { - 'wmin,rmin,amin': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.min }, - 'wmin,rmax,amin': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.min }, - 'wmax,rmin,amin': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.min }, - 'wmax,rmax,amin': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.min }, - - 'wmin,rmin,amax': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.min }, - 'wmin,rmax,amax': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.min }, - 'wmax,rmin,amax': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.min }, - 'wmax,rmax,amax': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.min }, - - // 'wmin,rmin,amin,smax': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.max }, - // 'wmin,rmax,amin,smax': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.max }, - // 'wmax,rmin,amin,smax': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.max }, - // 'wmax,rmax,amin,smax': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.max }, - - // 'wmin,rmin,amax,smax': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.max }, - // 'wmin,rmax,amax,smax': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.max }, - // 'wmax,rmin,amax,smax': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.max }, - // 'wmax,rmax,amax,smax': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.max } + 'wmin,rmin,amin,smin': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.min }, + 'wmin,rmax,amin,smin': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.min }, + 'wmax,rmin,amin,smin': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.min }, + 'wmax,rmax,amin,smin': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.min }, + + 'wmin,rmin,amax,smin': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.min }, + 'wmin,rmax,amax,smin': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.min }, + 'wmax,rmin,amax,smin': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.min }, + 'wmax,rmax,amax,smin': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.min }, + + 'wmin,rmin,amin,smax': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.max }, + 'wmin,rmax,amin,smax': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.max }, + 'wmax,rmin,amin,smax': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.min, width: AXES.width.max }, + 'wmax,rmax,amin,smax': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.min, width: AXES.width.max }, + + 'wmin,rmin,amax,smax': { weight: AXES.weight.min, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.max }, + 'wmin,rmax,amax,smax': { weight: AXES.weight.min, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.max }, + 'wmax,rmin,amax,smax': { weight: AXES.weight.max, roundness: AXES.roundness.min, align: AXES.align.max, width: AXES.width.max }, + 'wmax,rmax,amax,smax': { weight: AXES.weight.max, roundness: AXES.roundness.max, align: AXES.align.max, width: AXES.width.max } } module.exports = function (plop) { @@ -146,9 +146,8 @@ module.exports = function (plop) { }); // actions to build one master file - function master({ name, weight, roundness, align }) { + function master({ name, weight, width, roundness, align }) { const radius = roundness / 2 - const width = weight const destination = `sources/${font.name}-${name}.ufo` return [ diff --git a/readme.md b/readme.md index 5560307c..0dc89531 100644 --- a/readme.md +++ b/readme.md @@ -9,19 +9,20 @@ A typeface for rendering vertical bars data: waveforms, spectrums, diagrams, his ## Usage -Place [_Wavefont[ROND,YELA,wght].woff2_](./fonts/variable/Wavefont[ROND,YELA,wght].woff2) into your project directory and use this code: +Place [_Wavefont[ROND,YELA,wdth,wght].woff2_](./fonts/variable/Wavefont[ROND,YELA,wdth,wght].woff2) into your project directory and use this code: ```html @@ -48,7 +49,8 @@ Wavefont bars correspond to values from 0 to 100, assigned to different characte Tag | Range | Default | Meaning ---|---|---|--- -`wght` | _1_-_1000_ | 1 | Bar width, or boldness (in upm). +`wght` | _1_-_1000_ | 1 | Bar width, or boldness. +`wdth` | _25_–_200_ | 200 | Distance between bars (absolute). `ROND` | _0_-_100_ | 100 | Border radius, or roundness (percent). `YELA` | _-100_-_100_ | -100 | Alignment: bottom, center or top. @@ -62,13 +64,14 @@ To adjust axes via CSS: ## Features -* Ranges, values and width is compatible with [linefont](https://github.com/dy/linefont), so fonts can be switched in coherent way. +* Ranges, values, width and weight is compatible with [linefont](https://github.com/dy/linefont), so fonts can be switched in coherent way. * Visible charcodes fall under _marking characters_ unicode category, ie. recognized as word by regexp and can be selected with Ctrl + or double click. Eg. waveform segments separated by ` ` or `-` are selectable by double click. * Characters outside of visible ranges are clipped to _0_, eg. ` `, `\t` etc. * `-–._*` map to _1_ value, `|` maps to max value, `▁▂▃▄▅▆▇█` map to corresponding bars. * Accent acute  ́ (U+0301) shifts bar 1-step up, circumflex accent  ̂ (U+0302) 10-steps up. Eg. `\u0101\u0302\u0302\u0301\u0301\u0301` shifts 23 steps up. * Accent grave  ̀ (U+0300) shifts bar 1-step down, caron  ̌ (U+030C) shifts 10 steps down, eg. `\u0101\u030c\u0300\u0300\u0300` shifts 13 steps down. * Caret span is -20..120, so line-height = 1.4 is minimal non-overlapping selection. +* `wght` can be mapped 1:1 to `wdth` as 300:25, 500:50, 700:100, 900:200. ## JS package diff --git a/requirements.txt b/requirements.txt index a6538367..7fbe8f23 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -gftools>=0.9.33 +gftools==0.9.33 ufonormalizer>=0.6 fontbakery>=0.8.11 diffenator2>=0.2.7 diff --git a/scripts/index.html b/scripts/index.html index 335f26a1..fa3c9a71 100644 --- a/scripts/index.html +++ b/scripts/index.html @@ -8,7 +8,7 @@ font-style: normal; font-display: block; font-weight: 900; - src: url(../fonts/variable/Wavefont[ROND\,YELA\,wght].woff2); + src: url(../fonts/variable/Wavefont[ROND\,YELA\,wdth,wght].woff2); } @font-face { @@ -184,7 +184,18 @@

- Width + + + + + + + +
+
+
@@ -240,7 +251,7 @@

/* letter-spacing: var(--track); */ font-size: var(--size); letter-spacing: var(--spacing); - font-variation-settings: 'wght' var(--wght, 40), 'ROND' var(--rond, 0), 'YELA' var(--align, 0); + font-variation-settings: 'wght' var(--wght, 1), 'wdth' var(--wdth, 200), 'ROND' var(--rond, 0), 'YELA' var(--align, 0); background-size: 100vw calc(var(--size, 100px) / 10); background-image: linear-gradient(to bottom, rgb(230, 245, 255) 1px, transparent 1px); background-attachment: local; @@ -368,6 +379,12 @@

weightValue.textContent = (+value).toFixed(0); waveareas.style.setProperty('--wght', value) })(); + (width.oninput = e => { + let value = +width.value; + width.title = `'wdth' ${value}`; + widthValue.textContent = (+value).toFixed(0); + waveareas.style.setProperty('--wdth', value) + })(); (size.oninput = e => { let value = +size.value; size.title = value; From 025226100a912a7d886f030dd89fbbb6e42bca80 Mon Sep 17 00:00:00 2001 From: Dmitry Iv Date: Thu, 7 Sep 2023 15:19:07 -0400 Subject: [PATCH 3/7] Rebuild --- fonts/otf/Wavefont-Black.otf | Bin 17796 -> 18192 bytes fonts/otf/Wavefont-Bold.otf | Bin 17144 -> 17908 bytes fonts/otf/Wavefont-ExtraBold.otf | Bin 17304 -> 18112 bytes fonts/otf/Wavefont-ExtraLight.otf | Bin 16984 -> 17920 bytes fonts/otf/Wavefont-Light.otf | Bin 16948 -> 17892 bytes fonts/otf/Wavefont-Medium.otf | Bin 17048 -> 17904 bytes fonts/otf/Wavefont-Regular.otf | Bin 16968 -> 17872 bytes fonts/otf/Wavefont-SemiBold.otf | Bin 17108 -> 17980 bytes fonts/otf/Wavefont-Thin.otf | Bin 16888 -> 17832 bytes fonts/ttf/Wavefont-Black.ttf | Bin 31636 -> 32348 bytes fonts/ttf/Wavefont-Bold.ttf | Bin 31168 -> 31876 bytes fonts/ttf/Wavefont-ExtraBold.ttf | Bin 31468 -> 31972 bytes fonts/ttf/Wavefont-ExtraLight.ttf | Bin 29188 -> 27248 bytes fonts/ttf/Wavefont-Light.ttf | Bin 29772 -> 30016 bytes fonts/ttf/Wavefont-Medium.ttf | Bin 31260 -> 31644 bytes fonts/ttf/Wavefont-Regular.ttf | Bin 31856 -> 30024 bytes fonts/ttf/Wavefont-SemiBold.ttf | Bin 31180 -> 31832 bytes fonts/ttf/Wavefont-Thin.ttf | Bin 27516 -> 27180 bytes .../Wavefont[ROND,YELA,wdth,wght].ttf | Bin 0 -> 76884 bytes .../Wavefont[ROND,YELA,wdth,wght].woff2 | Bin 0 -> 7140 bytes fonts/variable/Wavefont[ROND,YELA,wght].ttf | Bin 67556 -> 0 bytes fonts/variable/Wavefont[ROND,YELA,wght].woff2 | Bin 6680 -> 0 bytes fonts/webfonts/Wavefont-Black.woff2 | Bin 6760 -> 6824 bytes fonts/webfonts/Wavefont-Bold.woff2 | Bin 6464 -> 6668 bytes fonts/webfonts/Wavefont-ExtraBold.woff2 | Bin 6724 -> 6580 bytes fonts/webfonts/Wavefont-ExtraLight.woff2 | Bin 6160 -> 6200 bytes fonts/webfonts/Wavefont-Light.woff2 | Bin 6304 -> 6348 bytes fonts/webfonts/Wavefont-Medium.woff2 | Bin 6576 -> 6576 bytes fonts/webfonts/Wavefont-Regular.woff2 | Bin 6316 -> 6356 bytes fonts/webfonts/Wavefont-SemiBold.woff2 | Bin 6548 -> 6572 bytes fonts/webfonts/Wavefont-Thin.woff2 | Bin 5992 -> 6096 bytes .../Wavefont[ROND,YELA,wdth,wght].woff2 | Bin 0 -> 7056 bytes fonts/webfonts/Wavefont[ROND,YELA,wght].woff2 | Bin 6528 -> 0 bytes out/badges/Universal.json | 2 +- out/badges/overall.json | 2 +- out/fontbakery/fontbakery-report.html | 349 +++++++++++++--- out/fontbakery/fontbakery-report.md | 395 ++++++++++++++---- .../Wavefont-Bold.ttf | Bin 31168 -> 31876 bytes .../Wavefont-ExtraLight.ttf | Bin 29188 -> 27248 bytes .../Wavefont-Regular.ttf | Bin 31856 -> 30024 bytes .../Wavefont-Thin.ttf | Bin 27516 -> 27180 bytes .../diffbrowsers_glyphs.html | 102 ++++- .../diffbrowsers_proofer.html | 102 ++++- .../diffbrowsers_text.html | 110 ++++- .../diffbrowsers_waterfall.html | 182 +++++--- .../Wavefont-Black.ttf | Bin 31636 -> 32348 bytes .../Wavefont-ExtraBold.ttf | Bin 31468 -> 31972 bytes .../Wavefont-Light.ttf | Bin 29772 -> 30016 bytes .../Wavefont-Medium.ttf | Bin 31260 -> 31644 bytes .../diffbrowsers_glyphs.html | 98 ++++- .../diffbrowsers_proofer.html | 98 ++++- .../diffbrowsers_text.html | 106 ++++- .../diffbrowsers_waterfall.html | 178 ++++++-- out/proof/SemiBold/Wavefont-SemiBold.ttf | Bin 31180 -> 31832 bytes out/proof/SemiBold/diffbrowsers_glyphs.html | 86 ++++ out/proof/SemiBold/diffbrowsers_proofer.html | 86 ++++ out/proof/SemiBold/diffbrowsers_text.html | 88 +++- .../SemiBold/diffbrowsers_waterfall.html | 106 ++++- readme.md | 2 +- sources/GlyphOrderAndAliasDB | 6 + .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 0 .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 0 .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 0 .../glyphs/down10.glif | 0 .../glyphs/up.glif | 0 .../glyphs/up10.glif | 0 .../layercontents.plist | 0 .../lib.plist | 0 .../metainfo.plist | 0 .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 0 .../glyphs/down10.glif | 0 .../glyphs/up.glif | 0 .../glyphs/up10.glif | 0 .../layercontents.plist | 0 .../lib.plist | 0 .../metainfo.plist | 0 .../Wavefont-wmax,rmax,amax.ufo/features.fea | 256 ------------ .../fontinfo.plist | 84 ---- .../glyphs/_0.clip.glif | 24 -- .../glyphs/_1.clip.glif | 24 -- .../glyphs/_1.glif | 27 -- .../glyphs/_10.clip.glif | 24 -- .../glyphs/_10.glif | 17 - .../glyphs/_100.glif | 18 - .../glyphs/_101.glif | 15 - .../glyphs/_102.glif | 15 - .../glyphs/_103.glif | 15 - .../glyphs/_104.glif | 15 - .../glyphs/_105.glif | 15 - .../glyphs/_106.glif | 15 - .../glyphs/_107.glif | 15 - .../glyphs/_108.glif | 15 - .../glyphs/_109.glif | 15 - .../glyphs/_11.clip.glif | 24 -- .../glyphs/_11.glif | 15 - .../glyphs/_110.glif | 15 - .../glyphs/_111.glif | 15 - .../glyphs/_112.glif | 15 - .../glyphs/_113.glif | 15 - .../glyphs/_114.glif | 15 - .../glyphs/_115.glif | 15 - .../glyphs/_116.glif | 15 - .../glyphs/_117.glif | 15 - .../glyphs/_118.glif | 15 - .../glyphs/_119.glif | 15 - .../glyphs/_12.clip.glif | 24 -- .../glyphs/_12.glif | 16 - .../glyphs/_120.glif | 15 - .../glyphs/_121.glif | 15 - .../glyphs/_122.glif | 15 - .../glyphs/_123.glif | 15 - .../glyphs/_124.glif | 15 - .../glyphs/_125.glif | 15 - .../glyphs/_126.glif | 15 - .../glyphs/_127.glif | 15 - .../glyphs/_13.clip.glif | 24 -- .../glyphs/_13.glif | 15 - .../glyphs/_14.clip.glif | 24 -- .../glyphs/_14.glif | 17 - .../glyphs/_15.clip.glif | 24 -- .../glyphs/_15.glif | 15 - .../glyphs/_16.clip.glif | 24 -- .../glyphs/_16.glif | 16 - .../glyphs/_17.clip.glif | 24 -- .../glyphs/_17.glif | 15 - .../glyphs/_18.clip.glif | 24 -- .../glyphs/_18.glif | 16 - .../glyphs/_19.clip.glif | 24 -- .../glyphs/_19.glif | 15 - .../glyphs/_2.clip.glif | 24 -- .../glyphs/_2.glif | 16 - .../glyphs/_20.clip.glif | 24 -- .../glyphs/_20.glif | 17 - .../glyphs/_21.clip.glif | 24 -- .../glyphs/_21.glif | 15 - .../glyphs/_22.clip.glif | 24 -- .../glyphs/_22.glif | 16 - .../glyphs/_23.clip.glif | 24 -- .../glyphs/_23.glif | 15 - .../glyphs/_24.clip.glif | 24 -- .../glyphs/_24.glif | 16 - .../glyphs/_25.clip.glif | 24 -- .../glyphs/_25.glif | 15 - .../glyphs/_26.clip.glif | 24 -- .../glyphs/_26.glif | 16 - .../glyphs/_27.clip.glif | 24 -- .../glyphs/_27.glif | 15 - .../glyphs/_28.clip.glif | 24 -- .../glyphs/_28.glif | 17 - .../glyphs/_29.clip.glif | 24 -- .../glyphs/_29.glif | 15 - .../glyphs/_3.clip.glif | 24 -- .../glyphs/_3.glif | 15 - .../glyphs/_30.clip.glif | 24 -- .../glyphs/_30.glif | 17 - .../glyphs/_31.clip.glif | 24 -- .../glyphs/_31.glif | 15 - .../glyphs/_32.clip.glif | 24 -- .../glyphs/_32.glif | 16 - .../glyphs/_33.clip.glif | 24 -- .../glyphs/_33.glif | 15 - .../glyphs/_34.clip.glif | 24 -- .../glyphs/_34.glif | 16 - .../glyphs/_35.clip.glif | 24 -- .../glyphs/_35.glif | 15 - .../glyphs/_36.clip.glif | 24 -- .../glyphs/_36.glif | 16 - .../glyphs/_37.clip.glif | 24 -- .../glyphs/_37.glif | 15 - .../glyphs/_38.clip.glif | 24 -- .../glyphs/_38.glif | 16 - .../glyphs/_39.clip.glif | 24 -- .../glyphs/_39.glif | 15 - .../glyphs/_4.clip.glif | 24 -- .../glyphs/_4.glif | 16 - .../glyphs/_40.clip.glif | 24 -- .../glyphs/_40.glif | 17 - .../glyphs/_41.glif | 15 - .../glyphs/_42.glif | 17 - .../glyphs/_43.glif | 15 - .../glyphs/_44.glif | 16 - .../glyphs/_45.glif | 15 - .../glyphs/_46.glif | 16 - .../glyphs/_47.glif | 15 - .../glyphs/_48.glif | 16 - .../glyphs/_49.glif | 15 - .../glyphs/_5.clip.glif | 24 -- .../glyphs/_5.glif | 15 - .../glyphs/_50.glif | 17 - .../glyphs/_51.glif | 15 - .../glyphs/_52.glif | 16 - .../glyphs/_53.glif | 15 - .../glyphs/_54.glif | 16 - .../glyphs/_55.glif | 15 - .../glyphs/_56.glif | 17 - .../glyphs/_57.glif | 15 - .../glyphs/_58.glif | 16 - .../glyphs/_59.glif | 15 - .../glyphs/_6.clip.glif | 24 -- .../glyphs/_6.glif | 16 - .../glyphs/_60.glif | 17 - .../glyphs/_61.glif | 15 - .../glyphs/_62.glif | 16 - .../glyphs/_63.glif | 15 - .../glyphs/_64.glif | 16 - .../glyphs/_65.glif | 15 - .../glyphs/_66.glif | 16 - .../glyphs/_67.glif | 15 - .../glyphs/_68.glif | 16 - .../glyphs/_69.glif | 15 - .../glyphs/_7.clip.glif | 24 -- .../glyphs/_7.glif | 15 - .../glyphs/_70.glif | 17 - .../glyphs/_71.glif | 15 - .../glyphs/_72.glif | 17 - .../glyphs/_73.glif | 15 - .../glyphs/_74.glif | 16 - .../glyphs/_75.glif | 15 - .../glyphs/_76.glif | 16 - .../glyphs/_77.glif | 15 - .../glyphs/_78.glif | 16 - .../glyphs/_79.glif | 15 - .../glyphs/_8.clip.glif | 24 -- .../glyphs/_8.glif | 16 - .../glyphs/_80.glif | 17 - .../glyphs/_81.glif | 15 - .../glyphs/_82.glif | 16 - .../glyphs/_83.glif | 15 - .../glyphs/_84.glif | 16 - .../glyphs/_85.glif | 15 - .../glyphs/_86.glif | 17 - .../glyphs/_87.glif | 15 - .../glyphs/_88.glif | 16 - .../glyphs/_89.glif | 15 - .../glyphs/_9.clip.glif | 24 -- .../glyphs/_9.glif | 15 - .../glyphs/_90.glif | 17 - .../glyphs/_91.glif | 15 - .../glyphs/_92.glif | 16 - .../glyphs/_93.glif | 15 - .../glyphs/_94.glif | 16 - .../glyphs/_95.glif | 15 - .../glyphs/_96.glif | 16 - .../glyphs/_97.glif | 15 - .../glyphs/_98.glif | 16 - .../glyphs/_99.glif | 16 - .../glyphs/cap.glif | 23 - .../glyphs/contents.plist | 314 -------------- .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 0 .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 0 .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 0 .../glyphs/down10.glif | 0 .../glyphs/up.glif | 0 .../glyphs/up10.glif | 0 .../layercontents.plist | 0 .../lib.plist | 0 .../metainfo.plist | 0 .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 0 .../glyphs/down10.glif | 0 .../glyphs/up.glif | 0 .../glyphs/up10.glif | 0 .../layercontents.plist | 0 .../lib.plist | 0 .../metainfo.plist | 0 .../Wavefont-wmax,rmax,amin.ufo/features.fea | 256 ------------ .../fontinfo.plist | 84 ---- .../glyphs/_0.clip.glif | 24 -- .../glyphs/_1.clip.glif | 24 -- .../glyphs/_1.glif | 27 -- .../glyphs/_10.clip.glif | 24 -- .../glyphs/_10.glif | 17 - .../glyphs/_100.glif | 18 - .../glyphs/_101.glif | 15 - .../glyphs/_102.glif | 15 - .../glyphs/_103.glif | 15 - .../glyphs/_104.glif | 15 - .../glyphs/_105.glif | 15 - .../glyphs/_106.glif | 15 - .../glyphs/_107.glif | 15 - .../glyphs/_108.glif | 15 - .../glyphs/_109.glif | 15 - .../glyphs/_11.clip.glif | 24 -- .../glyphs/_11.glif | 15 - .../glyphs/_110.glif | 15 - .../glyphs/_111.glif | 15 - .../glyphs/_112.glif | 15 - .../glyphs/_113.glif | 15 - .../glyphs/_114.glif | 15 - .../glyphs/_115.glif | 15 - .../glyphs/_116.glif | 15 - .../glyphs/_117.glif | 15 - .../glyphs/_118.glif | 15 - .../glyphs/_119.glif | 15 - .../glyphs/_12.clip.glif | 24 -- .../glyphs/_12.glif | 16 - .../glyphs/_120.glif | 15 - .../glyphs/_121.glif | 15 - .../glyphs/_122.glif | 15 - .../glyphs/_123.glif | 15 - .../glyphs/_124.glif | 15 - .../glyphs/_125.glif | 15 - .../glyphs/_126.glif | 15 - .../glyphs/_127.glif | 15 - .../glyphs/_13.clip.glif | 24 -- .../glyphs/_13.glif | 15 - .../glyphs/_14.clip.glif | 24 -- .../glyphs/_14.glif | 17 - .../glyphs/_15.clip.glif | 24 -- .../glyphs/_15.glif | 15 - .../glyphs/_16.clip.glif | 24 -- .../glyphs/_16.glif | 16 - .../glyphs/_17.clip.glif | 24 -- .../glyphs/_17.glif | 15 - .../glyphs/_18.clip.glif | 24 -- .../glyphs/_18.glif | 16 - .../glyphs/_19.clip.glif | 24 -- .../glyphs/_19.glif | 15 - .../glyphs/_2.clip.glif | 24 -- .../glyphs/_2.glif | 16 - .../glyphs/_20.clip.glif | 24 -- .../glyphs/_20.glif | 17 - .../glyphs/_21.clip.glif | 24 -- .../glyphs/_21.glif | 15 - .../glyphs/_22.clip.glif | 24 -- .../glyphs/_22.glif | 16 - .../glyphs/_23.clip.glif | 24 -- .../glyphs/_23.glif | 15 - .../glyphs/_24.clip.glif | 24 -- .../glyphs/_24.glif | 16 - .../glyphs/_25.clip.glif | 24 -- .../glyphs/_25.glif | 15 - .../glyphs/_26.clip.glif | 24 -- .../glyphs/_26.glif | 16 - .../glyphs/_27.clip.glif | 24 -- .../glyphs/_27.glif | 15 - .../glyphs/_28.clip.glif | 24 -- .../glyphs/_28.glif | 17 - .../glyphs/_29.clip.glif | 24 -- .../glyphs/_29.glif | 15 - .../glyphs/_3.clip.glif | 24 -- .../glyphs/_3.glif | 15 - .../glyphs/_30.clip.glif | 24 -- .../glyphs/_30.glif | 17 - .../glyphs/_31.clip.glif | 24 -- .../glyphs/_31.glif | 15 - .../glyphs/_32.clip.glif | 24 -- .../glyphs/_32.glif | 16 - .../glyphs/_33.clip.glif | 24 -- .../glyphs/_33.glif | 15 - .../glyphs/_34.clip.glif | 24 -- .../glyphs/_34.glif | 16 - .../glyphs/_35.clip.glif | 24 -- .../glyphs/_35.glif | 15 - .../glyphs/_36.clip.glif | 24 -- .../glyphs/_36.glif | 16 - .../glyphs/_37.clip.glif | 24 -- .../glyphs/_37.glif | 15 - .../glyphs/_38.clip.glif | 24 -- .../glyphs/_38.glif | 16 - .../glyphs/_39.clip.glif | 24 -- .../glyphs/_39.glif | 15 - .../glyphs/_4.clip.glif | 24 -- .../glyphs/_4.glif | 16 - .../glyphs/_40.clip.glif | 24 -- .../glyphs/_40.glif | 17 - .../glyphs/_41.glif | 15 - .../glyphs/_42.glif | 17 - .../glyphs/_43.glif | 15 - .../glyphs/_44.glif | 16 - .../glyphs/_45.glif | 15 - .../glyphs/_46.glif | 16 - .../glyphs/_47.glif | 15 - .../glyphs/_48.glif | 16 - .../glyphs/_49.glif | 15 - .../glyphs/_5.clip.glif | 24 -- .../glyphs/_5.glif | 15 - .../glyphs/_50.glif | 17 - .../glyphs/_51.glif | 15 - .../glyphs/_52.glif | 16 - .../glyphs/_53.glif | 15 - .../glyphs/_54.glif | 16 - .../glyphs/_55.glif | 15 - .../glyphs/_56.glif | 17 - .../glyphs/_57.glif | 15 - .../glyphs/_58.glif | 16 - .../glyphs/_59.glif | 15 - .../glyphs/_6.clip.glif | 24 -- .../glyphs/_6.glif | 16 - .../glyphs/_60.glif | 17 - .../glyphs/_61.glif | 15 - .../glyphs/_62.glif | 16 - .../glyphs/_63.glif | 15 - .../glyphs/_64.glif | 16 - .../glyphs/_65.glif | 15 - .../glyphs/_66.glif | 16 - .../glyphs/_67.glif | 15 - .../glyphs/_68.glif | 16 - .../glyphs/_69.glif | 15 - .../glyphs/_7.clip.glif | 24 -- .../glyphs/_7.glif | 15 - .../glyphs/_70.glif | 17 - .../glyphs/_71.glif | 15 - .../glyphs/_72.glif | 17 - .../glyphs/_73.glif | 15 - .../glyphs/_74.glif | 16 - .../glyphs/_75.glif | 15 - .../glyphs/_76.glif | 16 - .../glyphs/_77.glif | 15 - .../glyphs/_78.glif | 16 - .../glyphs/_79.glif | 15 - .../glyphs/_8.clip.glif | 24 -- .../glyphs/_8.glif | 16 - .../glyphs/_80.glif | 17 - .../glyphs/_81.glif | 15 - .../glyphs/_82.glif | 16 - .../glyphs/_83.glif | 15 - .../glyphs/_84.glif | 16 - .../glyphs/_85.glif | 15 - .../glyphs/_86.glif | 17 - .../glyphs/_87.glif | 15 - .../glyphs/_88.glif | 16 - .../glyphs/_89.glif | 15 - .../glyphs/_9.clip.glif | 24 -- .../glyphs/_9.glif | 15 - .../glyphs/_90.glif | 17 - .../glyphs/_91.glif | 15 - .../glyphs/_92.glif | 16 - .../glyphs/_93.glif | 15 - .../glyphs/_94.glif | 16 - .../glyphs/_95.glif | 15 - .../glyphs/_96.glif | 16 - .../glyphs/_97.glif | 15 - .../glyphs/_98.glif | 16 - .../glyphs/_99.glif | 16 - .../glyphs/cap.glif | 23 - .../glyphs/contents.plist | 314 -------------- .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 0 .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 0 .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 0 .../glyphs/down10.glif | 0 .../glyphs/up.glif | 0 .../glyphs/up10.glif | 0 .../layercontents.plist | 0 .../lib.plist | 0 .../metainfo.plist | 0 .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 0 .../glyphs/down10.glif | 0 .../glyphs/up.glif | 0 .../glyphs/up10.glif | 0 .../layercontents.plist | 0 .../lib.plist | 0 .../metainfo.plist | 0 .../Wavefont-wmax,rmin,amax.ufo/features.fea | 256 ------------ .../fontinfo.plist | 84 ---- .../glyphs/_0.clip.glif | 24 -- .../glyphs/_1.clip.glif | 24 -- .../glyphs/_1.glif | 27 -- .../glyphs/_10.clip.glif | 24 -- .../glyphs/_10.glif | 17 - .../glyphs/_100.glif | 18 - .../glyphs/_101.glif | 15 - .../glyphs/_102.glif | 15 - .../glyphs/_103.glif | 15 - .../glyphs/_104.glif | 15 - .../glyphs/_105.glif | 15 - .../glyphs/_106.glif | 15 - .../glyphs/_107.glif | 15 - .../glyphs/_108.glif | 15 - .../glyphs/_109.glif | 15 - .../glyphs/_11.clip.glif | 24 -- .../glyphs/_11.glif | 15 - .../glyphs/_110.glif | 15 - .../glyphs/_111.glif | 15 - .../glyphs/_112.glif | 15 - .../glyphs/_113.glif | 15 - .../glyphs/_114.glif | 15 - .../glyphs/_115.glif | 15 - .../glyphs/_116.glif | 15 - .../glyphs/_117.glif | 15 - .../glyphs/_118.glif | 15 - .../glyphs/_119.glif | 15 - .../glyphs/_12.clip.glif | 24 -- .../glyphs/_12.glif | 16 - .../glyphs/_120.glif | 15 - .../glyphs/_121.glif | 15 - .../glyphs/_122.glif | 15 - .../glyphs/_123.glif | 15 - .../glyphs/_124.glif | 15 - .../glyphs/_125.glif | 15 - .../glyphs/_126.glif | 15 - .../glyphs/_127.glif | 15 - .../glyphs/_13.clip.glif | 24 -- .../glyphs/_13.glif | 15 - .../glyphs/_14.clip.glif | 24 -- .../glyphs/_14.glif | 17 - .../glyphs/_15.clip.glif | 24 -- .../glyphs/_15.glif | 15 - .../glyphs/_16.clip.glif | 24 -- .../glyphs/_16.glif | 16 - .../glyphs/_17.clip.glif | 24 -- .../glyphs/_17.glif | 15 - .../glyphs/_18.clip.glif | 24 -- .../glyphs/_18.glif | 16 - .../glyphs/_19.clip.glif | 24 -- .../glyphs/_19.glif | 15 - .../glyphs/_2.clip.glif | 24 -- .../glyphs/_2.glif | 16 - .../glyphs/_20.clip.glif | 24 -- .../glyphs/_20.glif | 17 - .../glyphs/_21.clip.glif | 24 -- .../glyphs/_21.glif | 15 - .../glyphs/_22.clip.glif | 24 -- .../glyphs/_22.glif | 16 - .../glyphs/_23.clip.glif | 24 -- .../glyphs/_23.glif | 15 - .../glyphs/_24.clip.glif | 24 -- .../glyphs/_24.glif | 16 - .../glyphs/_25.clip.glif | 24 -- .../glyphs/_25.glif | 15 - .../glyphs/_26.clip.glif | 24 -- .../glyphs/_26.glif | 16 - .../glyphs/_27.clip.glif | 24 -- .../glyphs/_27.glif | 15 - .../glyphs/_28.clip.glif | 24 -- .../glyphs/_28.glif | 17 - .../glyphs/_29.clip.glif | 24 -- .../glyphs/_29.glif | 15 - .../glyphs/_3.clip.glif | 24 -- .../glyphs/_3.glif | 15 - .../glyphs/_30.clip.glif | 24 -- .../glyphs/_30.glif | 17 - .../glyphs/_31.clip.glif | 24 -- .../glyphs/_31.glif | 15 - .../glyphs/_32.clip.glif | 24 -- .../glyphs/_32.glif | 16 - .../glyphs/_33.clip.glif | 24 -- .../glyphs/_33.glif | 15 - .../glyphs/_34.clip.glif | 24 -- .../glyphs/_34.glif | 16 - .../glyphs/_35.clip.glif | 24 -- .../glyphs/_35.glif | 15 - .../glyphs/_36.clip.glif | 24 -- .../glyphs/_36.glif | 16 - .../glyphs/_37.clip.glif | 24 -- .../glyphs/_37.glif | 15 - .../glyphs/_38.clip.glif | 24 -- .../glyphs/_38.glif | 16 - .../glyphs/_39.clip.glif | 24 -- .../glyphs/_39.glif | 15 - .../glyphs/_4.clip.glif | 24 -- .../glyphs/_4.glif | 16 - .../glyphs/_40.clip.glif | 24 -- .../glyphs/_40.glif | 17 - .../glyphs/_41.glif | 15 - .../glyphs/_42.glif | 17 - .../glyphs/_43.glif | 15 - .../glyphs/_44.glif | 16 - .../glyphs/_45.glif | 15 - .../glyphs/_46.glif | 16 - .../glyphs/_47.glif | 15 - .../glyphs/_48.glif | 16 - .../glyphs/_49.glif | 15 - .../glyphs/_5.clip.glif | 24 -- .../glyphs/_5.glif | 15 - .../glyphs/_50.glif | 17 - .../glyphs/_51.glif | 15 - .../glyphs/_52.glif | 16 - .../glyphs/_53.glif | 15 - .../glyphs/_54.glif | 16 - .../glyphs/_55.glif | 15 - .../glyphs/_56.glif | 17 - .../glyphs/_57.glif | 15 - .../glyphs/_58.glif | 16 - .../glyphs/_59.glif | 15 - .../glyphs/_6.clip.glif | 24 -- .../glyphs/_6.glif | 16 - .../glyphs/_60.glif | 17 - .../glyphs/_61.glif | 15 - .../glyphs/_62.glif | 16 - .../glyphs/_63.glif | 15 - .../glyphs/_64.glif | 16 - .../glyphs/_65.glif | 15 - .../glyphs/_66.glif | 16 - .../glyphs/_67.glif | 15 - .../glyphs/_68.glif | 16 - .../glyphs/_69.glif | 15 - .../glyphs/_7.clip.glif | 24 -- .../glyphs/_7.glif | 15 - .../glyphs/_70.glif | 17 - .../glyphs/_71.glif | 15 - .../glyphs/_72.glif | 17 - .../glyphs/_73.glif | 15 - .../glyphs/_74.glif | 16 - .../glyphs/_75.glif | 15 - .../glyphs/_76.glif | 16 - .../glyphs/_77.glif | 15 - .../glyphs/_78.glif | 16 - .../glyphs/_79.glif | 15 - .../glyphs/_8.clip.glif | 24 -- .../glyphs/_8.glif | 16 - .../glyphs/_80.glif | 17 - .../glyphs/_81.glif | 15 - .../glyphs/_82.glif | 16 - .../glyphs/_83.glif | 15 - .../glyphs/_84.glif | 16 - .../glyphs/_85.glif | 15 - .../glyphs/_86.glif | 17 - .../glyphs/_87.glif | 15 - .../glyphs/_88.glif | 16 - .../glyphs/_89.glif | 15 - .../glyphs/_9.clip.glif | 24 -- .../glyphs/_9.glif | 15 - .../glyphs/_90.glif | 17 - .../glyphs/_91.glif | 15 - .../glyphs/_92.glif | 16 - .../glyphs/_93.glif | 15 - .../glyphs/_94.glif | 16 - .../glyphs/_95.glif | 15 - .../glyphs/_96.glif | 16 - .../glyphs/_97.glif | 15 - .../glyphs/_98.glif | 16 - .../glyphs/_99.glif | 16 - .../glyphs/cap.glif | 23 - .../glyphs/contents.plist | 314 -------------- .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 0 .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 0 .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 0 .../glyphs/down10.glif | 0 .../glyphs/up.glif | 0 .../glyphs/up10.glif | 0 .../layercontents.plist | 0 .../lib.plist | 0 .../metainfo.plist | 0 .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 0 .../glyphs/down10.glif | 0 .../glyphs/up.glif | 0 .../glyphs/up10.glif | 0 .../layercontents.plist | 0 .../lib.plist | 0 .../metainfo.plist | 0 .../Wavefont-wmax,rmin,amin.ufo/features.fea | 256 ------------ .../fontinfo.plist | 84 ---- .../glyphs/_0.clip.glif | 24 -- .../glyphs/_1.clip.glif | 24 -- .../glyphs/_1.glif | 27 -- .../glyphs/_10.clip.glif | 24 -- .../glyphs/_10.glif | 17 - .../glyphs/_100.glif | 18 - .../glyphs/_101.glif | 15 - .../glyphs/_102.glif | 15 - .../glyphs/_103.glif | 15 - .../glyphs/_104.glif | 15 - .../glyphs/_105.glif | 15 - .../glyphs/_106.glif | 15 - .../glyphs/_107.glif | 15 - .../glyphs/_108.glif | 15 - .../glyphs/_109.glif | 15 - .../glyphs/_11.clip.glif | 24 -- .../glyphs/_11.glif | 15 - .../glyphs/_110.glif | 15 - .../glyphs/_111.glif | 15 - .../glyphs/_112.glif | 15 - .../glyphs/_113.glif | 15 - .../glyphs/_114.glif | 15 - .../glyphs/_115.glif | 15 - .../glyphs/_116.glif | 15 - .../glyphs/_117.glif | 15 - .../glyphs/_118.glif | 15 - .../glyphs/_119.glif | 15 - .../glyphs/_12.clip.glif | 24 -- .../glyphs/_12.glif | 16 - .../glyphs/_120.glif | 15 - .../glyphs/_121.glif | 15 - .../glyphs/_122.glif | 15 - .../glyphs/_123.glif | 15 - .../glyphs/_124.glif | 15 - .../glyphs/_125.glif | 15 - .../glyphs/_126.glif | 15 - .../glyphs/_127.glif | 15 - .../glyphs/_13.clip.glif | 24 -- .../glyphs/_13.glif | 15 - .../glyphs/_14.clip.glif | 24 -- .../glyphs/_14.glif | 17 - .../glyphs/_15.clip.glif | 24 -- .../glyphs/_15.glif | 15 - .../glyphs/_16.clip.glif | 24 -- .../glyphs/_16.glif | 16 - .../glyphs/_17.clip.glif | 24 -- .../glyphs/_17.glif | 15 - .../glyphs/_18.clip.glif | 24 -- .../glyphs/_18.glif | 16 - .../glyphs/_19.clip.glif | 24 -- .../glyphs/_19.glif | 15 - .../glyphs/_2.clip.glif | 24 -- .../glyphs/_2.glif | 16 - .../glyphs/_20.clip.glif | 24 -- .../glyphs/_20.glif | 17 - .../glyphs/_21.clip.glif | 24 -- .../glyphs/_21.glif | 15 - .../glyphs/_22.clip.glif | 24 -- .../glyphs/_22.glif | 16 - .../glyphs/_23.clip.glif | 24 -- .../glyphs/_23.glif | 15 - .../glyphs/_24.clip.glif | 24 -- .../glyphs/_24.glif | 16 - .../glyphs/_25.clip.glif | 24 -- .../glyphs/_25.glif | 15 - .../glyphs/_26.clip.glif | 24 -- .../glyphs/_26.glif | 16 - .../glyphs/_27.clip.glif | 24 -- .../glyphs/_27.glif | 15 - .../glyphs/_28.clip.glif | 24 -- .../glyphs/_28.glif | 17 - .../glyphs/_29.clip.glif | 24 -- .../glyphs/_29.glif | 15 - .../glyphs/_3.clip.glif | 24 -- .../glyphs/_3.glif | 15 - .../glyphs/_30.clip.glif | 24 -- .../glyphs/_30.glif | 17 - .../glyphs/_31.clip.glif | 24 -- .../glyphs/_31.glif | 15 - .../glyphs/_32.clip.glif | 24 -- .../glyphs/_32.glif | 16 - .../glyphs/_33.clip.glif | 24 -- .../glyphs/_33.glif | 15 - .../glyphs/_34.clip.glif | 24 -- .../glyphs/_34.glif | 16 - .../glyphs/_35.clip.glif | 24 -- .../glyphs/_35.glif | 15 - .../glyphs/_36.clip.glif | 24 -- .../glyphs/_36.glif | 16 - .../glyphs/_37.clip.glif | 24 -- .../glyphs/_37.glif | 15 - .../glyphs/_38.clip.glif | 24 -- .../glyphs/_38.glif | 16 - .../glyphs/_39.clip.glif | 24 -- .../glyphs/_39.glif | 15 - .../glyphs/_4.clip.glif | 24 -- .../glyphs/_4.glif | 16 - .../glyphs/_40.clip.glif | 24 -- .../glyphs/_40.glif | 17 - .../glyphs/_41.glif | 15 - .../glyphs/_42.glif | 17 - .../glyphs/_43.glif | 15 - .../glyphs/_44.glif | 16 - .../glyphs/_45.glif | 15 - .../glyphs/_46.glif | 16 - .../glyphs/_47.glif | 15 - .../glyphs/_48.glif | 16 - .../glyphs/_49.glif | 15 - .../glyphs/_5.clip.glif | 24 -- .../glyphs/_5.glif | 15 - .../glyphs/_50.glif | 17 - .../glyphs/_51.glif | 15 - .../glyphs/_52.glif | 16 - .../glyphs/_53.glif | 15 - .../glyphs/_54.glif | 16 - .../glyphs/_55.glif | 15 - .../glyphs/_56.glif | 17 - .../glyphs/_57.glif | 15 - .../glyphs/_58.glif | 16 - .../glyphs/_59.glif | 15 - .../glyphs/_6.clip.glif | 24 -- .../glyphs/_6.glif | 16 - .../glyphs/_60.glif | 17 - .../glyphs/_61.glif | 15 - .../glyphs/_62.glif | 16 - .../glyphs/_63.glif | 15 - .../glyphs/_64.glif | 16 - .../glyphs/_65.glif | 15 - .../glyphs/_66.glif | 16 - .../glyphs/_67.glif | 15 - .../glyphs/_68.glif | 16 - .../glyphs/_69.glif | 15 - .../glyphs/_7.clip.glif | 24 -- .../glyphs/_7.glif | 15 - .../glyphs/_70.glif | 17 - .../glyphs/_71.glif | 15 - .../glyphs/_72.glif | 17 - .../glyphs/_73.glif | 15 - .../glyphs/_74.glif | 16 - .../glyphs/_75.glif | 15 - .../glyphs/_76.glif | 16 - .../glyphs/_77.glif | 15 - .../glyphs/_78.glif | 16 - .../glyphs/_79.glif | 15 - .../glyphs/_8.clip.glif | 24 -- .../glyphs/_8.glif | 16 - .../glyphs/_80.glif | 17 - .../glyphs/_81.glif | 15 - .../glyphs/_82.glif | 16 - .../glyphs/_83.glif | 15 - .../glyphs/_84.glif | 16 - .../glyphs/_85.glif | 15 - .../glyphs/_86.glif | 17 - .../glyphs/_87.glif | 15 - .../glyphs/_88.glif | 16 - .../glyphs/_89.glif | 15 - .../glyphs/_9.clip.glif | 24 -- .../glyphs/_9.glif | 15 - .../glyphs/_90.glif | 17 - .../glyphs/_91.glif | 15 - .../glyphs/_92.glif | 16 - .../glyphs/_93.glif | 15 - .../glyphs/_94.glif | 16 - .../glyphs/_95.glif | 15 - .../glyphs/_96.glif | 16 - .../glyphs/_97.glif | 15 - .../glyphs/_98.glif | 16 - .../glyphs/_99.glif | 16 - .../glyphs/cap.glif | 23 - .../glyphs/contents.plist | 314 -------------- .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 4 + .../glyphs/down10.glif | 4 + .../glyphs/up.glif | 4 + .../glyphs/up10.glif | 4 + .../layercontents.plist | 10 + .../lib.plist | 276 ++++++++++++ .../metainfo.plist | 10 + .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 4 + .../glyphs/down10.glif | 4 + .../glyphs/up.glif | 4 + .../glyphs/up10.glif | 4 + .../layercontents.plist | 10 + .../lib.plist | 276 ++++++++++++ .../metainfo.plist | 10 + .../Wavefont-wmin,rmax,amax.ufo/features.fea | 256 ------------ .../fontinfo.plist | 84 ---- .../glyphs/_0.clip.glif | 24 -- .../glyphs/_0.glif | 202 --------- .../glyphs/_1.clip.glif | 24 -- .../glyphs/_1.glif | 27 -- .../glyphs/_10.clip.glif | 24 -- .../glyphs/_10.glif | 17 - .../glyphs/_100.glif | 18 - .../glyphs/_101.glif | 15 - .../glyphs/_102.glif | 15 - .../glyphs/_103.glif | 15 - .../glyphs/_104.glif | 15 - .../glyphs/_105.glif | 15 - .../glyphs/_106.glif | 15 - .../glyphs/_107.glif | 15 - .../glyphs/_108.glif | 15 - .../glyphs/_109.glif | 15 - .../glyphs/_11.clip.glif | 24 -- .../glyphs/_11.glif | 15 - .../glyphs/_110.glif | 15 - .../glyphs/_111.glif | 15 - .../glyphs/_112.glif | 15 - .../glyphs/_113.glif | 15 - .../glyphs/_114.glif | 15 - .../glyphs/_115.glif | 15 - .../glyphs/_116.glif | 15 - .../glyphs/_117.glif | 15 - .../glyphs/_118.glif | 15 - .../glyphs/_119.glif | 15 - .../glyphs/_12.clip.glif | 24 -- .../glyphs/_12.glif | 16 - .../glyphs/_120.glif | 15 - .../glyphs/_121.glif | 15 - .../glyphs/_122.glif | 15 - .../glyphs/_123.glif | 15 - .../glyphs/_124.glif | 15 - .../glyphs/_125.glif | 15 - .../glyphs/_126.glif | 15 - .../glyphs/_127.glif | 15 - .../glyphs/_13.clip.glif | 24 -- .../glyphs/_13.glif | 15 - .../glyphs/_14.clip.glif | 24 -- .../glyphs/_14.glif | 17 - .../glyphs/_15.clip.glif | 24 -- .../glyphs/_15.glif | 15 - .../glyphs/_16.clip.glif | 24 -- .../glyphs/_16.glif | 16 - .../glyphs/_17.clip.glif | 24 -- .../glyphs/_17.glif | 15 - .../glyphs/_18.clip.glif | 24 -- .../glyphs/_18.glif | 16 - .../glyphs/_19.clip.glif | 24 -- .../glyphs/_19.glif | 15 - .../glyphs/_2.clip.glif | 24 -- .../glyphs/_2.glif | 16 - .../glyphs/_20.clip.glif | 24 -- .../glyphs/_20.glif | 17 - .../glyphs/_21.clip.glif | 24 -- .../glyphs/_21.glif | 15 - .../glyphs/_22.clip.glif | 24 -- .../glyphs/_22.glif | 16 - .../glyphs/_23.clip.glif | 24 -- .../glyphs/_23.glif | 15 - .../glyphs/_24.clip.glif | 24 -- .../glyphs/_24.glif | 16 - .../glyphs/_25.clip.glif | 24 -- .../glyphs/_25.glif | 15 - .../glyphs/_26.clip.glif | 24 -- .../glyphs/_26.glif | 16 - .../glyphs/_27.clip.glif | 24 -- .../glyphs/_27.glif | 15 - .../glyphs/_28.clip.glif | 24 -- .../glyphs/_28.glif | 17 - .../glyphs/_29.clip.glif | 24 -- .../glyphs/_29.glif | 15 - .../glyphs/_3.clip.glif | 24 -- .../glyphs/_3.glif | 15 - .../glyphs/_30.clip.glif | 24 -- .../glyphs/_30.glif | 17 - .../glyphs/_31.clip.glif | 24 -- .../glyphs/_31.glif | 15 - .../glyphs/_32.clip.glif | 24 -- .../glyphs/_32.glif | 16 - .../glyphs/_33.clip.glif | 24 -- .../glyphs/_33.glif | 15 - .../glyphs/_34.clip.glif | 24 -- .../glyphs/_34.glif | 16 - .../glyphs/_35.clip.glif | 24 -- .../glyphs/_35.glif | 15 - .../glyphs/_36.clip.glif | 24 -- .../glyphs/_36.glif | 16 - .../glyphs/_37.clip.glif | 24 -- .../glyphs/_37.glif | 15 - .../glyphs/_38.clip.glif | 24 -- .../glyphs/_38.glif | 16 - .../glyphs/_39.clip.glif | 24 -- .../glyphs/_39.glif | 15 - .../glyphs/_4.clip.glif | 24 -- .../glyphs/_4.glif | 16 - .../glyphs/_40.clip.glif | 24 -- .../glyphs/_40.glif | 17 - .../glyphs/_41.glif | 15 - .../glyphs/_42.glif | 17 - .../glyphs/_43.glif | 15 - .../glyphs/_44.glif | 16 - .../glyphs/_45.glif | 15 - .../glyphs/_46.glif | 16 - .../glyphs/_47.glif | 15 - .../glyphs/_48.glif | 16 - .../glyphs/_49.glif | 15 - .../glyphs/_5.clip.glif | 24 -- .../glyphs/_5.glif | 15 - .../glyphs/_50.glif | 17 - .../glyphs/_51.glif | 15 - .../glyphs/_52.glif | 16 - .../glyphs/_53.glif | 15 - .../glyphs/_54.glif | 16 - .../glyphs/_55.glif | 15 - .../glyphs/_56.glif | 17 - .../glyphs/_57.glif | 15 - .../glyphs/_58.glif | 16 - .../glyphs/_59.glif | 15 - .../glyphs/_6.clip.glif | 24 -- .../glyphs/_6.glif | 16 - .../glyphs/_60.glif | 17 - .../glyphs/_61.glif | 15 - .../glyphs/_62.glif | 16 - .../glyphs/_63.glif | 15 - .../glyphs/_64.glif | 16 - .../glyphs/_65.glif | 15 - .../glyphs/_66.glif | 16 - .../glyphs/_67.glif | 15 - .../glyphs/_68.glif | 16 - .../glyphs/_69.glif | 15 - .../glyphs/_7.clip.glif | 24 -- .../glyphs/_7.glif | 15 - .../glyphs/_70.glif | 17 - .../glyphs/_71.glif | 15 - .../glyphs/_72.glif | 17 - .../glyphs/_73.glif | 15 - .../glyphs/_74.glif | 16 - .../glyphs/_75.glif | 15 - .../glyphs/_76.glif | 16 - .../glyphs/_77.glif | 15 - .../glyphs/_78.glif | 16 - .../glyphs/_79.glif | 15 - .../glyphs/_8.clip.glif | 24 -- .../glyphs/_8.glif | 16 - .../glyphs/_80.glif | 17 - .../glyphs/_81.glif | 15 - .../glyphs/_82.glif | 16 - .../glyphs/_83.glif | 15 - .../glyphs/_84.glif | 16 - .../glyphs/_85.glif | 15 - .../glyphs/_86.glif | 17 - .../glyphs/_87.glif | 15 - .../glyphs/_88.glif | 16 - .../glyphs/_89.glif | 15 - .../glyphs/_9.clip.glif | 24 -- .../glyphs/_9.glif | 15 - .../glyphs/_90.glif | 17 - .../glyphs/_91.glif | 15 - .../glyphs/_92.glif | 16 - .../glyphs/_93.glif | 15 - .../glyphs/_94.glif | 16 - .../glyphs/_95.glif | 15 - .../glyphs/_96.glif | 16 - .../glyphs/_97.glif | 15 - .../glyphs/_98.glif | 16 - .../glyphs/_99.glif | 16 - .../glyphs/_notdef.glif | 4 - .../glyphs/cap.glif | 23 - .../glyphs/contents.plist | 314 -------------- .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 4 + .../glyphs/down10.glif | 4 + .../glyphs/up.glif | 4 + .../glyphs/up10.glif | 4 + .../layercontents.plist | 10 + .../lib.plist | 276 ++++++++++++ .../metainfo.plist | 10 + .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 4 + .../glyphs/down10.glif | 4 + .../glyphs/up.glif | 4 + .../glyphs/up10.glif | 4 + .../layercontents.plist | 10 + .../lib.plist | 276 ++++++++++++ .../metainfo.plist | 10 + .../Wavefont-wmin,rmax,amin.ufo/features.fea | 256 ------------ .../fontinfo.plist | 84 ---- .../glyphs/_0.clip.glif | 24 -- .../glyphs/_0.glif | 202 --------- .../glyphs/_1.clip.glif | 24 -- .../glyphs/_1.glif | 27 -- .../glyphs/_10.clip.glif | 24 -- .../glyphs/_10.glif | 17 - .../glyphs/_100.glif | 18 - .../glyphs/_101.glif | 15 - .../glyphs/_102.glif | 15 - .../glyphs/_103.glif | 15 - .../glyphs/_104.glif | 15 - .../glyphs/_105.glif | 15 - .../glyphs/_106.glif | 15 - .../glyphs/_107.glif | 15 - .../glyphs/_108.glif | 15 - .../glyphs/_109.glif | 15 - .../glyphs/_11.clip.glif | 24 -- .../glyphs/_11.glif | 15 - .../glyphs/_110.glif | 15 - .../glyphs/_111.glif | 15 - .../glyphs/_112.glif | 15 - .../glyphs/_113.glif | 15 - .../glyphs/_114.glif | 15 - .../glyphs/_115.glif | 15 - .../glyphs/_116.glif | 15 - .../glyphs/_117.glif | 15 - .../glyphs/_118.glif | 15 - .../glyphs/_119.glif | 15 - .../glyphs/_12.clip.glif | 24 -- .../glyphs/_12.glif | 16 - .../glyphs/_120.glif | 15 - .../glyphs/_121.glif | 15 - .../glyphs/_122.glif | 15 - .../glyphs/_123.glif | 15 - .../glyphs/_124.glif | 15 - .../glyphs/_125.glif | 15 - .../glyphs/_126.glif | 15 - .../glyphs/_127.glif | 15 - .../glyphs/_13.clip.glif | 24 -- .../glyphs/_13.glif | 15 - .../glyphs/_14.clip.glif | 24 -- .../glyphs/_14.glif | 17 - .../glyphs/_15.clip.glif | 24 -- .../glyphs/_15.glif | 15 - .../glyphs/_16.clip.glif | 24 -- .../glyphs/_16.glif | 16 - .../glyphs/_17.clip.glif | 24 -- .../glyphs/_17.glif | 15 - .../glyphs/_18.clip.glif | 24 -- .../glyphs/_18.glif | 16 - .../glyphs/_19.clip.glif | 24 -- .../glyphs/_19.glif | 15 - .../glyphs/_2.clip.glif | 24 -- .../glyphs/_2.glif | 16 - .../glyphs/_20.clip.glif | 24 -- .../glyphs/_20.glif | 17 - .../glyphs/_21.clip.glif | 24 -- .../glyphs/_21.glif | 15 - .../glyphs/_22.clip.glif | 24 -- .../glyphs/_22.glif | 16 - .../glyphs/_23.clip.glif | 24 -- .../glyphs/_23.glif | 15 - .../glyphs/_24.clip.glif | 24 -- .../glyphs/_24.glif | 16 - .../glyphs/_25.clip.glif | 24 -- .../glyphs/_25.glif | 15 - .../glyphs/_26.clip.glif | 24 -- .../glyphs/_26.glif | 16 - .../glyphs/_27.clip.glif | 24 -- .../glyphs/_27.glif | 15 - .../glyphs/_28.clip.glif | 24 -- .../glyphs/_28.glif | 17 - .../glyphs/_29.clip.glif | 24 -- .../glyphs/_29.glif | 15 - .../glyphs/_3.clip.glif | 24 -- .../glyphs/_3.glif | 15 - .../glyphs/_30.clip.glif | 24 -- .../glyphs/_30.glif | 17 - .../glyphs/_31.clip.glif | 24 -- .../glyphs/_31.glif | 15 - .../glyphs/_32.clip.glif | 24 -- .../glyphs/_32.glif | 16 - .../glyphs/_33.clip.glif | 24 -- .../glyphs/_33.glif | 15 - .../glyphs/_34.clip.glif | 24 -- .../glyphs/_34.glif | 16 - .../glyphs/_35.clip.glif | 24 -- .../glyphs/_35.glif | 15 - .../glyphs/_36.clip.glif | 24 -- .../glyphs/_36.glif | 16 - .../glyphs/_37.clip.glif | 24 -- .../glyphs/_37.glif | 15 - .../glyphs/_38.clip.glif | 24 -- .../glyphs/_38.glif | 16 - .../glyphs/_39.clip.glif | 24 -- .../glyphs/_39.glif | 15 - .../glyphs/_4.clip.glif | 24 -- .../glyphs/_4.glif | 16 - .../glyphs/_40.clip.glif | 24 -- .../glyphs/_40.glif | 17 - .../glyphs/_41.glif | 15 - .../glyphs/_42.glif | 17 - .../glyphs/_43.glif | 15 - .../glyphs/_44.glif | 16 - .../glyphs/_45.glif | 15 - .../glyphs/_46.glif | 16 - .../glyphs/_47.glif | 15 - .../glyphs/_48.glif | 16 - .../glyphs/_49.glif | 15 - .../glyphs/_5.clip.glif | 24 -- .../glyphs/_5.glif | 15 - .../glyphs/_50.glif | 17 - .../glyphs/_51.glif | 15 - .../glyphs/_52.glif | 16 - .../glyphs/_53.glif | 15 - .../glyphs/_54.glif | 16 - .../glyphs/_55.glif | 15 - .../glyphs/_56.glif | 17 - .../glyphs/_57.glif | 15 - .../glyphs/_58.glif | 16 - .../glyphs/_59.glif | 15 - .../glyphs/_6.clip.glif | 24 -- .../glyphs/_6.glif | 16 - .../glyphs/_60.glif | 17 - .../glyphs/_61.glif | 15 - .../glyphs/_62.glif | 16 - .../glyphs/_63.glif | 15 - .../glyphs/_64.glif | 16 - .../glyphs/_65.glif | 15 - .../glyphs/_66.glif | 16 - .../glyphs/_67.glif | 15 - .../glyphs/_68.glif | 16 - .../glyphs/_69.glif | 15 - .../glyphs/_7.clip.glif | 24 -- .../glyphs/_7.glif | 15 - .../glyphs/_70.glif | 17 - .../glyphs/_71.glif | 15 - .../glyphs/_72.glif | 17 - .../glyphs/_73.glif | 15 - .../glyphs/_74.glif | 16 - .../glyphs/_75.glif | 15 - .../glyphs/_76.glif | 16 - .../glyphs/_77.glif | 15 - .../glyphs/_78.glif | 16 - .../glyphs/_79.glif | 15 - .../glyphs/_8.clip.glif | 24 -- .../glyphs/_8.glif | 16 - .../glyphs/_80.glif | 17 - .../glyphs/_81.glif | 15 - .../glyphs/_82.glif | 16 - .../glyphs/_83.glif | 15 - .../glyphs/_84.glif | 16 - .../glyphs/_85.glif | 15 - .../glyphs/_86.glif | 17 - .../glyphs/_87.glif | 15 - .../glyphs/_88.glif | 16 - .../glyphs/_89.glif | 15 - .../glyphs/_9.clip.glif | 24 -- .../glyphs/_9.glif | 15 - .../glyphs/_90.glif | 17 - .../glyphs/_91.glif | 15 - .../glyphs/_92.glif | 16 - .../glyphs/_93.glif | 15 - .../glyphs/_94.glif | 16 - .../glyphs/_95.glif | 15 - .../glyphs/_96.glif | 16 - .../glyphs/_97.glif | 15 - .../glyphs/_98.glif | 16 - .../glyphs/_99.glif | 16 - .../glyphs/_notdef.glif | 4 - .../glyphs/cap.glif | 23 - .../glyphs/contents.plist | 314 -------------- .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 4 + .../glyphs/down10.glif | 4 + .../glyphs/up.glif | 4 + .../glyphs/up10.glif | 4 + .../layercontents.plist | 10 + .../lib.plist | 276 ++++++++++++ .../metainfo.plist | 10 + .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 4 + .../glyphs/down10.glif | 4 + .../glyphs/up.glif | 4 + .../glyphs/up10.glif | 4 + .../layercontents.plist | 10 + .../lib.plist | 276 ++++++++++++ .../metainfo.plist | 10 + .../Wavefont-wmin,rmin,amax.ufo/features.fea | 256 ------------ .../fontinfo.plist | 84 ---- .../glyphs/_0.clip.glif | 24 -- .../glyphs/_0.glif | 202 --------- .../glyphs/_1.clip.glif | 24 -- .../glyphs/_1.glif | 27 -- .../glyphs/_10.clip.glif | 24 -- .../glyphs/_10.glif | 17 - .../glyphs/_100.glif | 18 - .../glyphs/_101.glif | 15 - .../glyphs/_102.glif | 15 - .../glyphs/_103.glif | 15 - .../glyphs/_104.glif | 15 - .../glyphs/_105.glif | 15 - .../glyphs/_106.glif | 15 - .../glyphs/_107.glif | 15 - .../glyphs/_108.glif | 15 - .../glyphs/_109.glif | 15 - .../glyphs/_11.clip.glif | 24 -- .../glyphs/_11.glif | 15 - .../glyphs/_110.glif | 15 - .../glyphs/_111.glif | 15 - .../glyphs/_112.glif | 15 - .../glyphs/_113.glif | 15 - .../glyphs/_114.glif | 15 - .../glyphs/_115.glif | 15 - .../glyphs/_116.glif | 15 - .../glyphs/_117.glif | 15 - .../glyphs/_118.glif | 15 - .../glyphs/_119.glif | 15 - .../glyphs/_12.clip.glif | 24 -- .../glyphs/_12.glif | 16 - .../glyphs/_120.glif | 15 - .../glyphs/_121.glif | 15 - .../glyphs/_122.glif | 15 - .../glyphs/_123.glif | 15 - .../glyphs/_124.glif | 15 - .../glyphs/_125.glif | 15 - .../glyphs/_126.glif | 15 - .../glyphs/_127.glif | 15 - .../glyphs/_13.clip.glif | 24 -- .../glyphs/_13.glif | 15 - .../glyphs/_14.clip.glif | 24 -- .../glyphs/_14.glif | 17 - .../glyphs/_15.clip.glif | 24 -- .../glyphs/_15.glif | 15 - .../glyphs/_16.clip.glif | 24 -- .../glyphs/_16.glif | 16 - .../glyphs/_17.clip.glif | 24 -- .../glyphs/_17.glif | 15 - .../glyphs/_18.clip.glif | 24 -- .../glyphs/_18.glif | 16 - .../glyphs/_19.clip.glif | 24 -- .../glyphs/_19.glif | 15 - .../glyphs/_2.clip.glif | 24 -- .../glyphs/_2.glif | 16 - .../glyphs/_20.clip.glif | 24 -- .../glyphs/_20.glif | 17 - .../glyphs/_21.clip.glif | 24 -- .../glyphs/_21.glif | 15 - .../glyphs/_22.clip.glif | 24 -- .../glyphs/_22.glif | 16 - .../glyphs/_23.clip.glif | 24 -- .../glyphs/_23.glif | 15 - .../glyphs/_24.clip.glif | 24 -- .../glyphs/_24.glif | 16 - .../glyphs/_25.clip.glif | 24 -- .../glyphs/_25.glif | 15 - .../glyphs/_26.clip.glif | 24 -- .../glyphs/_26.glif | 16 - .../glyphs/_27.clip.glif | 24 -- .../glyphs/_27.glif | 15 - .../glyphs/_28.clip.glif | 24 -- .../glyphs/_28.glif | 17 - .../glyphs/_29.clip.glif | 24 -- .../glyphs/_29.glif | 15 - .../glyphs/_3.clip.glif | 24 -- .../glyphs/_3.glif | 15 - .../glyphs/_30.clip.glif | 24 -- .../glyphs/_30.glif | 17 - .../glyphs/_31.clip.glif | 24 -- .../glyphs/_31.glif | 15 - .../glyphs/_32.clip.glif | 24 -- .../glyphs/_32.glif | 16 - .../glyphs/_33.clip.glif | 24 -- .../glyphs/_33.glif | 15 - .../glyphs/_34.clip.glif | 24 -- .../glyphs/_34.glif | 16 - .../glyphs/_35.clip.glif | 24 -- .../glyphs/_35.glif | 15 - .../glyphs/_36.clip.glif | 24 -- .../glyphs/_36.glif | 16 - .../glyphs/_37.clip.glif | 24 -- .../glyphs/_37.glif | 15 - .../glyphs/_38.clip.glif | 24 -- .../glyphs/_38.glif | 16 - .../glyphs/_39.clip.glif | 24 -- .../glyphs/_39.glif | 15 - .../glyphs/_4.clip.glif | 24 -- .../glyphs/_4.glif | 16 - .../glyphs/_40.clip.glif | 24 -- .../glyphs/_40.glif | 17 - .../glyphs/_41.glif | 15 - .../glyphs/_42.glif | 17 - .../glyphs/_43.glif | 15 - .../glyphs/_44.glif | 16 - .../glyphs/_45.glif | 15 - .../glyphs/_46.glif | 16 - .../glyphs/_47.glif | 15 - .../glyphs/_48.glif | 16 - .../glyphs/_49.glif | 15 - .../glyphs/_5.clip.glif | 24 -- .../glyphs/_5.glif | 15 - .../glyphs/_50.glif | 17 - .../glyphs/_51.glif | 15 - .../glyphs/_52.glif | 16 - .../glyphs/_53.glif | 15 - .../glyphs/_54.glif | 16 - .../glyphs/_55.glif | 15 - .../glyphs/_56.glif | 17 - .../glyphs/_57.glif | 15 - .../glyphs/_58.glif | 16 - .../glyphs/_59.glif | 15 - .../glyphs/_6.clip.glif | 24 -- .../glyphs/_6.glif | 16 - .../glyphs/_60.glif | 17 - .../glyphs/_61.glif | 15 - .../glyphs/_62.glif | 16 - .../glyphs/_63.glif | 15 - .../glyphs/_64.glif | 16 - .../glyphs/_65.glif | 15 - .../glyphs/_66.glif | 16 - .../glyphs/_67.glif | 15 - .../glyphs/_68.glif | 16 - .../glyphs/_69.glif | 15 - .../glyphs/_7.clip.glif | 24 -- .../glyphs/_7.glif | 15 - .../glyphs/_70.glif | 17 - .../glyphs/_71.glif | 15 - .../glyphs/_72.glif | 17 - .../glyphs/_73.glif | 15 - .../glyphs/_74.glif | 16 - .../glyphs/_75.glif | 15 - .../glyphs/_76.glif | 16 - .../glyphs/_77.glif | 15 - .../glyphs/_78.glif | 16 - .../glyphs/_79.glif | 15 - .../glyphs/_8.clip.glif | 24 -- .../glyphs/_8.glif | 16 - .../glyphs/_80.glif | 17 - .../glyphs/_81.glif | 15 - .../glyphs/_82.glif | 16 - .../glyphs/_83.glif | 15 - .../glyphs/_84.glif | 16 - .../glyphs/_85.glif | 15 - .../glyphs/_86.glif | 17 - .../glyphs/_87.glif | 15 - .../glyphs/_88.glif | 16 - .../glyphs/_89.glif | 15 - .../glyphs/_9.clip.glif | 24 -- .../glyphs/_9.glif | 15 - .../glyphs/_90.glif | 17 - .../glyphs/_91.glif | 15 - .../glyphs/_92.glif | 16 - .../glyphs/_93.glif | 15 - .../glyphs/_94.glif | 16 - .../glyphs/_95.glif | 15 - .../glyphs/_96.glif | 16 - .../glyphs/_97.glif | 15 - .../glyphs/_98.glif | 16 - .../glyphs/_99.glif | 16 - .../glyphs/_notdef.glif | 4 - .../glyphs/cap.glif | 23 - .../glyphs/contents.plist | 314 -------------- .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 4 + .../glyphs/down10.glif | 4 + .../glyphs/up.glif | 4 + .../glyphs/up10.glif | 4 + .../layercontents.plist | 10 + .../lib.plist | 276 ++++++++++++ .../metainfo.plist | 10 + .../features.fea | 256 ++++++++++++ .../fontinfo.plist | 84 ++++ .../glyphs/_0.clip.glif | 24 ++ .../glyphs/_0.glif | 202 +++++++++ .../glyphs/_1.clip.glif | 24 ++ .../glyphs/_1.glif | 27 ++ .../glyphs/_10.clip.glif | 24 ++ .../glyphs/_10.glif | 17 + .../glyphs/_100.glif | 18 + .../glyphs/_101.glif | 15 + .../glyphs/_102.glif | 15 + .../glyphs/_103.glif | 15 + .../glyphs/_104.glif | 15 + .../glyphs/_105.glif | 15 + .../glyphs/_106.glif | 15 + .../glyphs/_107.glif | 15 + .../glyphs/_108.glif | 15 + .../glyphs/_109.glif | 15 + .../glyphs/_11.clip.glif | 24 ++ .../glyphs/_11.glif | 15 + .../glyphs/_110.glif | 15 + .../glyphs/_111.glif | 15 + .../glyphs/_112.glif | 15 + .../glyphs/_113.glif | 15 + .../glyphs/_114.glif | 15 + .../glyphs/_115.glif | 15 + .../glyphs/_116.glif | 15 + .../glyphs/_117.glif | 15 + .../glyphs/_118.glif | 15 + .../glyphs/_119.glif | 15 + .../glyphs/_12.clip.glif | 24 ++ .../glyphs/_12.glif | 16 + .../glyphs/_120.glif | 15 + .../glyphs/_121.glif | 15 + .../glyphs/_122.glif | 15 + .../glyphs/_123.glif | 15 + .../glyphs/_124.glif | 15 + .../glyphs/_125.glif | 15 + .../glyphs/_126.glif | 15 + .../glyphs/_127.glif | 15 + .../glyphs/_13.clip.glif | 24 ++ .../glyphs/_13.glif | 15 + .../glyphs/_14.clip.glif | 24 ++ .../glyphs/_14.glif | 17 + .../glyphs/_15.clip.glif | 24 ++ .../glyphs/_15.glif | 15 + .../glyphs/_16.clip.glif | 24 ++ .../glyphs/_16.glif | 16 + .../glyphs/_17.clip.glif | 24 ++ .../glyphs/_17.glif | 15 + .../glyphs/_18.clip.glif | 24 ++ .../glyphs/_18.glif | 16 + .../glyphs/_19.clip.glif | 24 ++ .../glyphs/_19.glif | 15 + .../glyphs/_2.clip.glif | 24 ++ .../glyphs/_2.glif | 16 + .../glyphs/_20.clip.glif | 24 ++ .../glyphs/_20.glif | 17 + .../glyphs/_21.clip.glif | 24 ++ .../glyphs/_21.glif | 15 + .../glyphs/_22.clip.glif | 24 ++ .../glyphs/_22.glif | 16 + .../glyphs/_23.clip.glif | 24 ++ .../glyphs/_23.glif | 15 + .../glyphs/_24.clip.glif | 24 ++ .../glyphs/_24.glif | 16 + .../glyphs/_25.clip.glif | 24 ++ .../glyphs/_25.glif | 15 + .../glyphs/_26.glif | 16 + .../glyphs/_27.glif | 15 + .../glyphs/_28.glif | 17 + .../glyphs/_29.glif | 15 + .../glyphs/_3.clip.glif | 24 ++ .../glyphs/_3.glif | 15 + .../glyphs/_30.glif | 17 + .../glyphs/_31.glif | 15 + .../glyphs/_32.glif | 16 + .../glyphs/_33.glif | 15 + .../glyphs/_34.glif | 16 + .../glyphs/_35.glif | 15 + .../glyphs/_36.glif | 16 + .../glyphs/_37.glif | 15 + .../glyphs/_38.glif | 16 + .../glyphs/_39.glif | 15 + .../glyphs/_4.clip.glif | 24 ++ .../glyphs/_4.glif | 16 + .../glyphs/_40.glif | 17 + .../glyphs/_41.glif | 15 + .../glyphs/_42.glif | 17 + .../glyphs/_43.glif | 15 + .../glyphs/_44.glif | 16 + .../glyphs/_45.glif | 15 + .../glyphs/_46.glif | 16 + .../glyphs/_47.glif | 15 + .../glyphs/_48.glif | 16 + .../glyphs/_49.glif | 15 + .../glyphs/_5.clip.glif | 24 ++ .../glyphs/_5.glif | 15 + .../glyphs/_50.glif | 17 + .../glyphs/_51.glif | 15 + .../glyphs/_52.glif | 16 + .../glyphs/_53.glif | 15 + .../glyphs/_54.glif | 16 + .../glyphs/_55.glif | 15 + .../glyphs/_56.glif | 17 + .../glyphs/_57.glif | 15 + .../glyphs/_58.glif | 16 + .../glyphs/_59.glif | 15 + .../glyphs/_6.clip.glif | 24 ++ .../glyphs/_6.glif | 16 + .../glyphs/_60.glif | 17 + .../glyphs/_61.glif | 15 + .../glyphs/_62.glif | 16 + .../glyphs/_63.glif | 15 + .../glyphs/_64.glif | 16 + .../glyphs/_65.glif | 15 + .../glyphs/_66.glif | 16 + .../glyphs/_67.glif | 15 + .../glyphs/_68.glif | 16 + .../glyphs/_69.glif | 15 + .../glyphs/_7.clip.glif | 24 ++ .../glyphs/_7.glif | 15 + .../glyphs/_70.glif | 17 + .../glyphs/_71.glif | 15 + .../glyphs/_72.glif | 17 + .../glyphs/_73.glif | 15 + .../glyphs/_74.glif | 16 + .../glyphs/_75.glif | 15 + .../glyphs/_76.glif | 16 + .../glyphs/_77.glif | 15 + .../glyphs/_78.glif | 16 + .../glyphs/_79.glif | 15 + .../glyphs/_8.clip.glif | 24 ++ .../glyphs/_8.glif | 16 + .../glyphs/_80.glif | 17 + .../glyphs/_81.glif | 15 + .../glyphs/_82.glif | 16 + .../glyphs/_83.glif | 15 + .../glyphs/_84.glif | 16 + .../glyphs/_85.glif | 15 + .../glyphs/_86.glif | 17 + .../glyphs/_87.glif | 15 + .../glyphs/_88.glif | 16 + .../glyphs/_89.glif | 15 + .../glyphs/_9.clip.glif | 24 ++ .../glyphs/_9.glif | 15 + .../glyphs/_90.glif | 17 + .../glyphs/_91.glif | 15 + .../glyphs/_92.glif | 16 + .../glyphs/_93.glif | 15 + .../glyphs/_94.glif | 16 + .../glyphs/_95.glif | 15 + .../glyphs/_96.glif | 16 + .../glyphs/_97.glif | 15 + .../glyphs/_98.glif | 16 + .../glyphs/_99.glif | 16 + .../glyphs/_notdef.glif | 4 + .../glyphs/cap.glif | 23 + .../glyphs/contents.plist | 326 +++++++++++++++ .../glyphs/down.glif | 4 + .../glyphs/down10.glif | 4 + .../glyphs/up.glif | 4 + .../glyphs/up10.glif | 4 + .../layercontents.plist | 10 + .../lib.plist | 276 ++++++++++++ .../metainfo.plist | 10 + .../Wavefont-wmin,rmin,amin.ufo/features.fea | 256 ------------ .../fontinfo.plist | 84 ---- .../glyphs/_0.clip.glif | 24 -- .../glyphs/_0.glif | 202 --------- .../glyphs/_1.clip.glif | 24 -- .../glyphs/_1.glif | 27 -- .../glyphs/_10.clip.glif | 24 -- .../glyphs/_10.glif | 17 - .../glyphs/_100.glif | 18 - .../glyphs/_101.glif | 15 - .../glyphs/_102.glif | 15 - .../glyphs/_103.glif | 15 - .../glyphs/_104.glif | 15 - .../glyphs/_105.glif | 15 - .../glyphs/_106.glif | 15 - .../glyphs/_107.glif | 15 - .../glyphs/_108.glif | 15 - .../glyphs/_109.glif | 15 - .../glyphs/_11.clip.glif | 24 -- .../glyphs/_11.glif | 15 - .../glyphs/_110.glif | 15 - .../glyphs/_111.glif | 15 - .../glyphs/_112.glif | 15 - .../glyphs/_113.glif | 15 - .../glyphs/_114.glif | 15 - .../glyphs/_115.glif | 15 - .../glyphs/_116.glif | 15 - .../glyphs/_117.glif | 15 - .../glyphs/_118.glif | 15 - .../glyphs/_119.glif | 15 - .../glyphs/_12.clip.glif | 24 -- .../glyphs/_12.glif | 16 - .../glyphs/_120.glif | 15 - .../glyphs/_121.glif | 15 - .../glyphs/_122.glif | 15 - .../glyphs/_123.glif | 15 - .../glyphs/_124.glif | 15 - .../glyphs/_125.glif | 15 - .../glyphs/_126.glif | 15 - .../glyphs/_127.glif | 15 - .../glyphs/_13.clip.glif | 24 -- .../glyphs/_13.glif | 15 - .../glyphs/_14.clip.glif | 24 -- .../glyphs/_14.glif | 17 - .../glyphs/_15.clip.glif | 24 -- .../glyphs/_15.glif | 15 - .../glyphs/_16.clip.glif | 24 -- .../glyphs/_16.glif | 16 - .../glyphs/_17.clip.glif | 24 -- .../glyphs/_17.glif | 15 - .../glyphs/_18.clip.glif | 24 -- .../glyphs/_18.glif | 16 - .../glyphs/_19.clip.glif | 24 -- .../glyphs/_19.glif | 15 - .../glyphs/_2.clip.glif | 24 -- .../glyphs/_2.glif | 16 - .../glyphs/_20.clip.glif | 24 -- .../glyphs/_20.glif | 17 - .../glyphs/_21.clip.glif | 24 -- .../glyphs/_21.glif | 15 - .../glyphs/_22.clip.glif | 24 -- .../glyphs/_22.glif | 16 - .../glyphs/_23.clip.glif | 24 -- .../glyphs/_23.glif | 15 - .../glyphs/_24.clip.glif | 24 -- .../glyphs/_24.glif | 16 - .../glyphs/_25.clip.glif | 24 -- .../glyphs/_25.glif | 15 - .../glyphs/_26.clip.glif | 24 -- .../glyphs/_26.glif | 16 - .../glyphs/_27.clip.glif | 24 -- .../glyphs/_27.glif | 15 - .../glyphs/_28.clip.glif | 24 -- .../glyphs/_28.glif | 17 - .../glyphs/_29.clip.glif | 24 -- .../glyphs/_29.glif | 15 - .../glyphs/_3.clip.glif | 24 -- .../glyphs/_3.glif | 15 - .../glyphs/_30.clip.glif | 24 -- .../glyphs/_30.glif | 17 - .../glyphs/_31.clip.glif | 24 -- .../glyphs/_31.glif | 15 - .../glyphs/_32.clip.glif | 24 -- .../glyphs/_32.glif | 16 - .../glyphs/_33.clip.glif | 24 -- .../glyphs/_33.glif | 15 - .../glyphs/_34.clip.glif | 24 -- .../glyphs/_34.glif | 16 - .../glyphs/_35.clip.glif | 24 -- .../glyphs/_35.glif | 15 - .../glyphs/_36.clip.glif | 24 -- .../glyphs/_36.glif | 16 - .../glyphs/_37.clip.glif | 24 -- .../glyphs/_37.glif | 15 - .../glyphs/_38.clip.glif | 24 -- .../glyphs/_38.glif | 16 - .../glyphs/_39.clip.glif | 24 -- .../glyphs/_39.glif | 15 - .../glyphs/_4.clip.glif | 24 -- .../glyphs/_4.glif | 16 - .../glyphs/_40.clip.glif | 24 -- .../glyphs/_40.glif | 17 - .../glyphs/_41.glif | 15 - .../glyphs/_42.glif | 17 - .../glyphs/_43.glif | 15 - .../glyphs/_44.glif | 16 - .../glyphs/_45.glif | 15 - .../glyphs/_46.glif | 16 - .../glyphs/_47.glif | 15 - .../glyphs/_48.glif | 16 - .../glyphs/_49.glif | 15 - .../glyphs/_5.clip.glif | 24 -- .../glyphs/_5.glif | 15 - .../glyphs/_50.glif | 17 - .../glyphs/_51.glif | 15 - .../glyphs/_52.glif | 16 - .../glyphs/_53.glif | 15 - .../glyphs/_54.glif | 16 - .../glyphs/_55.glif | 15 - .../glyphs/_56.glif | 17 - .../glyphs/_57.glif | 15 - .../glyphs/_58.glif | 16 - .../glyphs/_59.glif | 15 - .../glyphs/_6.clip.glif | 24 -- .../glyphs/_6.glif | 16 - .../glyphs/_60.glif | 17 - .../glyphs/_61.glif | 15 - .../glyphs/_62.glif | 16 - .../glyphs/_63.glif | 15 - .../glyphs/_64.glif | 16 - .../glyphs/_65.glif | 15 - .../glyphs/_66.glif | 16 - .../glyphs/_67.glif | 15 - .../glyphs/_68.glif | 16 - .../glyphs/_69.glif | 15 - .../glyphs/_7.clip.glif | 24 -- .../glyphs/_7.glif | 15 - .../glyphs/_70.glif | 17 - .../glyphs/_71.glif | 15 - .../glyphs/_72.glif | 17 - .../glyphs/_73.glif | 15 - .../glyphs/_74.glif | 16 - .../glyphs/_75.glif | 15 - .../glyphs/_76.glif | 16 - .../glyphs/_77.glif | 15 - .../glyphs/_78.glif | 16 - .../glyphs/_79.glif | 15 - .../glyphs/_8.clip.glif | 24 -- .../glyphs/_8.glif | 16 - .../glyphs/_80.glif | 17 - .../glyphs/_81.glif | 15 - .../glyphs/_82.glif | 16 - .../glyphs/_83.glif | 15 - .../glyphs/_84.glif | 16 - .../glyphs/_85.glif | 15 - .../glyphs/_86.glif | 17 - .../glyphs/_87.glif | 15 - .../glyphs/_88.glif | 16 - .../glyphs/_89.glif | 15 - .../glyphs/_9.clip.glif | 24 -- .../glyphs/_9.glif | 15 - .../glyphs/_90.glif | 17 - .../glyphs/_91.glif | 15 - .../glyphs/_92.glif | 16 - .../glyphs/_93.glif | 15 - .../glyphs/_94.glif | 16 - .../glyphs/_95.glif | 15 - .../glyphs/_96.glif | 16 - .../glyphs/_97.glif | 15 - .../glyphs/_98.glif | 16 - .../glyphs/_99.glif | 16 - .../glyphs/_notdef.glif | 4 - .../glyphs/cap.glif | 23 - .../glyphs/contents.plist | 314 -------------- sources/config.yaml | 7 + sources/wavefont.designspace | 214 +++++++--- 4102 files changed, 59699 insertions(+), 30348 deletions(-) create mode 100644 fonts/variable/Wavefont[ROND,YELA,wdth,wght].ttf create mode 100644 fonts/variable/Wavefont[ROND,YELA,wdth,wght].woff2 delete mode 100644 fonts/variable/Wavefont[ROND,YELA,wght].ttf delete mode 100644 fonts/variable/Wavefont[ROND,YELA,wght].woff2 create mode 100644 fonts/webfonts/Wavefont[ROND,YELA,wdth,wght].woff2 delete mode 100644 fonts/webfonts/Wavefont[ROND,YELA,wght].woff2 create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/features.fea create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_0.clip.glif rename sources/{Wavefont-wmax,rmax,amax.ufo => Wavefont-wmax,rmax,amax,smax.ufo}/glyphs/_0.glif (100%) create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/_99.glif rename sources/{Wavefont-wmax,rmax,amax.ufo => Wavefont-wmax,rmax,amax,smax.ufo}/glyphs/_notdef.glif (100%) create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smax.ufo/glyphs/contents.plist rename sources/{Wavefont-wmax,rmax,amax.ufo => Wavefont-wmax,rmax,amax,smax.ufo}/glyphs/down.glif (100%) rename sources/{Wavefont-wmax,rmax,amax.ufo => Wavefont-wmax,rmax,amax,smax.ufo}/glyphs/down10.glif (100%) rename sources/{Wavefont-wmax,rmax,amax.ufo => Wavefont-wmax,rmax,amax,smax.ufo}/glyphs/up.glif (100%) rename sources/{Wavefont-wmax,rmax,amax.ufo => Wavefont-wmax,rmax,amax,smax.ufo}/glyphs/up10.glif (100%) rename sources/{Wavefont-wmax,rmax,amax.ufo => Wavefont-wmax,rmax,amax,smax.ufo}/layercontents.plist (100%) rename sources/{Wavefont-wmax,rmax,amax.ufo => Wavefont-wmax,rmax,amax,smax.ufo}/lib.plist (100%) rename sources/{Wavefont-wmax,rmax,amax.ufo => Wavefont-wmax,rmax,amax,smax.ufo}/metainfo.plist (100%) create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/features.fea create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmax,rmax,amax,smin.ufo/glyphs/contents.plist rename sources/{Wavefont-wmax,rmax,amin.ufo => Wavefont-wmax,rmax,amax,smin.ufo}/glyphs/down.glif (100%) rename sources/{Wavefont-wmax,rmax,amin.ufo => Wavefont-wmax,rmax,amax,smin.ufo}/glyphs/down10.glif (100%) rename sources/{Wavefont-wmax,rmax,amin.ufo => Wavefont-wmax,rmax,amax,smin.ufo}/glyphs/up.glif (100%) rename sources/{Wavefont-wmax,rmax,amin.ufo => Wavefont-wmax,rmax,amax,smin.ufo}/glyphs/up10.glif (100%) rename sources/{Wavefont-wmax,rmax,amin.ufo => Wavefont-wmax,rmax,amax,smin.ufo}/layercontents.plist (100%) rename sources/{Wavefont-wmax,rmax,amin.ufo => Wavefont-wmax,rmax,amax,smin.ufo}/lib.plist (100%) rename sources/{Wavefont-wmax,rmax,amin.ufo => Wavefont-wmax,rmax,amax,smin.ufo}/metainfo.plist (100%) delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/features.fea delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/fontinfo.plist delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_0.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_1.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_1.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_10.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_10.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_100.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_101.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_102.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_103.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_104.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_105.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_106.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_107.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_108.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_109.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_11.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_11.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_110.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_111.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_112.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_113.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_114.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_115.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_116.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_117.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_118.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_119.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_12.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_12.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_120.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_121.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_122.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_123.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_124.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_125.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_126.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_127.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_13.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_13.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_14.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_14.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_15.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_15.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_16.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_16.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_17.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_17.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_18.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_18.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_19.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_19.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_2.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_2.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_20.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_20.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_21.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_21.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_22.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_22.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_23.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_23.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_24.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_24.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_25.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_25.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_26.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_26.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_27.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_27.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_28.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_28.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_29.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_29.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_3.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_3.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_30.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_30.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_31.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_31.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_32.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_32.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_33.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_33.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_34.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_34.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_35.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_35.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_36.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_36.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_37.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_37.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_38.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_38.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_39.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_39.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_4.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_4.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_40.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_40.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_41.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_42.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_43.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_44.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_45.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_46.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_47.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_48.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_49.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_5.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_5.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_50.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_51.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_52.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_53.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_54.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_55.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_56.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_57.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_58.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_59.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_6.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_6.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_60.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_61.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_62.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_63.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_64.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_65.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_66.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_67.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_68.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_69.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_7.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_7.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_70.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_71.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_72.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_73.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_74.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_75.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_76.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_77.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_78.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_79.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_8.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_8.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_80.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_81.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_82.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_83.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_84.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_85.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_86.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_87.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_88.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_89.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_9.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_9.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_90.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_91.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_92.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_93.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_94.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_95.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_96.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_97.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_98.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/_99.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/cap.glif delete mode 100644 sources/Wavefont-wmax,rmax,amax.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/features.fea create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_0.clip.glif rename sources/{Wavefont-wmax,rmax,amin.ufo => Wavefont-wmax,rmax,amin,smax.ufo}/glyphs/_0.glif (100%) create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/_99.glif rename sources/{Wavefont-wmax,rmax,amin.ufo => Wavefont-wmax,rmax,amin,smax.ufo}/glyphs/_notdef.glif (100%) create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smax.ufo/glyphs/contents.plist rename sources/{Wavefont-wmax,rmin,amax.ufo => Wavefont-wmax,rmax,amin,smax.ufo}/glyphs/down.glif (100%) rename sources/{Wavefont-wmax,rmin,amax.ufo => Wavefont-wmax,rmax,amin,smax.ufo}/glyphs/down10.glif (100%) rename sources/{Wavefont-wmax,rmin,amax.ufo => Wavefont-wmax,rmax,amin,smax.ufo}/glyphs/up.glif (100%) rename sources/{Wavefont-wmax,rmin,amax.ufo => Wavefont-wmax,rmax,amin,smax.ufo}/glyphs/up10.glif (100%) rename sources/{Wavefont-wmax,rmin,amax.ufo => Wavefont-wmax,rmax,amin,smax.ufo}/layercontents.plist (100%) rename sources/{Wavefont-wmax,rmin,amax.ufo => Wavefont-wmax,rmax,amin,smax.ufo}/lib.plist (100%) rename sources/{Wavefont-wmax,rmin,amax.ufo => Wavefont-wmax,rmax,amin,smax.ufo}/metainfo.plist (100%) create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/features.fea create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmax,rmax,amin,smin.ufo/glyphs/contents.plist rename sources/{Wavefont-wmax,rmin,amin.ufo => Wavefont-wmax,rmax,amin,smin.ufo}/glyphs/down.glif (100%) rename sources/{Wavefont-wmax,rmin,amin.ufo => Wavefont-wmax,rmax,amin,smin.ufo}/glyphs/down10.glif (100%) rename sources/{Wavefont-wmax,rmin,amin.ufo => Wavefont-wmax,rmax,amin,smin.ufo}/glyphs/up.glif (100%) rename sources/{Wavefont-wmax,rmin,amin.ufo => Wavefont-wmax,rmax,amin,smin.ufo}/glyphs/up10.glif (100%) rename sources/{Wavefont-wmax,rmin,amin.ufo => Wavefont-wmax,rmax,amin,smin.ufo}/layercontents.plist (100%) rename sources/{Wavefont-wmax,rmin,amin.ufo => Wavefont-wmax,rmax,amin,smin.ufo}/lib.plist (100%) rename sources/{Wavefont-wmax,rmin,amin.ufo => Wavefont-wmax,rmax,amin,smin.ufo}/metainfo.plist (100%) delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/features.fea delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/fontinfo.plist delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_0.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_1.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_1.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_10.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_10.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_100.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_101.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_102.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_103.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_104.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_105.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_106.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_107.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_108.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_109.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_11.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_11.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_110.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_111.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_112.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_113.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_114.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_115.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_116.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_117.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_118.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_119.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_12.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_12.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_120.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_121.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_122.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_123.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_124.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_125.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_126.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_127.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_13.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_13.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_14.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_14.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_15.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_15.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_16.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_16.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_17.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_17.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_18.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_18.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_19.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_19.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_2.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_2.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_20.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_20.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_21.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_21.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_22.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_22.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_23.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_23.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_24.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_24.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_25.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_25.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_26.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_26.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_27.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_27.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_28.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_28.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_29.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_29.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_3.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_3.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_30.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_30.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_31.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_31.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_32.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_32.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_33.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_33.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_34.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_34.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_35.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_35.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_36.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_36.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_37.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_37.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_38.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_38.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_39.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_39.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_4.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_4.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_40.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_40.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_41.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_42.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_43.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_44.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_45.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_46.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_47.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_48.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_49.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_5.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_5.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_50.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_51.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_52.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_53.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_54.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_55.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_56.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_57.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_58.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_59.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_6.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_6.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_60.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_61.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_62.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_63.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_64.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_65.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_66.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_67.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_68.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_69.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_7.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_7.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_70.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_71.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_72.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_73.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_74.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_75.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_76.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_77.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_78.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_79.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_8.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_8.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_80.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_81.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_82.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_83.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_84.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_85.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_86.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_87.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_88.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_89.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_9.clip.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_9.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_90.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_91.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_92.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_93.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_94.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_95.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_96.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_97.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_98.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/_99.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/cap.glif delete mode 100644 sources/Wavefont-wmax,rmax,amin.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/features.fea create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_0.clip.glif rename sources/{Wavefont-wmax,rmin,amax.ufo => Wavefont-wmax,rmin,amax,smax.ufo}/glyphs/_0.glif (100%) create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/_99.glif rename sources/{Wavefont-wmax,rmin,amax.ufo => Wavefont-wmax,rmin,amax,smax.ufo}/glyphs/_notdef.glif (100%) create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smax.ufo/glyphs/contents.plist rename sources/{Wavefont-wmin,rmax,amax.ufo => Wavefont-wmax,rmin,amax,smax.ufo}/glyphs/down.glif (100%) rename sources/{Wavefont-wmin,rmax,amax.ufo => Wavefont-wmax,rmin,amax,smax.ufo}/glyphs/down10.glif (100%) rename sources/{Wavefont-wmin,rmax,amax.ufo => Wavefont-wmax,rmin,amax,smax.ufo}/glyphs/up.glif (100%) rename sources/{Wavefont-wmin,rmax,amax.ufo => Wavefont-wmax,rmin,amax,smax.ufo}/glyphs/up10.glif (100%) rename sources/{Wavefont-wmin,rmax,amax.ufo => Wavefont-wmax,rmin,amax,smax.ufo}/layercontents.plist (100%) rename sources/{Wavefont-wmin,rmax,amax.ufo => Wavefont-wmax,rmin,amax,smax.ufo}/lib.plist (100%) rename sources/{Wavefont-wmin,rmax,amax.ufo => Wavefont-wmax,rmin,amax,smax.ufo}/metainfo.plist (100%) create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/features.fea create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmax,rmin,amax,smin.ufo/glyphs/contents.plist rename sources/{Wavefont-wmin,rmax,amin.ufo => Wavefont-wmax,rmin,amax,smin.ufo}/glyphs/down.glif (100%) rename sources/{Wavefont-wmin,rmax,amin.ufo => Wavefont-wmax,rmin,amax,smin.ufo}/glyphs/down10.glif (100%) rename sources/{Wavefont-wmin,rmax,amin.ufo => Wavefont-wmax,rmin,amax,smin.ufo}/glyphs/up.glif (100%) rename sources/{Wavefont-wmin,rmax,amin.ufo => Wavefont-wmax,rmin,amax,smin.ufo}/glyphs/up10.glif (100%) rename sources/{Wavefont-wmin,rmax,amin.ufo => Wavefont-wmax,rmin,amax,smin.ufo}/layercontents.plist (100%) rename sources/{Wavefont-wmin,rmax,amin.ufo => Wavefont-wmax,rmin,amax,smin.ufo}/lib.plist (100%) rename sources/{Wavefont-wmin,rmax,amin.ufo => Wavefont-wmax,rmin,amax,smin.ufo}/metainfo.plist (100%) delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/features.fea delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/fontinfo.plist delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_0.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_1.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_1.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_10.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_10.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_100.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_101.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_102.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_103.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_104.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_105.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_106.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_107.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_108.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_109.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_11.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_11.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_110.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_111.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_112.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_113.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_114.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_115.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_116.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_117.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_118.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_119.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_12.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_12.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_120.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_121.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_122.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_123.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_124.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_125.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_126.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_127.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_13.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_13.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_14.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_14.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_15.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_15.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_16.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_16.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_17.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_17.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_18.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_18.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_19.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_19.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_2.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_2.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_20.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_20.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_21.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_21.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_22.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_22.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_23.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_23.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_24.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_24.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_25.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_25.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_26.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_26.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_27.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_27.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_28.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_28.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_29.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_29.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_3.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_3.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_30.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_30.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_31.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_31.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_32.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_32.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_33.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_33.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_34.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_34.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_35.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_35.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_36.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_36.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_37.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_37.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_38.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_38.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_39.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_39.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_4.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_4.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_40.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_40.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_41.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_42.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_43.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_44.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_45.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_46.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_47.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_48.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_49.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_5.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_5.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_50.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_51.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_52.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_53.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_54.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_55.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_56.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_57.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_58.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_59.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_6.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_6.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_60.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_61.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_62.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_63.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_64.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_65.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_66.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_67.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_68.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_69.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_7.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_7.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_70.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_71.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_72.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_73.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_74.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_75.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_76.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_77.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_78.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_79.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_8.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_8.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_80.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_81.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_82.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_83.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_84.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_85.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_86.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_87.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_88.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_89.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_9.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_9.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_90.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_91.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_92.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_93.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_94.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_95.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_96.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_97.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_98.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/_99.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/cap.glif delete mode 100644 sources/Wavefont-wmax,rmin,amax.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/features.fea create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_0.clip.glif rename sources/{Wavefont-wmax,rmin,amin.ufo => Wavefont-wmax,rmin,amin,smax.ufo}/glyphs/_0.glif (100%) create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/_99.glif rename sources/{Wavefont-wmax,rmin,amin.ufo => Wavefont-wmax,rmin,amin,smax.ufo}/glyphs/_notdef.glif (100%) create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smax.ufo/glyphs/contents.plist rename sources/{Wavefont-wmin,rmin,amax.ufo => Wavefont-wmax,rmin,amin,smax.ufo}/glyphs/down.glif (100%) rename sources/{Wavefont-wmin,rmin,amax.ufo => Wavefont-wmax,rmin,amin,smax.ufo}/glyphs/down10.glif (100%) rename sources/{Wavefont-wmin,rmin,amax.ufo => Wavefont-wmax,rmin,amin,smax.ufo}/glyphs/up.glif (100%) rename sources/{Wavefont-wmin,rmin,amax.ufo => Wavefont-wmax,rmin,amin,smax.ufo}/glyphs/up10.glif (100%) rename sources/{Wavefont-wmin,rmin,amax.ufo => Wavefont-wmax,rmin,amin,smax.ufo}/layercontents.plist (100%) rename sources/{Wavefont-wmin,rmin,amax.ufo => Wavefont-wmax,rmin,amin,smax.ufo}/lib.plist (100%) rename sources/{Wavefont-wmin,rmin,amax.ufo => Wavefont-wmax,rmin,amin,smax.ufo}/metainfo.plist (100%) create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/features.fea create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmax,rmin,amin,smin.ufo/glyphs/contents.plist rename sources/{Wavefont-wmin,rmin,amin.ufo => Wavefont-wmax,rmin,amin,smin.ufo}/glyphs/down.glif (100%) rename sources/{Wavefont-wmin,rmin,amin.ufo => Wavefont-wmax,rmin,amin,smin.ufo}/glyphs/down10.glif (100%) rename sources/{Wavefont-wmin,rmin,amin.ufo => Wavefont-wmax,rmin,amin,smin.ufo}/glyphs/up.glif (100%) rename sources/{Wavefont-wmin,rmin,amin.ufo => Wavefont-wmax,rmin,amin,smin.ufo}/glyphs/up10.glif (100%) rename sources/{Wavefont-wmin,rmin,amin.ufo => Wavefont-wmax,rmin,amin,smin.ufo}/layercontents.plist (100%) rename sources/{Wavefont-wmin,rmin,amin.ufo => Wavefont-wmax,rmin,amin,smin.ufo}/lib.plist (100%) rename sources/{Wavefont-wmin,rmin,amin.ufo => Wavefont-wmax,rmin,amin,smin.ufo}/metainfo.plist (100%) delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/features.fea delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/fontinfo.plist delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_0.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_1.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_1.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_10.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_10.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_100.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_101.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_102.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_103.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_104.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_105.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_106.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_107.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_108.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_109.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_11.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_11.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_110.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_111.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_112.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_113.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_114.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_115.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_116.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_117.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_118.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_119.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_12.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_12.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_120.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_121.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_122.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_123.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_124.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_125.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_126.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_127.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_13.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_13.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_14.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_14.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_15.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_15.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_16.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_16.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_17.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_17.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_18.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_18.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_19.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_19.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_2.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_2.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_20.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_20.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_21.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_21.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_22.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_22.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_23.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_23.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_24.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_24.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_25.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_25.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_26.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_26.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_27.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_27.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_28.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_28.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_29.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_29.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_3.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_3.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_30.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_30.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_31.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_31.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_32.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_32.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_33.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_33.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_34.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_34.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_35.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_35.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_36.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_36.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_37.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_37.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_38.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_38.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_39.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_39.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_4.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_4.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_40.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_40.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_41.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_42.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_43.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_44.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_45.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_46.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_47.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_48.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_49.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_5.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_5.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_50.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_51.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_52.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_53.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_54.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_55.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_56.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_57.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_58.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_59.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_6.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_6.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_60.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_61.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_62.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_63.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_64.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_65.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_66.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_67.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_68.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_69.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_7.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_7.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_70.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_71.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_72.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_73.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_74.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_75.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_76.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_77.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_78.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_79.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_8.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_8.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_80.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_81.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_82.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_83.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_84.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_85.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_86.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_87.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_88.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_89.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_9.clip.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_9.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_90.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_91.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_92.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_93.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_94.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_95.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_96.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_97.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_98.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/_99.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/cap.glif delete mode 100644 sources/Wavefont-wmax,rmin,amin.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/features.fea create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/down.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/down10.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/up.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/glyphs/up10.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/layercontents.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/lib.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smax.ufo/metainfo.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/features.fea create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/down.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/down10.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/up.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/glyphs/up10.glif create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/layercontents.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/lib.plist create mode 100644 sources/Wavefont-wmin,rmax,amax,smin.ufo/metainfo.plist delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/features.fea delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/fontinfo.plist delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_0.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_0.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_1.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_1.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_10.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_10.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_100.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_101.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_102.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_103.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_104.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_105.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_106.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_107.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_108.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_109.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_11.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_11.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_110.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_111.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_112.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_113.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_114.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_115.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_116.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_117.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_118.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_119.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_12.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_12.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_120.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_121.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_122.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_123.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_124.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_125.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_126.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_127.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_13.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_13.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_14.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_14.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_15.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_15.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_16.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_16.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_17.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_17.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_18.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_18.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_19.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_19.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_2.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_2.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_20.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_20.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_21.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_21.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_22.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_22.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_23.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_23.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_24.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_24.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_25.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_25.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_26.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_26.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_27.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_27.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_28.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_28.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_29.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_29.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_3.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_3.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_30.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_30.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_31.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_31.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_32.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_32.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_33.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_33.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_34.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_34.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_35.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_35.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_36.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_36.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_37.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_37.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_38.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_38.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_39.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_39.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_4.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_4.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_40.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_40.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_41.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_42.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_43.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_44.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_45.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_46.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_47.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_48.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_49.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_5.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_5.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_50.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_51.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_52.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_53.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_54.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_55.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_56.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_57.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_58.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_59.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_6.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_6.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_60.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_61.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_62.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_63.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_64.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_65.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_66.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_67.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_68.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_69.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_7.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_7.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_70.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_71.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_72.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_73.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_74.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_75.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_76.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_77.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_78.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_79.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_8.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_8.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_80.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_81.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_82.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_83.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_84.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_85.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_86.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_87.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_88.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_89.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_9.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_9.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_90.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_91.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_92.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_93.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_94.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_95.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_96.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_97.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_98.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_99.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/_notdef.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/cap.glif delete mode 100644 sources/Wavefont-wmin,rmax,amax.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/features.fea create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/down.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/down10.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/up.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/glyphs/up10.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/layercontents.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/lib.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smax.ufo/metainfo.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/features.fea create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/down.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/down10.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/up.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/glyphs/up10.glif create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/layercontents.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/lib.plist create mode 100644 sources/Wavefont-wmin,rmax,amin,smin.ufo/metainfo.plist delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/features.fea delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/fontinfo.plist delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_0.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_0.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_1.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_1.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_10.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_10.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_100.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_101.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_102.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_103.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_104.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_105.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_106.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_107.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_108.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_109.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_11.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_11.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_110.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_111.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_112.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_113.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_114.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_115.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_116.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_117.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_118.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_119.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_12.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_12.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_120.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_121.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_122.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_123.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_124.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_125.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_126.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_127.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_13.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_13.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_14.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_14.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_15.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_15.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_16.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_16.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_17.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_17.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_18.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_18.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_19.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_19.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_2.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_2.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_20.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_20.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_21.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_21.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_22.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_22.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_23.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_23.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_24.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_24.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_25.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_25.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_26.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_26.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_27.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_27.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_28.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_28.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_29.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_29.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_3.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_3.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_30.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_30.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_31.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_31.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_32.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_32.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_33.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_33.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_34.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_34.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_35.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_35.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_36.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_36.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_37.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_37.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_38.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_38.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_39.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_39.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_4.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_4.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_40.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_40.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_41.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_42.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_43.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_44.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_45.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_46.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_47.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_48.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_49.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_5.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_5.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_50.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_51.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_52.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_53.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_54.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_55.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_56.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_57.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_58.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_59.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_6.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_6.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_60.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_61.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_62.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_63.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_64.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_65.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_66.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_67.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_68.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_69.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_7.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_7.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_70.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_71.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_72.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_73.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_74.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_75.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_76.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_77.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_78.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_79.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_8.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_8.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_80.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_81.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_82.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_83.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_84.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_85.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_86.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_87.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_88.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_89.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_9.clip.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_9.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_90.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_91.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_92.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_93.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_94.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_95.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_96.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_97.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_98.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_99.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/_notdef.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/cap.glif delete mode 100644 sources/Wavefont-wmin,rmax,amin.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/features.fea create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/down.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/down10.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/up.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/glyphs/up10.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/layercontents.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/lib.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smax.ufo/metainfo.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/features.fea create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/down.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/down10.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/up.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/glyphs/up10.glif create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/layercontents.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/lib.plist create mode 100644 sources/Wavefont-wmin,rmin,amax,smin.ufo/metainfo.plist delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/features.fea delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/fontinfo.plist delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_0.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_0.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_1.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_1.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_10.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_10.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_100.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_101.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_102.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_103.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_104.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_105.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_106.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_107.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_108.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_109.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_11.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_11.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_110.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_111.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_112.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_113.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_114.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_115.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_116.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_117.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_118.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_119.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_12.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_12.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_120.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_121.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_122.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_123.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_124.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_125.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_126.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_127.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_13.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_13.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_14.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_14.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_15.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_15.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_16.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_16.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_17.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_17.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_18.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_18.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_19.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_19.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_2.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_2.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_20.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_20.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_21.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_21.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_22.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_22.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_23.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_23.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_24.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_24.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_25.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_25.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_26.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_26.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_27.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_27.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_28.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_28.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_29.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_29.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_3.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_3.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_30.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_30.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_31.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_31.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_32.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_32.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_33.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_33.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_34.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_34.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_35.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_35.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_36.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_36.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_37.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_37.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_38.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_38.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_39.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_39.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_4.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_4.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_40.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_40.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_41.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_42.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_43.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_44.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_45.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_46.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_47.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_48.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_49.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_5.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_5.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_50.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_51.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_52.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_53.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_54.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_55.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_56.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_57.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_58.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_59.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_6.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_6.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_60.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_61.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_62.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_63.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_64.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_65.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_66.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_67.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_68.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_69.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_7.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_7.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_70.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_71.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_72.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_73.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_74.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_75.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_76.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_77.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_78.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_79.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_8.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_8.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_80.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_81.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_82.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_83.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_84.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_85.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_86.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_87.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_88.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_89.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_9.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_9.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_90.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_91.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_92.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_93.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_94.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_95.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_96.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_97.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_98.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_99.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/_notdef.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/cap.glif delete mode 100644 sources/Wavefont-wmin,rmin,amax.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/features.fea create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/down.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/down10.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/up.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/glyphs/up10.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/layercontents.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/lib.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smax.ufo/metainfo.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/features.fea create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/fontinfo.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_0.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_0.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_1.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_1.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_10.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_10.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_100.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_101.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_102.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_103.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_104.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_105.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_106.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_107.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_108.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_109.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_11.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_11.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_110.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_111.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_112.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_113.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_114.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_115.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_116.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_117.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_118.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_119.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_12.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_12.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_120.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_121.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_122.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_123.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_124.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_125.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_126.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_127.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_13.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_13.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_14.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_14.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_15.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_15.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_16.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_16.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_17.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_17.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_18.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_18.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_19.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_19.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_2.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_2.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_20.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_20.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_21.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_21.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_22.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_22.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_23.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_23.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_24.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_24.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_25.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_25.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_26.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_27.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_28.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_29.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_3.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_3.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_30.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_31.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_32.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_33.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_34.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_35.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_36.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_37.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_38.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_39.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_4.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_4.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_40.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_41.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_42.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_43.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_44.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_45.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_46.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_47.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_48.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_49.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_5.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_5.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_50.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_51.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_52.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_53.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_54.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_55.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_56.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_57.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_58.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_59.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_6.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_6.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_60.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_61.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_62.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_63.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_64.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_65.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_66.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_67.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_68.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_69.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_7.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_7.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_70.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_71.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_72.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_73.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_74.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_75.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_76.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_77.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_78.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_79.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_8.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_8.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_80.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_81.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_82.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_83.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_84.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_85.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_86.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_87.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_88.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_89.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_9.clip.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_9.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_90.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_91.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_92.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_93.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_94.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_95.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_96.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_97.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_98.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_99.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/_notdef.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/cap.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/contents.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/down.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/down10.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/up.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/glyphs/up10.glif create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/layercontents.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/lib.plist create mode 100644 sources/Wavefont-wmin,rmin,amin,smin.ufo/metainfo.plist delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/features.fea delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/fontinfo.plist delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_0.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_0.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_1.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_1.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_10.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_10.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_100.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_101.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_102.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_103.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_104.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_105.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_106.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_107.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_108.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_109.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_11.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_11.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_110.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_111.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_112.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_113.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_114.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_115.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_116.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_117.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_118.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_119.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_12.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_12.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_120.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_121.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_122.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_123.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_124.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_125.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_126.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_127.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_13.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_13.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_14.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_14.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_15.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_15.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_16.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_16.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_17.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_17.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_18.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_18.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_19.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_19.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_2.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_2.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_20.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_20.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_21.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_21.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_22.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_22.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_23.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_23.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_24.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_24.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_25.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_25.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_26.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_26.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_27.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_27.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_28.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_28.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_29.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_29.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_3.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_3.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_30.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_30.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_31.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_31.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_32.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_32.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_33.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_33.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_34.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_34.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_35.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_35.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_36.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_36.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_37.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_37.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_38.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_38.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_39.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_39.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_4.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_4.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_40.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_40.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_41.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_42.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_43.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_44.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_45.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_46.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_47.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_48.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_49.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_5.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_5.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_50.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_51.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_52.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_53.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_54.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_55.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_56.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_57.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_58.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_59.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_6.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_6.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_60.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_61.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_62.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_63.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_64.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_65.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_66.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_67.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_68.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_69.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_7.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_7.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_70.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_71.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_72.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_73.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_74.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_75.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_76.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_77.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_78.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_79.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_8.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_8.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_80.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_81.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_82.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_83.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_84.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_85.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_86.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_87.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_88.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_89.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_9.clip.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_9.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_90.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_91.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_92.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_93.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_94.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_95.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_96.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_97.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_98.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_99.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/_notdef.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/cap.glif delete mode 100644 sources/Wavefont-wmin,rmin,amin.ufo/glyphs/contents.plist diff --git a/fonts/otf/Wavefont-Black.otf b/fonts/otf/Wavefont-Black.otf index 5a6e1e67a1dd6a9744d33518014527d5caee1d76..01461fb87ad2fde97d55246e97281d0a1c876e4d 100644 GIT binary patch delta 1853 zcmXYye{5S<6~~|N`{9>o<2LKurtfw4MeUrHX3N%4Sb-6ZvUb%Nq_YFsqBKrP+NNpk z8P`qxY{$Rj_;+kS+wrewJ3o}!U6ytA)TCWgL6Xr8p-LSEAwUQagMpwyFq)`FfQ|CU zy13zMJn>5cLFiiC zN_488X?NX!@Lcr8y|QChYXmuX=Jdec=0A5u4SS`>mJmerZOv(;4k<>b4I@H^q{}+OypVl1YckI3NmS$q2uStrv07E`R-AF^_gvcyzdusCrvUyXA zY`zaRZ=svZSWqeoNYOx5xzV!+dx$@(Zj0?{Jonfh?E8(#OyzInVUheOco`@`H~1bH z0vb>OKLj6v`;`OKmqDw#{n@tui|2Lf_Cs6RzNKH-(!*Q&MZQNmu=|+Npg;Ze#q;L| z4YjpI<5+DGQ80xR`Mc61woQNl5^M)epcxzh&w?Z11#qG^x(A#EI$#2B5C$nQ4d%gh z@B{E;a3A~zdGGx7{m@>?b!3!aqJ}4ZNmmIEoQ`=SP)BMMeGXp9(Ei15c?SWHTFmB z@7N<8!)16Az88NA{}TQJ{xaT$_u_-N9=G5gJc4KNS$qLs!dLL0;6KNIi~j}x4F3;7 z5|0r(h;I@u;(g+u;#P6LI4k}sDIvc_M#-Nw>~1*KFxBu0^?B+7^|>i(hPo@kBpni? z~iRVb@G*!BcwQ)|!kTVcgoI-_o(7EA9|Qm{XzeRq+r zDixI7;qy9JZzADKGRZ_JoM6KaN65~|o}>m0gXhigZS(ZtKnrzkdg1LXJfAfzT%)Te z6qI>%e9X#@rPAYBCYzp!rr4-;bi!Qc&KWOiIauQI7tgg&@8oS)N&?gh#w+j8)eZ$^ z&OV6Jd+n9i42>ta1mo295QP!ad3vqYKK~=`D|%MfR_YwX`ZegR#2CR-BuH8 z%@y5K%v3R!%CRZaaO`rO(^z%G94vAvou-8`&g7sa=bWCUt2-5xMmIWaWQX%}qh+Q%moD1!Y|*Go zYwF--*Rah5Cr$kD{z})SAl{W)NneE)d^*8fmtXEa{@cZX@o&Ww!SVudtt<; zF|nH5TO(JQt8W#`Iks%NP&mu16P(B7w7|F}V&draW@@8nzr5N*2$5Vo1DzR9PN4Vi ztGNlek|-pynMA=+FlR;*)`$^@+2R;UjAShZ2dN~o6PZ{V zy3^yCEPZGn@7a0iMA||26X|d|G6_AC-gKJ&YQ1+^t|bx)eln8sq+FAZ1X&_%KHIn* zPS`^>8-1^tDiIEc%jU60th_DZAhrB|YcK5Z*}YB}c82VH+peasC&O{*jr)=by0hMN zSw2cc_%I)id*fc-!;@*k>38{DFysolob+-tl_oqcugmKUJHxJsiyY<0cXdd^?$8+N zB4WW6f3F`vm-)i+dOSoc^D(dF$u zrJ_}fr&hhtQ@0|-N_gqUDlOXp8#?(25gQN07}c1%M@cIedsfGwcRb)_3WR$i;AU2% zi#ONkHT6wZ6ow}PVMewg-Z05EL?jZh`6H~#t?qu6es!^X)eZd~Pr$>JiJAmG>}qWB z)(7+l>RYN94A!b6HB`FcmiH5}sNWxBmCnA`Ptu*&yVso1?;i8JnF`@{2ZLkmTKxL0 zJM@qGmX&cBjMnz9k&PQ+`RhcS_xpHOY43ZjvqpBkwq}Pum&@;DmI>|$?Lc8 z(0BT7E0Zw9^TBux?Ros6JhlUoibT>K3{nF zJ6D#LR`}&62wSOoMj}2)N$R<}4<#Et>+(7zsXS^5$r=mw4+;VQKO%%c3YFCUKRm(f LUX=2dW90t;c5uE^ delta 1448 zcmXApZERCz6vuDxTf1jv8%no%%kG^(3k-vT`!En@f;jnL95OJ*%uU=Fvux`&y0*8s zYkT{;vi0@0UEAB+cHLOFF~*<>ixFc0h4{f3Ln0cZMnU<2OiYAj#b~P^&T~%w&+|L~ z=X^PSugE?s@>g!JegZ*I-78H^wN<^he}N#$3IUiAV{>Y_o%)fiU%_Fb*~x=FT{|ja3UgH z6aMjGd-krSU?ILN^gRgyjy17;)W}l^nEkQ3|bm2(Mg1 z#-yTADKeTr^tg3B`UqQHC=aeLzyH+g(po5ydnl2lB6UbT(uf>D4k4{b7t)Uy5If>UqDTgrM=l|sB3~f4kROnH$e+j)6h|vi0^Nje zM;p+6=YN0>#@koHh~V!2P%e~XENQLN^l{wFwc`JUUN1_ zw;2)CMw3Cwq=7!MUV)E-R4gg#OGqBHyS0 zI@)11QfypsrsPS%ALgkLLkILlP{s6}q{&H|?^7wke0*j~AO{8G%si2=R{)LHZel1C zpSEY@6X{?yL5&-<+)$D0HT7$0GOdpe^eVw@^mHmo>IBpDERnBMfC00HHPRF#WUQy< zQ<)GiP;pul9xQ@t%SoCh1v)a=uLRSPsf0ip1j}TW$k!@>dcaK6lwLS($;z`+k)%Kg z^x(L<$PHRGMgtkALqmf~Fcq4J3#2h&%}f#bN(JcYAJ)>;kT7kUlh0^Xv?jE|Iruv0BdO^N0Crk^}G~FX~%gdIRWyenF%)JJx zH*rRHUcPuHH7iiF^odlLd>N;mv~8H=jD7=6EZ2g^t(#@}R$TBWxHxHxIR$~(ys@B$ zWi5Cz#Pi`4n`C%hSaKa_T#VgB28Vq{hPYb`uHibCVOV`w$1^Fbqy^`F@j#4pL|r^j z?AXZtUb#aaWhI?>%p3EMlg{yxSd4h7*n3u{#zWk$s+x){Ze?v|r^#>P%pq2y=DMmB z9Tqn`VkNz-hh>QywIGGttxk5t;~}?G!hM{N^Mu?X z7w6<8G2D8}=C+X@+nCKtT&V?7++}mw+*Xg(XY<)4ChkF1qts*fIwUqcI2ITSat+nH z(J`mQ#c8Xx4en9*DZ(%IkB*L#Y|&xeBU$iiNGcNHYh=}w;<+6SdzzZX+W=WAZn@lk zjVxQPyt;Jx8rMjW)Z^A=*)~urt^=jTyP{5(UTs@C+|u55xD?762v6DCSaB6X@P8qK Va443m-g>7-vLyP)v50!0e*qO57$g7y diff --git a/fonts/otf/Wavefont-Bold.otf b/fonts/otf/Wavefont-Bold.otf index c54a353067f318f3bd180fd72d47ff246135ffa3..c8c78f03ff3dbad3b0c4aea6caeef7f3c335cd8f 100644 GIT binary patch delta 3612 zcmXxn4QvzV83*vY^ZAXrWG-|#z&W}zl&=Lufl)+PhFS`&qO2gwP(i4re1?D>2#KA< zan7;N=WqLb=h#UcVkZP*2MDx56=O|Xp=zKCu~Aj1Dy(8?P{vThDu&a9kv;c{*?VR{w z;w0gspTMz*ptLUhK#o2)u>y1j_ID93{7rb*^N$jO*hCOH*rJIm)ThKGf}ldwd$9dB z)S*9+zb#oLp^kNw?`X_4iQ{Ct=9VsKjWxCoW#VHl^6aCnu7nF+0z8A;FrVz)6 zJ~u2QO{=N()MjcswTr5ztke+o1$BkGI`nkXtJH!ImM&hj`_O^IA1qz+ye@rSfBn2J zdtP5r7njuv?L>}(v!>wu5Mdw~;unOGm`ki8wh}f%BD#rBh-<_>;y&?+7$phPKu#v7 zlNNG5xtLr*t|m8-TgjbdHCactkO5L5yU3H|Ir1X;C3%hfmb^ngB%e?O#ZXfzj+##` zrB+hws7-L@dng;#KzS%3LZzr2H9(!GK7&8vYw8wtk9tIn>1dr%H(fVNw@|lS_quMq zZj0`HU6rm@*Q}FtvaVCtryJB=&|T79)!oqD);-WY);*&Q^ow)_J(pfg|At;ezeB%A z@1hUUcG^vc=p@}u=jo5>Pw79?f2F^p|3UvqkLoEwU#2hDTlAIsW%^b6_4=*)U3#0o zMt@TOH#8N!jl$?!$&`{UCEgNW$=Q!U@#Df24nnP6pKb#-c@t4)#8>h_}MjfeCM~6G*;*EvNCa0^V$=Tt`@I$H#_7+fgCez*R z%rx-Ep_``q#>V>kV~st0Ry|{!CbXfxY__k@k*(#8^O#von}une2{mhB99k_{7^_x? zEX;1L4qKRQTD@#xHfr^{g;}fBn-=CZt=_dTOSC#-VdiPINLiS13aboMhE)zK#}X_+ z3uYy#5^EV~8P+P$Dy+9aZ((f)ZN}OG+JUtXv=8er=rC3js0m91iC8gE467Z~K9dpP z410mSxOp0M8tW6#Cs<#AzQFnl^cB`Opl`6g2YruqA9Nq8pw(C#KpU{Og0^Dq1ntDC232F#f$FeYKrL7SPykB- zDOg^vg1*GM2D*mzE$CaUJD@vQ4?z#Ho`9Zc`kAmW|0S>( z5Q8-pG!-N;KXX71H|K-qV=V!=6V`UncC0<1JypbW@)@Pv4u&#ivV0{hx8tWG57S=t`J*-EdM_6N^F->E% zg?UC}89_#@=@x-`HXU;oG-qKg1TDl`4qA@&I_Pz*^`P}wTR>Z|-Uq#pRRyZTss+_z zHG`V5B#?w9gJey@SSPR(H~T<+Sc9NJtP7wESeHPTu&#oxV%-4Uz`6~(jr9QZ0P8X6 zG1fECGffqAorS3w#}}Z2Zm}>z#W=n$6*SzQ73277RnTyQR*b_nG|pxmLX*?WWxVMo z$6O|x?#if~Qx&?h?2W6Q~s1$NTuQll}~uxakrLp`2??rQ#}d6HJ9l~q}3$nP5ROu z?AkeuOYnJGc~4u~*J18RCz5S^vQ-XliZt^37^j>oN1OuC`8<@ANjcHJXQ!C+Lwx zP8Opc4+{_7k!_}VC>c%43MVPSWRl(X5;M|fav(*PmAL9xB}J4CStJIKH^uPiE(0S=EU(F7Mv1Qmtd{SqULWKFFo7LUo%L@*JM193wel0q=Jh!l|| z7M}lYDBurBL0{AtlVW~DE0QBHxR4x@W!4I(Q84*YBnBfMiicvMm?4hDa6BY(kwDlV zVBu8~N1*@=f5aaNL;?msQo{a-!i8c&I38mi@Et>@5Q;>i(P$_VWg`-j!r?FnFQW(w zg@VCgBot&rGLp4!>r3!T9l2!cuRmTB9{#Z|Mo;6-B zmTA-E4~G=qCfSc#*+aRbc|R8l_`?Cg3^NoDM?^j!&mA9N3-&%+oQuTb;h5QYwODSl zB3TZFWZov)YY#!PHZO7^3FgOKK#~-RNPJ$&^$oBC5LCE`3^QXkUN2fqyOE-Vf(hQ{ zu^&0e9?Tudd$^!a42k9;B#M!!kIyG_Cxlb%DfS6cW&S9ahmdlr&ioYJ0&XUxWt;tu#XIMyY3J9%rP~1HpyzU7CiM4d(LsndW=&$yX0eLR5)-M-e0maN_j$?8I*z_mIXd=7Jw zLXL(+o0Bgb%bxy-{m5||vTd2}MAmF9QpLlj@iNqt6Wv|B)!{gxg%1=QoV&>`)|-oE zsNSxmn)pICdq&Hiv1YkcS5E1HY)P@nG+vI5_lPasyw&cg+QaV2Ru$}AOGCYQ)GQRs z(b0OPy@4;}vV$M9A3FxEIj+6CM>!7RvZ81jx1bZpy{;^8t#|C-&F+G5J?C;9^&T-7 zE$GNmwZp*|da{G(*&)YSYY*3vJ+7XB?37~6G+v4NPk5X;-dg9_zYDVa3w4~+e#BE_ zE>@zNBgu?l=L@~rv*+3K5botNxf98L2=AEs#H9R^C?iSq3)6INcIC^jy!z&bk_8M` zT5`Cz?j&a%F7NN@J;|5;iZRY-xDf={Hf$pCnCmv4xKoA$m3Ew$7O8gHVkR?_C delta 2834 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 J9SyC~{TC$TSEm2~ delta 2899 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 diff --git a/fonts/otf/Wavefont-Light.otf b/fonts/otf/Wavefont-Light.otf index c8c950c444f4b9191aa48a270b2cea2222c09abb..77ec2573cae8bfc0a1c223a060d8eac37b218e57 100644 GIT binary patch delta 3635 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 ZH7+*JH_kQAG)}W;HFOL&^h53p`Y(sLvOE9) diff --git a/fonts/otf/Wavefont-Medium.otf b/fonts/otf/Wavefont-Medium.otf index a6346146511f496ca6b96123200e7b34c2899486..9d4834066d06214f2e4afdef4408ce98efdf4e8e 100644 GIT binary patch delta 3626 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 Q{L0@)9>~>-d_Qw{%$9~rSCO5) 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 JKFo&D{{TdGE}sAZ delta 2704 zcmXxm3zXbc83*utZ)Wdor%SMf(9>j0+HNUAd1z0m$jefCfU4LYdaCtV;ZQ-P+Opey zOlCHjXXcej=9Sr*%sytfT|vP1xD+UgP(h0*3W}DON>#8>5ER>4T0G;;2To3YH{Z?t zlgYWclRT5dPbRQ^&c(uG2%!tEz3#dtcCopI6in>KD%trt!qB)o~xO1g3L zC99&ZywxhMUv}l%|FA^&?b~m@b*a+8Z2M)luDP9c_>OhfB81Oo_43O!CU<+ z&!3w`bNBb4xdUYG0dDR=U%m(DdbnG*y%F@C>^gPu%wn+T?S-cvUx3DDU+i9u=UqkO zq)c2gG20vX6e;I>c4{TmAnfFXora=r6hMoSh*qJ`pj%J~l~4^eQ47tWd(eJ#06mNz zMNgn#qTixFpqJ25^bhnFdKbNiI=BnZ#|!Wx{88MC&&QYGOYs%>8hkyz5pTv{!rSn6 z{2jat58?=p;|#WN6}z~FzmK*1@GL%vAH_e%zrxSrBlu7FZ}@fmHa>w*6HNT%400A( zOcZi1SxG)YK1r@3*OConBiTZ}LT)CvksYLu3=@qcNsbgrjf|0LayQvW4v-&{L*y`d zn*5%;K>k8rCCACXNSpkZF=eBcqa67nr zxYvCb`o8B&`dYphx)yY8=!$kd-1RQKkZz~r^oW0<|3-hBU-JLu(2UT~YT>Y^g_j3- z-mVJiOeUQ+GX>>AS}@H*A!DW$zB(bKQbsamr)=duTC{At9OoBm)3jVFmCK1zT;V5X z1w9ti^-9c9>eQ)J94A)M6@JenLPXai5l62p7Ogu@y{v@Mw2~3zq~mRs^9~0e&3399$269^4Av0^R`*fI653E8sYI7x*La zC*Uu@XTTT1zcaN!`=3zEdCn2A2RsK{0$u>F2CoKh0B-`n3VsvZ35LJ~SO7=CDezwK z0Z(o2F({q_p9B949s~akzVG=S1wR6c;BxR{@G@{6_&M+k;5Wc;gZ;HO_$GML^ArLD;Mt%Iehgd%UI|_YZUVmy-l{?KU2q7DfqBpYC&3?p z_k%wLp9Fsgz6`zwz5|}}4ElC{(1bo{U_^pG7?PlmjS0K|f<73Ppbv&6=!0=5(QJk->3lk$$!EF^TF9}0oHcW1 z!8?YrEMWN!zttNs{HEW`<#IBA_hBJTMBEEKpfl{obVo@xN}LBYc|HM^gz$Q8j&NHwzBAnw-!_QW5D0jf~hOU2$v9 zcuQ=tU`;MLqjp{5pKUJ@E~RcG8LKJkh(72A2i*}lriGKLq#dPdxLDB?chs5ik`wBv zT&XpRuEhVbeSxr&jx`hdsFxh*7yF$7mefZ=iDBtD9S)V85idA7B~Iy+Ea;3jOJfrM zQhT+qlunGtwYm}tM+f@EzUn|TENhXW_@H!x4i1%T5vAFvPEKp$baXP*kZbkv@`S{{ z(!N?a-A!AQu}DJ+snOkDbazvgBjJJAZmHc(cMnwRVWsI-ThlDs3b}HHTQwfEl{kz0nEE|%CLw)*AsU4&{`<$_m(ri|z_KJI1wkeM_r=1yzKXmpF?ofDmRI>$S&b&hsk?i@krA>2vs H_nGK_IJ2~W diff --git a/fonts/otf/Wavefont-SemiBold.otf b/fonts/otf/Wavefont-SemiBold.otf index ccd2be6f588738758918c363b88eb1be8da87030..c436b42f64bcab611063f0601ec3fb93f191b1eb 100644 GIT binary patch delta 3678 zcmXxn3v3j19>DSc%ufGZro9z7rs~XQW_gGR9&%Vbj&OQMr^gO6wfYLF21kTYVC-!vb@qG=UH`3-;%2-`Q$GM@zK` z)tra5)jMCbG@$`?s9LVAhU4Xkf=?ZVf2{k%%bV|5c@^n&7hwgRlRnMdp1q~_O2?6n zxd!_f(b_8fK*t;^EeB1&@ngtF&O{E~{wPOi4MGF3$Dj#%1Db{q9e|0@lQ75EQ~vVb zESh`+O}<%)CjUuK9@S00#RMyvzPA)BQ7zOydkRJU(q&HN`zf zKS8ghH_}_^I(jEPPQOooM4ue5Wq(gE+Prkh;=k6v+_ZV=Z*R|~x95YmXZ7v5EZ$Ms zE@#jH4VO*B1!AN}EV>ijg_fXI=mlg!Q8b1Qp(E%Rnm{Mf7wBtr5nV=;6rxya79~;( zsHN0Os+L+qZKSqR4U~m)Qb8(34N&{2*QvLu3F;JembyS)rf$#-ZJ_U>=g{}l57B>w z>wkuRp59K&yXY?3Lr3XedN+NLK0?0>f68a{*YtPvPxQ|^y>6z?sGF}_qFbS>(XG~P z&~4Gx>)Le=T|k%6<#l7a*K|j9ALvf%&gjnTF6ky2nyF-}7!$LQsb(H#RxxXtP0Ti? ziRob6Oqj_qL(Bo@FmsGK&YWhxVlK+e73OA{zHC;RsqFr;#Oun>wWrn^f#t0o7OaK|FjG29QJv(m;KCO`ej?dTC=uX zE}PAX217K-`TTyLFXRtP@8EDK6b}1CKFN?Qa2}6W@yJn6RQd;2BhjepjVO|#cQ5C1 zyIroBJ1+el$78X0+#PdChQc`Ka5^21gfk@#<5VJ%N;wk_$*}t^&gO8~Y$-=p%HnJ) zmCZU*Hp#H}L$1?i@950h`lJZ%&t&`h?U@eAFo#u5tTG!eyU)aS&XxfqCbn5yc*VrN zq|G->>~q?D&&00N=Eo-XaczEXVjt1wITO1~o8Oz*McTY-VrOf!s5h}wdZL-2nM6jA zk!U_>KG71;5~39{a0OuvsD@}YXf@FW&<3I{pe;o8pn9TqP&<(W`j`e5>!c4 z1*#%4flNdTK?{khLDe$h!@!4$R)JO#tp%+m+63A}v<)6Ep z4--uXO()_(JkdPRJfg**#hT>n%YnWErFtweT^ zoyZ6B5ye0;qJB_6(H_tqqC=oV_@Ch$$N_&(@;qEA4d5Pbpqg6JF2H$*>xejvIA zx~Ay{GO<4+A{N9F%>vCL50(~v z;#YhgG3*H`%Dt=_Qo~Wv7xk+u|MESoqg!z*l2c78DIt|q6RMO@x>bi@I1%R@I1&y= zLQ#Lz7x9MmDeMivCI-Dhua_S-v9RFtdHu2{Wj=c%$N6wD z6byy=a3B;2iDB&N32CQr&tf#F?alFq6XRUo)@O}~ z@!(vx6G#0$fv9Bl+Bz+~CEJ4S0kR?DYhLUMZ($`wM)*mb1!HF&K#iqk`eBAGw#Xss{Y3WO3Q8?R;Mm@wnd?lPpfVrHyaPSn^KM z=XUvB!W-D-3WeQLK9R`}@`LugB_W1m@laead|0gH*2y@T^n2oxrQ2?9*TxWGb8%44)QF+#@)f@w!uz#cprk#ml>(w2N+s-D?v*$2NN; z=8*E4%)oAbH-9L(TG_gb-<4^F&?$F$I)!t%vn!gAwQxua zhagO(d!v1V;mcw*w+QF@mF|pW>9V&r^UV-;iQV=N#VUL+V{3<+v`hKk%+Lrw0%fn5 z%=D`{!SHqQVQw}q%bS!6N-A=W{zh%r9yvtw+yYk+uSc^`U>$u!SG#i zEjKk24-Y!K`n9&Xk#9^lL)+ES=4=s)GjU5>qPIh9M@IQkc?8nl{=vksVED1PiJLOw zk>T!+oMg7j%?*4*x~X6lJFP9<%|g+Ln_827R;iFnkL=~gAkB&Wa&9;|A{c%uZsVrr zv)r_k-wD6hESk-Y_MJj;3EtV5DVU`~A-!iWzZcqqSSXBU_Ci}O7dyDA75KoI zt!+Sy8|(S{bR)!V?G3g%p|}FqHDm|dwRm(NzfT^8cyM4WdjR6fqMMtl!3XzswGK+= zHo2jm-;r)8w2Lim^|tLou?BCi&knaqg@N?gerU(cgW}NOzTSh-&M1btsnz(9e4w*= zh{QWc+$J`+)^%Vk#qp;3_dT%e zkB^rxWW|bd?a@~>?61-uf29ieZ^BnBV8s)-;y!lAehxkjd=K*^t~jxuTgbxKXa4f2 zT#>V7tyY`OS~31)RnRb_K;EFVH!bb;1f#2}??GRBPyw?R|NZk_bs zb~nBA@4feb`akL3(^>j)8owRK*3xU1-iHvn^3F}0S{{A1J%~`#%Lpyf?|xwOL!r#? zE+DkDAEB%0=7+AmPN{wPR`#yeTh>S1jHb>fw{~29fAMX%ecJt9-{}S#mR`IAA-u%x zw{>>y?MJV>Ewo;9V;j1*_U}TY*+c8(4R5%?Muc4%Oh2CeTI`9%w|s&a=6&z%Gw)w9 z@!z_J(8VLD!*|Z@Q$)O|d$@VN;}>sqTOICr+0~or|Bpt59zbZ+4f#+9`6g;Wi0E#O z(7kS5e*`BRue#!V9i4x1Av*tka{dH!{v}^}Ax9tI=)fQ4~NbI*3l7 zH_?0OGmLNpX7OUY1TV)TUWwP>FXAuZoAB*;Bfb}Z9e)FV2XDjMaX0S8Av}Z=*uV}h z;tD>DpT#fWm+&ZP;1BUXu>2{$NE%2pxs)s;Umz>V735m-WpXoF zPwpo7lZVJ-eoP zJ|Ukmm}z7dF_$sR8HriNT*a(qZeVU@?qt5gY-S!|zRhf9o?^O~JppDPBQtR(#blWR zbC5aA9A)avi_Ay9t9_lmao@WQs~fgA9Buf0!)Z$C?X;i1KtE_)+4y+laO0a?%l}F{ z%UQ#`mP~4zku;^V)HDp!Od6WR4Oe(oO~h48wWL|+IJa#140UYVabk8<;wp7Mq9~C_ zPRUEBoHN`qd72jU`C>7W4@=zSDLxb)90(P|C8p-_K+DRfYp zqz6l-g9k&Ueu=Bk^1b`^_4XdvSCuNXdf-5{y6-@*#GO3L_XLAIJ(b|NG)%`UmGSXl zrAOlCrum89YWJ?az1_PG?L9J4J#<7Cxy#w%7WQ(s;xXw__n7uLv7g&&SRc{ z3&Eve3wR~C4!jM#2Ye8G9Q+=*3zP?-ih(9L0v-a7f+xV2!C!!HgMS3y2mcQK)AKw9 zF98Lx4ZH@t5!?XYCqwlp_+9X6a4$FrYM>34!6V>t@Q2{5;G5uY!9Rn41J8MWia-`z z0*WoNH?Rge*MYZyo4^OaZ-E_P0PF`9Fb(FxF>nfe5&Q}GI`}K_H25C)Q41@(m%re3 zF8DwW{5;qSUJYIk-T{6Ud>GsUc7i?NeozH1a1TIpv6vC{ySW2$G%PD(L2<$ZLi;R#^D4IFj23dDoQoFA!gLoOi6r7t zDemMGd4E2i$vRRt8p%Yw#_HrYMNIWWLqjF|Q7TQnon^&> z%l^`+Q^-jLWxo^hl9i;Q#>7m_j1CFy)BIzt>=s%wiaDp)G#VWk-skTR4egIgcDSgN zlTBM_&d6D|sM^U~PT;0}+gjNmwJpoeI0@NN?U>b6p)ozC#YH1-#G^vJjdcU68cRgY zXf~EroBFApw#}@lWp&&3=ICl=hp1_pmSH8cnx$o$hN-H%MNB8sYFwCXV~44h(A1K<(SpCF~sA zQ%i`tmPl!ScXcwUbWEyc#-5oHCi}(%88L0T_vYu`m|x0wQOnYGOA5sLdUm>rJ++vq ztM20XC#kBY)2dXn$Hu3GslIVJV2f$XT^Bz$GvC5*qqeOlvr<6m+r2~BF}Ay=h{?FS zH~u<}#nMJxs^!KGKPx=jcQ}v}jjX#Xe(s(5EBVK0&PgU6DG=%F_7b~m5iuE!CKdlQ zRicIwm1_C12`_OXkQWWdF>-!xc7C1AZ>IU-WFjX8@FSvIYR zR2vzad`@_-Z!$0NhP)SMcW-a^YLMGP0+dff#x(%MUAPOEC3V)tozq+XZq+bxjd;>G+qWxUz*4UiYvNus3`zxGdM4Pj4 zK#o0>eFStGp1+Ff$SaYjZar8Kf=jl+8H-M%64VbNIz&GY=g-2}Igcu}j2+!~9QD1D zkNSG(z7tGeFB{IM8uA$UHW}>LZ!@ zg1SuUG)3ppJZ+~((i7+>=xOvUx{xlVSJ4}353SN^dK>*R{WtpW^jq}5=>O3FrGKOi zCWqVJb%wvj}3T7=+#{`%dvzgh&9Au6&|6u;f{F}MRe8>F4WZ8b~ z9qirgee475en(X!Z*vb$vu z=@@?xcOPesCi$SE1cRy)v8yM8do*~>&ZmWaaXpVav+$wWC?BGhx zvB$v`n&ayZZk9Q|>)@uD<3|qe33L3y!A&s7%MNa&IqJy48Hk7jaYTbagNP)ML^Q%7 zbH)h50+=iyngp6eG!-p?Mf57@Rie|N(?suq-Xr=1^a;_|ps$I30R2F84Rp;^AM4<*vqV;qmFP~; zokT-HLx;%b!ZE-xWbz@KW&L1&51gU%Cu3Hp-g3g`+^ zAE?jNHQK@5q>1uD`9y<3gNYm<*+Do8IErW@Xd=;*peKo@gQgSB2F)f~2wF(A6ttA6 z3RFc@1F9kNg1kf#P=qK0$`Earf!hf?KpjL!K}U&R1HDG{Ht21l_d)LyeG2-N=o`>C zL_dLkBDxN`Zc1d=I5^QDmloMt)1)Agh3=F^gVZUq(4eA0sux*kQPCjxB(l(?qCxId zWT8t%gWSK!LZ6BT*%gt6P8AKZS0W3&DjH-5MHaeMG|0Y+EcB~rklhwp=vdK!H^G{g zHNK&tA#4jJm4If4q~B-rseVWX0)E9W?7@D&ss-$ji^gm* zB?>uBi>gtu*V*yQyMPre; zVBPyBUx7r446)eMowv0S6n z9N&^^5v-?lnjeYVTI7uhd%!b>^GF-r)$)4bGG1Su-s-k%@v&T7+L~xdw+Yra^?cqy zct>m9h9s<3+-{pob!#4JgKIvhV_YY zTteEN+TF5GuzsvheHLTWN)ODV}f zLTXR9w{-~C3;L71QGgHbUAH^~(NS=z<@GDql?i$QE?c?n<$4H>hbz6D*}LtaVEsy; z&KvS1e7Iw61*~_C;#^Wi{j#;Cf<6hCF59sm)+fhvNojwkW5;2^dP$$n8&h%D{?%no zuv~GADWxEd#hl?C(I=H)AuwK=d^2P#u{77XntaOgxit9=$Ul8;K_=S@8 zuHjrt>S{XDeq6BXv|hyw&CAui=eK+}piOUIby;4A-l&CQFNIiXn)Tz?v>5m2TsD80eXZt-1t<_()sst z^EVYPoh#^WJh$*r?=Y@+bI+kuux8<)U-?G)4s<(3;oEp=?4&=>SyWcF(cO^PYJLai zS%Q&ZM6$*PN8qsM!Aa0O@-~@OWz4EFP*vV$v;KOs{(7iC5B48!*xdhgAkTaS^N_5H zY`$AEY)_sG8dOarZF!2*X?xHKZ(*L|GCSV|@VISm_%P?G@q{e_pWQq)nY1OL%ktEe z*>0&o9{hOetl}H216o1wdxrc|@N=QHGk@4NkvbheH~A0b@wfPe$+ta{y^-z9{+zv% y{Wkk$_OtBy><8Ji*>|#UWKU*KWV^FRviq~`*&W%IY*RLo)et&HWqpTO75xw7M;$8w delta 2663 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 diff --git a/fonts/ttf/Wavefont-Bold.ttf b/fonts/ttf/Wavefont-Bold.ttf index 405fab947f7d238d03927e3b5de703bee4135e83..2b9690230a5ddc7d131c1621eab4ea268c39e986 100644 GIT binary patch literal 31876 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 QEo83lXXlF8_)h%)09QUi@&Et; literal 31468 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 delta 9064 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 literal 29772 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 z�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℘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 XvIi6u$8~_z7DkTw$+;pn&WZmQs|fi~ diff --git a/fonts/ttf/Wavefont-Regular.ttf b/fonts/ttf/Wavefont-Regular.ttf index 087cdff085f28cc9e68b3e97c3c10fc6c3ff26eb..8bf97f88ad675a8ddb2204f450015ed90be6c955 100644 GIT binary patch literal 30024 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%0DguAEgixrL*Jy;rJAPVM)mp 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 diff --git a/fonts/ttf/Wavefont-SemiBold.ttf b/fonts/ttf/Wavefont-SemiBold.ttf index 9117ec034cb058029502a98a8880afe80ee972fd..542c1174bfd870b00dcfb5ceac21c13a0e7eb9fb 100644 GIT binary patch literal 31832 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 literal 31180 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�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 F{{o8QFkk=x diff --git a/fonts/ttf/Wavefont-Thin.ttf b/fonts/ttf/Wavefont-Thin.ttf index b78f339606bef2eaa7ea420c05cf79c3bea11222..ec79d83e96af80d5d4c706195f9e1036f930e657 100644 GIT binary patch delta 7812 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 W-!ZHU{_Hef0a5df^JHEN8W%vHE4TP{G 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 wd~>a;Go;4{8eiO)^C6=H7x2|%kt`2YX_ literal 0 HcmV?d00001 diff --git a/fonts/variable/Wavefont[ROND,YELA,wdth,wght].woff2 b/fonts/variable/Wavefont[ROND,YELA,wdth,wght].woff2 new file mode 100644 index 0000000000000000000000000000000000000000..3b3c1d9824e845629aaa6099da5c6e875cbb7ecd GIT binary patch literal 7140 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 literal 0 HcmV?d00001 diff --git a/fonts/variable/Wavefont[ROND,YELA,wght].ttf b/fonts/variable/Wavefont[ROND,YELA,wght].ttf deleted file mode 100644 index 222b1e7761525ecff3f9c773db8c693ee7960bbe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 67556 zcmeHw3w#vS+5R~*v%9(9??7AMbtK>N-4F9lv<=p`4las=Ca@O&Y3g2*NkG`0WwrV3Dt#gpCdBmB+*d6)EzdN^K3A9)O zmj4hiVs7IdbM6_`u^!=A#)=ou1;1?cOf2h8jj?Z@m^Zs&miw<;^RRs6S=l^PXfJks zjQM*pf91S|OILK&b=}680)1Z7xM*g>#pgeMhA~$P=F1i~tY~JftRLc?;Jcd|7S8^2 z{+mY`yXF96j;ERzEm@lR?$c`-8;14Ou4-O9yLq1Te)!>v0pG>QOO-o2s(vx5K7PpG zn5v#Z4LfPNP+rBp6>%N1&mwo$uFZg!* zp4P`*9|nB{Q!u45OktXe?U_ww)o?hA#j=%b4SSqD$)0Ar+4F2K`w3_KYkZy3ODR`g zQ+}nqr)p}18lxtu`DrZ~aoKCKTeClN$GTJ9S?+9ijyuoY-#yq}<(}bwrf*J8QonVD ztjp)~VHuIk4ef2v{yy6U?LBNCdzo|IqGUk(5VVi0Om(VJ(9YAfTcCa3&D_cE40mr` zJ0IGW?s`Lem8s2qs~Gb&(D?es(-i2WY3Hx;sG^AeIzDIYFKa)%$k-p}i5i-||H1nw zG5wt$Pd)L$dte=La@yvnvKe@K^v1)@^D!O33wR-LH$Q;sL3;2uevH3^2wSlu=o~hW&1VZt1+jz(7R6#%9F~-XZ6b|jV2Qn1 zHbyK5OU`5YYycaGH7LZhxrCKrO`HK5m+Q&@4>{rHKer|-c2(STN3_v`=KmQb8oSFc z*9E6@;OJ0{)h%$7?d85TyR~nM4Mk2fFc#Od<#^T{gd@%|)Y0T{A~!_tk31KZ9W^d$Wz?>y6VY+eL!+CbTcg{eyJ8Arrp0WC z*&lN*Ham7)?8?|(u_xl<;)cdG#kIz@#dXCO#7~Rg5WheETtarjxP+AnyAn<$#w89- zY)WiRY)kA)DoC1^v>|DK(z)d9lXoSbNQp}sn$ncgn$niim0FNGEpbMDX)q48Sgz_zcl zWR}ZVX>n<8dQiL4pm~SGRFaCSLzS9-aZ{c4wU*T5W2Jh$4DdQ{^flY6dS<#5&6I&( zJ>RN&ZeJ;yD+9l}$Ey0EtEK258Ti$QSXD1Cm7?V`@T=EaRUdYp6dfi5zj~cj^)WX{ z(J?act53D6K52p!og@Rl`YfyJ^|wmVdKviDo2;tOpDRV@%fPR`!m9d`uS(G+GVrUf zwyJ*5T~hQO8Ti%jx2k^M8Yz084E*Ywt*SrxfE0aD27dKzR@J}zuoV5S4E*X(Syg}X zaVh$w4E*ZPTUCGdhf?%e8Ti%rTUCGQMJf7{4E*Yct*XEJb1C|&4E*YESylhln^N>w zGVrUvYgPSszm=lDlYw9Tv{m&#zAr`pCy)BC8Ti%X{OXCh$w9|ni9z$>j>ULn*FU5zkCYKq>CeG4EbAwC{g+hb$ucta zb1duk>H4!&<$Yvi>JPN6e^u8Xq$oWl z)PKdY{?EG1y$(0`M5g{PE$hG5W$rb(xhFOCk6G6LO_#aX=jJPcsejV4{vW!`S1oS7 zl9~D+S=Rq^m-(v8%~xVm|8vXw|J7w4HE{Dt!qo4wtpATL^QecLM?z8`XQR!tQUAN+ zD@E-z58D(~?&(bZB+L4-o#sKO5*wo5+p>Oor+LV%q=)F|S=R5{X&&$^eM9sME$d(1 zX}(=it`5c{8GILrDsbiO22l^bMa>QAw( zKcVwksj5tnk*Pn!vi_}|PfAtgRvDT4jh6N2c79i?DsyFI>Mysf|JBY1rK<8(8JYSm zmi6!Iyickscge`qUvF7|P3JvQRaqk=Q~x2$`VVw2k*dlAGBWjBE$ctrIbW(O56j5Z z-)UL@@y>dwsyr?uQ~x>3`akTPBvq9k%E;9Jsb&2aJI6>>$~38JYU$EbITJGgGQ6 zf02=?f6=o3XPxmvwiKq^i;>BU3-ds=n&#XqT$0OGc)Cnq~dOj!&hk znkXYv-)&jHSI37^RqZ7sQ-6SE{eB(qNmaFTYELoMr9cDycC z)k+ze`lBrC5AS$cs;a|fWa^K%tbb$23sP0RQAVczEtd6f?s!_NsyEBX)SqKnzoFwX zsj4=}$kcDPtbbd_cciL%n~Y5TJ1y%k>-eTrRhP-g)W6rV{?|IZQdRw$j79}61sy~sDssDy${aQ`9SFK#!VwVL@%HuY;P>tEY$?sYVCPh{$kwXA=AySdlY%sr{8 zKiRVWm)gy}zGl7>nEKN#>wl%)eAUv-S29z7fo1*K?dGelX1)@e`b#bAFKRcB8Z`4r z!qi`BS^ti9^QcENkAzJ9b(ZzL?dDONW**6z`kO54f3w{@>eS35QB(gB%lhAGH;bRqX{CnfeDU>%ZJS zT&ij>%gEGkv#kGmd!UYC)nf84VE+wFs;s`j>wO#M@q_1|mnCsnogWMt}}wXFYP zdoQV~eJCSS|AJ-xPumlvs`jaj%xm)*U7KH2SXe}lVgqp#m%MgAD)8Fk%k&SzJ!nDYaNlJ<-r^%3{7=oB2YHJ|ID(s|c>D02zOIyiGiN@f4{{Z^Rm&y@QOH?%F9gV!G#Th!N90RKtxpf<>?!j5rcHUozq-ENPMv zM?+_t5ywDhCiZ7sqxIT?d#pr^b>noNp6V4A$9o&G$_hE1Kc;#ufa73Qe5z6JL_K{5 zNSs)n!*>~R94k}kvmL5WU5m?q%BaVd5Q$`$x<#?na!8dlHv2H})NLf1wA_MAXa%-pm?s@7rwLwYUg-3F6eD#UhO4Y>X_;4`a)K z^H8^#Ex~-guC)}}OIQ^fj4~HXAjUG>|5$)li`YWc&cd<>v)hC8`-fQ~t;>8YeLR*q z7b=ZtvzQg@cS9E9ZpdqJ*X5V7WH+MV^&O=5gj!EVYg)tkdQaTl+RsJ*mZE+Uw3o22 zz=Z-3xb`6XB;Iok-N?O-lO_9iHd{a>~U9!38au*h(&32VFrML4h& z%btlfZNz$x)O)i~cTa4e6z1@Z?j9W2UPG7e|UKi`$$=#<5pBExXV<-J(AdeaTkxk z74%U&n#b^19>?Q(0#D>gxavKHr}8wO&NFx>&*Hs!Z(OOK&9C5Y-WU7CTz)0*$MbM? zc|Pxtd#11E1Nk7_IX##c;)-w&FXkn@l$Y^xUcoDQ6|UkQ!ms5+`E|US592j_I3Iy4 zuWR}Bd=$TdkLF|eSbifPhpVOQ_?P&2K7miXIk(|H4* zfvb{d@!5P1pUda*`FsJtjW^;-;wHX`H}kLZ#e4~0%9ruwxcYYmzk}b&@8Wm!d-zJ+ z=ib6s@zvbR@8xUwT7Dm2$G^_k<0{+x`8W9n{s8X1eUNYB-{KG9%Gk~PJA4a&SXdTb+a;3gPsjpP)L8&h)!o!0{ zF&-s&l;Tl_M>!r9c!1{t&jX$ZJP&vt@I2so!1I9T0nYc z3|=vK#o(2IR{~xMcqQPKfL8)u33w&om4H_QUMYB`;FW?`3SKFArQnrrnc$MH)f>#M%C3uzKRf1OuUL|;yl^T35q)8D?JTxh$NeN9# zX;Ma$a+*}ogjy6)iy~@KL@kP_MG>_qq83HeqKH})QHvsK;h`2DYT=<49%|vC79MKh zp%$KUSAAi@%*Of6uKFSaJq8vVSYlwQfn^4k8(3jrrH&C;T^R^P)CfrgLKA@yMIclW z2w4O|7l9B)Ae6Baz>%O2$ABDr1v=)U<1{{h)@*!l$B5do6H%jow}QS8aT@y(;^No> zM}0bnKf(CIhQ+t>ZR~a4%6ITxd=KBx59!~QaDt!a=lBKQr8t#1B~8gz@{|IlOc|=w zD&v&N$~0w;(xfa`Rw`?i4a#PvRoS8JQuZkO@huT;$}#1Ha#}g3Tu{33Z4q&5nwqWV zsRe48I#jJy$ElOmX}BN0NnNh4RM)B-)Xi$Ex^e4+AeL6wqHA>wQ0w+6WVF* zoOVI$ayW6HeVQZNk>@CIl;Mv1TE{rYWXCke9Nc@q+_BQJ*0I5{8F%6DaO`sIaqM>- z!u|Ni948#79p@YuaA&^L8RtxMW;^q6kA9hRsI%5N&N&%(>(6mEIhQ+EI@jX9{msr+ z=MLvC=N{a_f5_S9Jmx&%JncN^yx{C|IbCtCG~Csn=PGcOxrVxGaex10*EH80SCeZw z?(|>l+ThykYIW_vJ^y=L`(1}zZLVXk6Hf6R8De}f-Z2~XQRL21HqusY`(SSe_I6-D z5A6NGKfNDdIAWmJ6Yi{I3ch!Y_MwV;0$2?^3akLW0W1U_0OkYt0Nuc6fEmE;zy#nH zU<7aj5bs-Xwu3t^0`CNV0&E7J0nP!Q1l|HX4jd0W0>tZ><1lb2@Bpv`xEDA8xEtsO z?gXX*w*g~-TY&iPAICMe2faicMzz={cfbRgCfk%MzfQNw7fjNoYy@TiX8;p`Q-Be`aXi*E(X>C=K)6nrva;h6M+@L(ZE7rH83Ao26O`l0yBU) zzyx3hFaj6{WI&B^^&;NCegXUh_zCa~@HFrw@Lk|>;9I~Wz{9}9!2Q4jz~_N`flmQ< z1GfQp0yhJ<0q+NH0j>sa1g-$C12zF$fU|%rfK!3Zz&hYOU@dSua0qY;&;zUk<^x9o zvw_vX6kr7~3RuXL4)jmW2co~&7L^Y4U(Eo*4>bV@f7A#d{8AYZ{$ZO`I^d`B2@w7& zXMpfqISGXS%5fmZ1KXz3f$>oe12JC80U*Xt*$c#YD!YLgUu>gF2gY032E_O)TY%Ue zl#M`aAIdu5N5B@~=fD-fE?_fLIwOGdfJwmVz}~H03(3wfeiQ%r0^PuMzyZJ(UDZUN>4w*%e4XMh>NJ-`Iu0bm614Il#^#lH0- z@C5J^;2Gc<;CbLlUS71reMzFJt~TZhk~if-iUS7WZ6CQsmZNo3ifC%t~LHx+(eY#HzTXF`mf1uI*V*W!9#*rtVAL zo;WS;Ld^KcW3K&9C3A85;nY*fhZ9%FXT&Uy{M_}9v$ytK`uVh|#NQJ0TvTC1lCw@br5;dDrBo%Ji(eV@R@AtN0_Otl3-uV@r;blb zir*GRLV0+D--f#pNm!^_Br3m%E{Q8_EySUN!t@f$G#QqjyUE#>zJBx zFzt(!i%EwP8e`8#4~;nQayk}k1?f4d*-0NIY=}#Wz9llw<#w#sMyR!^Ba-71cE@?5 z?~EMas&Z`Crm9nwt;wE*x8lY}Z;7mRO?2$jn$;%d86_v-^SH&)dm?AJnjCLwYt_|w z@9yEp;xTdC_*NF^?}|)blfqd3?pBK2M*&QG5D4irVit<~3vfHGQ7AatYT5)CkQw zvqmoE%SH{&3(gFqhL$UqOrOfpch6A~%YNRhkxT!XQA6{Bb4ahDSQf^v?N%q2R~t|# z*Wo6!&c9w$j5<*x+BO({q1QRgUQloF zWx7GNVts~mtChVO8Bpu*&p5L-utzr=wX#m=PB&_0KSfW!6I3hKcU!kw+1nok)cX7T zoLL*#OuyuwJaQIAiaxmu_6sjqmqkL_odlJvn`&Subma z{$!)xUn}bCje5UV!Y%rmN?K2Uz3A8GpnB=pquuKLp6v{%mk!Z-{>ZGCwL+ghX{Y7- zYeoI5dOdw-Yxly~6=5=>Z}}k^>OC#JC@3Rbp-fe`jC6}K!viw1UZ{;VGyZy!nPg-F z>qTaok@5RW5iQ3XCL=t!KO{pgQJZfEWrTZ_Y3-Jgu2Sav0U22@)aXhCj?dO<|K%^# zMtlpWE1;J0lzByO6M;CmFqRrNCw#~blOwlC^Qw@X@R4%(mR@lD%aaaMuCiNBW`t%< zK+c~LxiMxgFe7pkja>JP$lYq>x{sw8%{#*8glDV6LVY0$~%I1Y+ z<;YML7t}z*zg99Ql4P(-d`&tF+NR~$kS+2``g3j z#aL6mB}`s!36%eONM2@z{-&V3KP&Rz?UoPBiu@A+`R-Yf|Dl-=&WijVBOjU-dGT&0 z8eRk!8WHMYq^=Ok5F`V8&U_2hc2+j+}GbST6FBsxIF3xR*6yY)TH$qnl<;YPWPGVS&WQftp z3d8X;1SdCy6UY!8TpWwF^{-ENhTxQT;{-DVXJ`N?lp#3c9X)-cLU0j|Qr{a5o$w6d z^RloU|EQ48$}k*1L+IQW!U<#u&c+~4cZT3R+>H~=5S;A+oKS|~h%*(jAzKffHxY$; z=F*iyS&}2XP6*5La|A0h3@eZ$SUDlA?i|6oI*1j_5v-DKtWb_%i8C#+A=`=n9S}Kj zo1t~7ZAG}cG%PD{3`pyqFswk1&{`Y9>dq0Y2ZC6^9KqVsjTOoftjBa#+-0^2;h6Ih zyg-MkpYdUNfh?hy5r)^DC3t;9c)={e8xX_`WeJ`*GZlB4kr%!!F!U}x_JX%0EU&xU zh-Z%qg;Wd`zuhjC$<-FbqU9)=mr z6HIpqGn6No;*47SWk*o-eZHZ2xiJ*X#bKGjo{~#Cv*s$DSrr@T9;f68=SDb-M=wSpz-{u**mmdSc{c2clsB7fIong44 zOra~zuqB4L>wn#oJtbvTR}N)Mjvt8~6PE4g_#N8Iw#h9uA$wNcY@st(ALU%Y&A6Mi=<1y=}E;oAMtxSNE2TWkTY{l61e z9js@Y*jBb3*C#xOUqyR`y@5|>#h+MGN3PZ8Z>| zH|z784aDc^`aFGpOT3K+;`3>J{(b}38@SHEwFcg6AkI+A>wfV0a0_bx@2B$95^?Td z?CHd_QEYu;%u}##9M313;!}QTrB48Lo~I2~2~6j%*>1vnOX7&ryk2Al;v3Z&=YJ3xB1KM7n1JPmvZ zcow(~cpmr+@FH+8unTw)4-Jnac;HMH{q`KL8=x(YaqO9Ky$_=;h@OP#8RIkb=`4LZ zN1x8qrwjCHqdslYr_K6wu|B0w{TW}bPgm&EJN4<^`joB(V7x`2uGXjeRzcSUiKSxK zSQijy`D5jDK>U0_EVnBND0D3X7Jvs+1_Z>SPOrx`A0~%C7ZA(sm<06R2_1}spI;CV z)0Sc^3qJeflL7G?0r8%I_zA?ykiFH^Ua4#zvX`*zs!DQF@w{Jl72)9Tc-|)*c+=qT z5cYQsyos>i{{FPxDmlyh?I*mVAcy=`dY!(4)=$Z3?L}TGsgpA3xveC{rqZ2`O587! zXnRzm?}_^bVMJ;4J%rlXh*CoSgof=05&emMv3#Y9K@GMY zQ+lSaYxo@XMjT^?YSP}Cj#S0_j7#OI*VMO5={w*HIU&!4`1?*h5?2ujP6SxuyxgUi z<${Ogm^jDW6OUX>!Q=AlMv75*6%`{+{9Sm6KdPgB7-MvIsOtbbAnHS=)vP+Cjw+~L zw(@gijcDSp7kn|59Ff(h^y-Q&6s=yx!zET&pHh8noV&{c2V%^%Ag#Dz*jOVNAYIwcaD@6&6Sy zQE&Agi#pve$q{Qtcle2Rl1Hy3#L?#uLy4X*#ymO0>DeLY;SQ%~f}F=I4X#u(=gA>X z+qRJ>m*^Er&XZHP@7Ow95H1f*GA4C;I{W!WJ`e!jUF|Wmrjr~pB8X#T^-bH6es%ipjM9vKnb&0=%(@|~t=EKJ$9vz}`&6H~ zea>coHT%L9ce$B+P2Z@#59FleJe-@I`}mdlSN^b{r{9ZtL-KxpRqa)8=GW!_w*S=r z?+=(Y;4fD6$3j5tuAmBtQ#CXctc@g;X_5~MO!_6Jll$Mi+7adlssQrTY9`~ zL0L!nh6;DZbCn}1k5$d9`r?`mLvn`fxpwrmCx$M*&UxL|>VoQ5hD{#!QO(NXNyB#x ze{uNn;r|$sHR75Pw~V-FMC*u`N1PnVN9K$iH*(R)jU#_F@~x4d)uzmTLCuDlcnMvHweR)75$O*{RB$xFKKR4#m;QI_Y`Q?pww2 z#jy>QUZt|3VI)3(dDSRiXARyOJ^s4VVB~8=-pe0-&8xol=!_~aubSbl@m-5@yYeV% zmDe79w8nQk)nMttYlFMp*&wVdQj#l>RN)z?W(S4E3e6H~QQ!7AdrZJFk9 z;PNV56_~KP2Df^lv<#!wYYDsZ<|=pV5^sP>ICSY4xBq+&Y(C(co^oq!V`P_dnW6Yo&5oq!WZsMt=xi9=Lu zC*Z_Ssn|}yiRY-;PQZzsRBR{UL@O2B2{`c(7263ov7U*I{_!2 zr(!z+C!V5WI{_!QQL&wX6Pu~nPQZ!#sn|}yiPcp86P$>0Tl$u1WyOjW|GqYu-!N^} zg{Gz^+XZFTtXZ}T%G9Y-Z5Ncfx;onhrM9-#c0n03WQgs8;_-NF7nJ<`eA@*jJ3HHU zK}ktTv0YH2qN4tdU7+92pBpY74*J$iQc?%lRW zm-pz&9Xoc|9$ns}?>_R#BeqAE_vpb*n>N`VUEZVn)~#FjALvoSzwrIqaNj+?l~in> zF1sxa_bu@)rDFTkgHQ8)3#iyW_25&zZ#os*ryhKoE7 zY@aUgQ&)Re2Nm0=9(?+=>pYeJAfFT#gHOB_7Vl=9v6gD}jHYTXMQf>HuTt^0&=mr` zkaXe93s{V|cY4*%c8BWas>8cVRUNWojZiqDsSeepTt?x-7hd&?3sFulcSb?M86_(W zg`-f=oR?Gh^zUBv@1Mp;dU<3#6e8ngg`x09j|yi$_o|-pk`Np%9-bD-4A_Jt~|!=T*<0%1-j~q--c8Wy=af;h7#4-uu|Ae*9i; zs+XtcLLoI*Ru~G~dsH}n#;cw=o}cdJ>G@Dd&zBX3!j>Kt-ahSBPrp4V%geI{K_P39 ztS}Td^r+DGC$IXaHcuZf@8f|&ACIgs6z=U&;q{YV_2ld2ZZCJ2L&04xD-4A@gB3KE zVs6zL*s3F#%J{+eyy|-ghvay9&Jd{N4lycn4V7k>)1l(tZLYM8#FOI{=7Q1DEW6^6pl9u;=H=~ds{F}2joOQ%AibgHZ{6iRwjc< QL!qKxRu~Ecf)p70Z=?|%DgXcg diff --git a/fonts/variable/Wavefont[ROND,YELA,wght].woff2 b/fonts/variable/Wavefont[ROND,YELA,wght].woff2 deleted file mode 100644 index 00a3c1145df0be39e806a746889a3bc880c4b2b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6680 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 literal 6760 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 diff --git a/fonts/webfonts/Wavefont-Bold.woff2 b/fonts/webfonts/Wavefont-Bold.woff2 index c6d0a94b8f7db36083a95242862923b75bd83c65..1861b829e54fa48138414d160c21adba0bcfddde 100644 GIT binary patch literal 6668 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 diff --git a/fonts/webfonts/Wavefont-ExtraBold.woff2 b/fonts/webfonts/Wavefont-ExtraBold.woff2 index 78968d0d21e99bb143843743718fae1f3e18e0a7..03f7f3ec49982828e70fb32309fbef177e56e5cd 100644 GIT binary patch delta 6567 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 diff --git a/fonts/webfonts/Wavefont-ExtraLight.woff2 b/fonts/webfonts/Wavefont-ExtraLight.woff2 index 4d3862e9180c6a70986b53622346f1074a92fb5e..dec65031a6c6a224b3ac19851772d5b7316f80ec 100644 GIT binary patch literal 6200 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 OFE7W36y|^Lg8u>7rLYzN literal 6160 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 R$;dYm-t&6-Qw#_I{69nh&l~^% literal 6304 zcmV;R7+>diPew8T0RR9102rVE5C8xG0CY?M02o350|5pA00000000000000000000 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 literal 6576 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 diff --git a/fonts/webfonts/Wavefont-Regular.woff2 b/fonts/webfonts/Wavefont-Regular.woff2 index 1473ae6fc869f808cb3aea5ffdd5112d873a9b11..9b1ba6af870efce54488b326cb96dc749654ffca 100644 GIT binary patch literal 6356 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 literal 6316 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 F{{l{+Eqnj~ diff --git a/fonts/webfonts/Wavefont-SemiBold.woff2 b/fonts/webfonts/Wavefont-SemiBold.woff2 index 0bd7bd6d36a56ae6b5751a7a67b00eb2d4bdd952..8435601ac5b01d8a426fccf8641d1fecba0cbafe 100644 GIT binary patch literal 6572 zcmV;d8B^wWPew8T0RR9102!g02xgH0|5pA00000000000000000000 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 literal 6548 zcmV;F8EfWuPew8T0RR9102!135C8xG0C~&+02w#{0|5pA00000000000000000000 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 diff --git a/fonts/webfonts/Wavefont[ROND,YELA,wdth,wght].woff2 b/fonts/webfonts/Wavefont[ROND,YELA,wdth,wght].woff2 new file mode 100644 index 0000000000000000000000000000000000000000..a1b6c5fe46efa62f38ad8f469b55d40c2353e798 GIT binary patch literal 7056 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 SA0B@uu%kP#+4;c3?fzd#gt>_T diff --git a/out/badges/Universal.json b/out/badges/Universal.json index 24b6cdf3..324cb62a 100644 --- a/out/badges/Universal.json +++ b/out/badges/Universal.json @@ -2,6 +2,6 @@ "color": "green", "label": "Universal", "logoSvg": "", - "message": "75%", + "message": "78%", "schemaVersion": 1 } \ No newline at end of file diff --git a/out/badges/overall.json b/out/badges/overall.json index 831bba16..8a405fc3 100644 --- a/out/badges/overall.json +++ b/out/badges/overall.json @@ -2,6 +2,6 @@ "color": "green", "label": "Fontbakery QA", "logoSvg": "", - "message": "88%", + "message": "89%", "schemaVersion": 1 } \ No newline at end of file diff --git a/out/fontbakery/fontbakery-report.html b/out/fontbakery/fontbakery-report.html index 803335ef..9f823b39 100644 --- a/out/fontbakery/fontbakery-report.html +++ b/out/fontbakery/fontbakery-report.html @@ -73,11 +73,11 @@

Summary

0 - 18 + 9 51 - 1118 + 1109 55 - 836 + 854 0% @@ -85,12 +85,12 @@

Summary

3% 69% 3% - 52% + 53%

Note: The following loglevels were omitted in this report: SKIP, INFO, PASS, DEBUG

-

<Section: Google Fonts> ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️

+

<Section: Google Fonts> ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️

Ensure fonts have ScriptLangTags declared on the 'meta' table.

Check ID: <FontBakeryCheck:com.google.fonts/check/meta/script_lang_tags>
@@ -112,7 +112,7 @@

Ensure fonts have ScriptLangTags declared on the 'meta' table.

⚠️ fonts/ttf/Wavefont-SemiBold.ttf
  • ⚠️ WARN

    This font file does not have a 'meta' table. [code: lacks-meta-table]

-

<Section: Universal> 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️

+

<Section: Universal> 🔥🔥🔥🔥🔥🔥🔥🔥🔥⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️ℹ️

Checking OS/2 usWinAscent & usWinDescent.

Check ID: <FontBakeryCheck:com.google.fonts/check/family/win_ascent_and_descent>
@@ -185,6 +185,18 @@

Check font contains no unreachable glyphs

- _2.clip +- _20.clip + +- _21.clip + +- _22.clip + +- _23.clip + +- _24.clip + +- _25.clip + - _3.clip - _4.clip @@ -230,6 +242,18 @@

Check font contains no unreachable glyphs

- _2.clip +- _20.clip + +- _21.clip + +- _22.clip + +- _23.clip + +- _24.clip + +- _25.clip + - _3.clip - _4.clip @@ -275,6 +299,18 @@

Check font contains no unreachable glyphs

- _2.clip +- _20.clip + +- _21.clip + +- _22.clip + +- _23.clip + +- _24.clip + +- _25.clip + - _3.clip - _4.clip @@ -320,6 +356,18 @@

Check font contains no unreachable glyphs

- _2.clip +- _20.clip + +- _21.clip + +- _22.clip + +- _23.clip + +- _24.clip + +- _25.clip + - _3.clip - _4.clip @@ -365,6 +413,18 @@

Check font contains no unreachable glyphs

- _2.clip +- _20.clip + +- _21.clip + +- _22.clip + +- _23.clip + +- _24.clip + +- _25.clip + - _3.clip - _4.clip @@ -410,6 +470,18 @@

Check font contains no unreachable glyphs

- _2.clip +- _20.clip + +- _21.clip + +- _22.clip + +- _23.clip + +- _24.clip + +- _25.clip + - _3.clip - _4.clip @@ -455,6 +527,18 @@

Check font contains no unreachable glyphs

- _2.clip +- _20.clip + +- _21.clip + +- _22.clip + +- _23.clip + +- _24.clip + +- _25.clip + - _3.clip - _4.clip @@ -500,6 +584,18 @@

Check font contains no unreachable glyphs

- _2.clip +- _20.clip + +- _21.clip + +- _22.clip + +- _23.clip + +- _24.clip + +- _25.clip + - _3.clip - _4.clip @@ -545,6 +641,18 @@

Check font contains no unreachable glyphs

- _2.clip +- _20.clip + +- _21.clip + +- _22.clip + +- _23.clip + +- _24.clip + +- _25.clip + - _3.clip - _4.clip @@ -2492,36 +2600,6 @@

Check if each glyph has the recommended amount of contours.

[code: contour-count]

-

Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer)

-
Check ID: <FontBakeryCheck:com.adobe.fonts/check/freetype_rasterizer:googlefonts>
- -
🔥 fonts/ttf/Wavefont-ExtraBold.ttf
  • 🔥 FAIL

    FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]

    -
-
🔥 fonts/ttf/Wavefont-Medium.ttf
  • 🔥 FAIL

    FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]

    -
-
🔥 fonts/ttf/Wavefont-Black.ttf
  • 🔥 FAIL

    FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]

    -
-
🔥 fonts/ttf/Wavefont-Light.ttf
  • 🔥 FAIL

    FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]

    -
-
🔥 fonts/ttf/Wavefont-Bold.ttf
  • 🔥 FAIL

    FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]

    -
-
🔥 fonts/ttf/Wavefont-Thin.ttf
  • 🔥 FAIL

    FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]

    -
-
🔥 fonts/ttf/Wavefont-Regular.ttf
  • 🔥 FAIL

    FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]

    -
-
🔥 fonts/ttf/Wavefont-ExtraLight.ttf
  • 🔥 FAIL

    FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]

    -
-
🔥 fonts/ttf/Wavefont-SemiBold.ttf
  • 🔥 FAIL

    FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]

    -

<Section: fontbakery.profiles.name> ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩⏩

Checking correctness of monospaced metadata.

Check ID: <FontBakeryCheck:com.google.fonts/check/monospace>
@@ -2557,46 +2635,203 @@

<Section: Outline Correctness Checks> ⚠️⚠️⚠️⚠️⚠️

Are there any misaligned on-curve points?

Check ID: <FontBakeryCheck:com.google.fonts/check/outline_alignment_miss>
-
⚠️ fonts/ttf/Wavefont-Medium.ttf
  • ⚠️ WARN

    The following glyphs have on-curve points which have potentially incorrect y coordinates:

    -
    * _121 (U+0179): X=11.5,Y=1199.5 (should be at ascender 1200?) 
    +
    ⚠️ fonts/ttf/Wavefont-ExtraBold.ttf
    • ⚠️ WARN

      The following glyphs have on-curve points which have potentially incorrect y coordinates:

      +
      * _122 (U+017A): X=19.0,Y=1201.0 (should be at ascender 1200?) 
       
      -* _121 (U+0179): X=64.0,Y=1199.0 (should be at ascender 1200?) [code: found-misalignments]
      +* _122 (U+017A): X=109.0,Y=1201.0 (should be at ascender 1200?) [code: found-misalignments]
       
    ⚠️ fonts/ttf/Wavefont-Black.ttf
    • ⚠️ WARN

      The following glyphs have on-curve points which have potentially incorrect y coordinates:

      -
      * _123 (U+017B): X=29.0,Y=1200.5 (should be at ascender 1200?) 
      +
      * _123 (U+017B): X=29.5,Y=1200.5 (should be at ascender 1200?) 
       
       * _123 (U+017B): X=170.5,Y=1200.5 (should be at ascender 1200?) [code: found-misalignments]
       
    -
    ⚠️ fonts/ttf/Wavefont-Bold.ttf
    • ⚠️ WARN

      The following glyphs have on-curve points which have potentially incorrect y coordinates:

      -
      * _122 (U+017A): X=18.5,Y=1201.5 (should be at ascender 1200?) 
      +
      ⚠️ fonts/ttf/Wavefont-Light.ttf
      • ⚠️ WARN

        The following glyphs have on-curve points which have potentially incorrect y coordinates:

        +
        * _121 (U+0179): X=0.0,Y=1198.0 (should be at ascender 1200?) 
         
        -* _122 (U+017A): X=109.0,Y=1201.0 (should be at ascender 1200?) [code: found-misalignments]
        +* _121 (U+0179): X=25.0,Y=1198.0 (should be at ascender 1200?) [code: found-misalignments]
         
      -
      ⚠️ fonts/ttf/Wavefont-Thin.ttf
      • ⚠️ WARN

        The following glyphs have on-curve points which have potentially incorrect y coordinates:

        -
        * _120 (U+0178): X=0.0,Y=1198.0 (should be at ascender 1200?)
        -
        -* _120 (U+0178): X=0.0,Y=1198.0 (should be at ascender 1200?)
        -
        -* _120 (U+0178): X=5.0,Y=1198.0 (should be at ascender 1200?) 
        +
        ⚠️ fonts/ttf/Wavefont-ExtraLight.ttf
        • ⚠️ WARN

          The following glyphs have on-curve points which have potentially incorrect y coordinates:

          +
          * _121 (U+0179): X=0.0,Y=1202.0 (should be at ascender 1200?) 
           
          -* _120 (U+0178): X=5.0,Y=1198.0 (should be at ascender 1200?) [code: found-misalignments]
          +* _121 (U+0179): X=16.0,Y=1202.0 (should be at ascender 1200?) [code: found-misalignments]
           
        -
        ⚠️ fonts/ttf/Wavefont-Regular.ttf
        • ⚠️ WARN

          The following glyphs have on-curve points which have potentially incorrect y coordinates:

          -
          * _121 (U+0179): X=46.0,Y=1202.0 (should be at ascender 1200?) [code: found-misalignments]
          +
          ⚠️ fonts/ttf/Wavefont-SemiBold.ttf
          • ⚠️ WARN

            The following glyphs have on-curve points which have potentially incorrect y coordinates:

            +
            * _121 (U+0179): X=9.5,Y=1200.5 (should be at ascender 1200?)
            +
            +* _121 (U+0179): X=54.5,Y=1200.5 (should be at ascender 1200?)
            +
            +* _123 (U+017B): X=0.0,Y=1198.0 (should be at ascender 1200?) 
            +
            +* _123 (U+017B): X=64.0,Y=1198.0 (should be at ascender 1200?) [code: found-misalignments]
             
          -
          ⚠️ fonts/ttf/Wavefont-ExtraLight.ttf
          • ⚠️ WARN

            The following glyphs have on-curve points which have potentially incorrect y coordinates:

            -
            * _121 (U+0179): X=0.0,Y=1202.0 (should be at ascender 1200?)
            +

            Are any segments inordinately short?

            +
            Check ID: <FontBakeryCheck:com.google.fonts/check/outline_short_segments>
            -* _121 (U+0179): X=0.0,Y=1202.0 (should be at ascender 1200?) +
            ⚠️ fonts/ttf/Wavefont-ExtraLight.ttf
            • ⚠️ WARN

              The following glyphs have segments which seem very short:

              +
              * _108 (U+016C) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
               
              -* _121 (U+0179): X=16.0,Y=1202.0 (should be at ascender 1200?) 
              +* _108 (U+016C) contains a short segment B<<0.0,1072.0>-<0.0,1080.0>-<8.0,1080.0>>
               
              -* _121 (U+0179): X=16.0,Y=1202.0 (should be at ascender 1200?) [code: found-misalignments]
              +* _108 (U+016C) contains a short segment B<<8.0,1080.0>-<16.0,1080.0>-<16.0,1072.0>>
              +
              +* _108 (U+016C) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _109 (U+016D) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _109 (U+016D) contains a short segment B<<0.0,1082.0>-<0.0,1090.0>-<8.0,1090.0>>
              +
              +* _109 (U+016D) contains a short segment B<<8.0,1090.0>-<16.0,1090.0>-<16.0,1082.0>>
              +
              +* _109 (U+016D) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _110 (U+016E) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _110 (U+016E) contains a short segment B<<0.0,1092.0>-<0.0,1100.0>-<8.0,1100.0>>
              +
              +* _110 (U+016E) contains a short segment B<<8.0,1100.0>-<16.0,1100.0>-<16.0,1092.0>>
              +
              +* _110 (U+016E) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _111 (U+016F) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _111 (U+016F) contains a short segment B<<0.0,1102.0>-<0.0,1110.0>-<8.0,1110.0>>
              +
              +* _111 (U+016F) contains a short segment B<<8.0,1110.0>-<16.0,1110.0>-<16.0,1102.0>>
              +
              +* _111 (U+016F) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _112 (U+0170) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _112 (U+0170) contains a short segment B<<0.0,1112.0>-<0.0,1120.0>-<8.0,1120.0>>
              +
              +* _112 (U+0170) contains a short segment B<<8.0,1120.0>-<16.0,1120.0>-<16.0,1112.0>>
              +
              +* _112 (U+0170) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _113 (U+0171) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _113 (U+0171) contains a short segment B<<0.0,1122.0>-<0.0,1130.0>-<8.0,1130.0>>
              +
              +* _113 (U+0171) contains a short segment B<<8.0,1130.0>-<16.0,1130.0>-<16.0,1122.0>>
              +
              +* _113 (U+0171) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _114 (U+0172) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _114 (U+0172) contains a short segment B<<0.0,1132.0>-<0.0,1140.0>-<8.0,1140.0>>
              +
              +* _114 (U+0172) contains a short segment B<<8.0,1140.0>-<16.0,1140.0>-<16.0,1132.0>>
              +
              +* _114 (U+0172) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _115 (U+0173) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _115 (U+0173) contains a short segment B<<0.0,1142.0>-<0.0,1150.0>-<8.0,1150.0>>
              +
              +* _115 (U+0173) contains a short segment B<<8.0,1150.0>-<16.0,1150.0>-<16.0,1142.0>>
              +
              +* _115 (U+0173) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _116 (U+0174) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _116 (U+0174) contains a short segment B<<0.0,1152.0>-<0.0,1160.0>-<8.0,1160.0>>
              +
              +* _116 (U+0174) contains a short segment B<<8.0,1160.0>-<16.0,1160.0>-<16.0,1152.0>>
              +
              +* _116 (U+0174) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _117 (U+0175) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _117 (U+0175) contains a short segment B<<0.0,1162.0>-<0.0,1170.0>-<8.0,1170.0>>
              +
              +* _117 (U+0175) contains a short segment B<<8.0,1170.0>-<16.0,1170.0>-<16.0,1162.0>>
              +
              +* _117 (U+0175) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _118 (U+0176) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _118 (U+0176) contains a short segment B<<0.0,1172.0>-<0.0,1180.0>-<8.0,1180.0>>
              +
              +* _118 (U+0176) contains a short segment B<<8.0,1180.0>-<16.0,1180.0>-<16.0,1172.0>>
              +
              +* _118 (U+0176) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _119 (U+0177) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _119 (U+0177) contains a short segment B<<0.0,1182.0>-<0.0,1190.0>-<8.0,1190.0>>
              +
              +* _119 (U+0177) contains a short segment B<<8.0,1190.0>-<16.0,1190.0>-<16.0,1182.0>>
              +
              +* _119 (U+0177) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _120 (U+0178) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _120 (U+0178) contains a short segment B<<0.0,1192.0>-<0.0,1200.0>-<8.0,1200.0>>
              +
              +* _120 (U+0178) contains a short segment B<<8.0,1200.0>-<16.0,1200.0>-<16.0,1192.0>>
              +
              +* _120 (U+0178) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _121 (U+0179) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _121 (U+0179) contains a short segment B<<0.0,1202.0>-<0.0,1210.0>-<8.0,1210.0>>
              +
              +* _121 (U+0179) contains a short segment B<<8.0,1210.0>-<16.0,1210.0>-<16.0,1202.0>>
              +
              +* _121 (U+0179) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _122 (U+017A) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _122 (U+017A) contains a short segment B<<0.0,1212.0>-<0.0,1220.0>-<8.0,1220.0>>
              +
              +* _122 (U+017A) contains a short segment B<<8.0,1220.0>-<16.0,1220.0>-<16.0,1212.0>>
              +
              +* _122 (U+017A) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _123 (U+017B) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _123 (U+017B) contains a short segment B<<0.0,1222.0>-<0.0,1230.0>-<8.0,1230.0>>
              +
              +* _123 (U+017B) contains a short segment B<<8.0,1230.0>-<16.0,1230.0>-<16.0,1222.0>>
              +
              +* _123 (U+017B) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _124 (U+017C) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _124 (U+017C) contains a short segment B<<0.0,1232.0>-<0.0,1240.0>-<8.0,1240.0>>
              +
              +* _124 (U+017C) contains a short segment B<<8.0,1240.0>-<16.0,1240.0>-<16.0,1232.0>>
              +
              +* _124 (U+017C) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _125 (U+017D) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _125 (U+017D) contains a short segment B<<0.0,1242.0>-<0.0,1250.0>-<8.0,1250.0>>
              +
              +* _125 (U+017D) contains a short segment B<<8.0,1250.0>-<16.0,1250.0>-<16.0,1242.0>>
              +
              +* _125 (U+017D) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _126 (U+017E) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _126 (U+017E) contains a short segment B<<0.0,1252.0>-<0.0,1260.0>-<8.0,1260.0>>
              +
              +* _126 (U+017E) contains a short segment B<<8.0,1260.0>-<16.0,1260.0>-<16.0,1252.0>>
              +
              +* _126 (U+017E) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>>
              +
              +* _127 (U+017F) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>>
              +
              +* _127 (U+017F) contains a short segment B<<0.0,1262.0>-<0.0,1270.0>-<8.0,1270.0>>
              +
              +* _127 (U+017F) contains a short segment B<<8.0,1270.0>-<16.0,1270.0>-<16.0,1262.0>> 
              +
              +* _127 (U+017F) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> [code: found-short-segments]
               
            diff --git a/out/fontbakery/fontbakery-report.md b/out/fontbakery/fontbakery-report.md index ca037c63..5deda3ff 100644 --- a/out/fontbakery/fontbakery-report.md +++ b/out/fontbakery/fontbakery-report.md @@ -6,11 +6,6 @@ Fontbakery version: 0.8.13 * 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent] -
          🔥 FAIL: Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer) (com.adobe.fonts/check/freetype_rasterizer)
          - - -* 🔥 **FAIL** FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]
          WARN: Ensure fonts have ScriptLangTags declared on the 'meta' table. (com.google.fonts/check/meta/script_lang_tags)
          @@ -50,6 +45,18 @@ pip3 install -U fontbakery[freetype] [code: freetype-not-installed] - _2.clip + - _20.clip + + - _21.clip + + - _22.clip + + - _23.clip + + - _24.clip + + - _25.clip + - _3.clip - _4.clip @@ -288,15 +295,18 @@ The following glyphs do not have the recommended number of contours: * ⚠ **WARN** The OpenType spec recomments at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 7 instead. Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font. [code: bad-numberOfHMetrics] -

        [8] Wavefont-Medium.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        +
        WARN: Are there any misaligned on-curve points? (com.google.fonts/check/outline_alignment_miss)
        -* 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent] -
        🔥 FAIL: Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer) (com.adobe.fonts/check/freetype_rasterizer)
        +* ⚠ **WARN** The following glyphs have on-curve points which have potentially incorrect y coordinates: + + * _122 (U+017A): X=19.0,Y=1201.0 (should be at ascender 1200?) + * _122 (U+017A): X=109.0,Y=1201.0 (should be at ascender 1200?) [code: found-misalignments] +

        [6] Wavefont-Medium.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        -* 🔥 **FAIL** FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed] + +* 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent]
        WARN: Ensure fonts have ScriptLangTags declared on the 'meta' table. (com.google.fonts/check/meta/script_lang_tags)
        @@ -336,6 +346,18 @@ pip3 install -U fontbakery[freetype] [code: freetype-not-installed] - _2.clip + - _20.clip + + - _21.clip + + - _22.clip + + - _23.clip + + - _24.clip + + - _25.clip + - _3.clip - _4.clip @@ -574,23 +596,10 @@ The following glyphs do not have the recommended number of contours: * ⚠ **WARN** The OpenType spec recomments at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 7 instead. Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font. [code: bad-numberOfHMetrics] -
        WARN: Are there any misaligned on-curve points? (com.google.fonts/check/outline_alignment_miss)
        - - -* ⚠ **WARN** The following glyphs have on-curve points which have potentially incorrect y coordinates: - - * _121 (U+0179): X=11.5,Y=1199.5 (should be at ascender 1200?) - - * _121 (U+0179): X=64.0,Y=1199.0 (should be at ascender 1200?) [code: found-misalignments] -

        [8] Wavefont-Black.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        +

        [7] Wavefont-Black.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        * 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent] -
        🔥 FAIL: Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer) (com.adobe.fonts/check/freetype_rasterizer)
        - - -* 🔥 **FAIL** FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]
        WARN: Ensure fonts have ScriptLangTags declared on the 'meta' table. (com.google.fonts/check/meta/script_lang_tags)
        @@ -630,6 +639,18 @@ pip3 install -U fontbakery[freetype] [code: freetype-not-installed] - _2.clip + - _20.clip + + - _21.clip + + - _22.clip + + - _23.clip + + - _24.clip + + - _25.clip + - _3.clip - _4.clip @@ -873,18 +894,13 @@ Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether * ⚠ **WARN** The following glyphs have on-curve points which have potentially incorrect y coordinates: - * _123 (U+017B): X=29.0,Y=1200.5 (should be at ascender 1200?) + * _123 (U+017B): X=29.5,Y=1200.5 (should be at ascender 1200?) * _123 (U+017B): X=170.5,Y=1200.5 (should be at ascender 1200?) [code: found-misalignments]

        [7] Wavefont-Light.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        * 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent] -
        🔥 FAIL: Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer) (com.adobe.fonts/check/freetype_rasterizer)
        - - -* 🔥 **FAIL** FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]
        WARN: Ensure fonts have ScriptLangTags declared on the 'meta' table. (com.google.fonts/check/meta/script_lang_tags)
        @@ -924,6 +940,18 @@ pip3 install -U fontbakery[freetype] [code: freetype-not-installed] - _2.clip + - _20.clip + + - _21.clip + + - _22.clip + + - _23.clip + + - _24.clip + + - _25.clip + - _3.clip - _4.clip @@ -1162,15 +1190,18 @@ The following glyphs do not have the recommended number of contours: * ⚠ **WARN** The OpenType spec recomments at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 7 instead. Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font. [code: bad-numberOfHMetrics] -

        [8] Wavefont-Bold.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        +
        WARN: Are there any misaligned on-curve points? (com.google.fonts/check/outline_alignment_miss)
        -* 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent] -
        🔥 FAIL: Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer) (com.adobe.fonts/check/freetype_rasterizer)
        +* ⚠ **WARN** The following glyphs have on-curve points which have potentially incorrect y coordinates: + + * _121 (U+0179): X=0.0,Y=1198.0 (should be at ascender 1200?) + * _121 (U+0179): X=25.0,Y=1198.0 (should be at ascender 1200?) [code: found-misalignments] +

        [6] Wavefont-Bold.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        -* 🔥 **FAIL** FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed] + +* 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent]
        WARN: Ensure fonts have ScriptLangTags declared on the 'meta' table. (com.google.fonts/check/meta/script_lang_tags)
        @@ -1210,6 +1241,18 @@ pip3 install -U fontbakery[freetype] [code: freetype-not-installed] - _2.clip + - _20.clip + + - _21.clip + + - _22.clip + + - _23.clip + + - _24.clip + + - _25.clip + - _3.clip - _4.clip @@ -1448,23 +1491,10 @@ The following glyphs do not have the recommended number of contours: * ⚠ **WARN** The OpenType spec recomments at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 7 instead. Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font. [code: bad-numberOfHMetrics] -
        WARN: Are there any misaligned on-curve points? (com.google.fonts/check/outline_alignment_miss)
        - - -* ⚠ **WARN** The following glyphs have on-curve points which have potentially incorrect y coordinates: - - * _122 (U+017A): X=18.5,Y=1201.5 (should be at ascender 1200?) - - * _122 (U+017A): X=109.0,Y=1201.0 (should be at ascender 1200?) [code: found-misalignments] -

        [8] Wavefont-Thin.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        +

        [6] Wavefont-Thin.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        * 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent] -
        🔥 FAIL: Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer) (com.adobe.fonts/check/freetype_rasterizer)
        - - -* 🔥 **FAIL** FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]
        WARN: Ensure fonts have ScriptLangTags declared on the 'meta' table. (com.google.fonts/check/meta/script_lang_tags)
        @@ -1504,6 +1534,18 @@ pip3 install -U fontbakery[freetype] [code: freetype-not-installed] - _2.clip + - _20.clip + + - _21.clip + + - _22.clip + + - _23.clip + + - _24.clip + + - _25.clip + - _3.clip - _4.clip @@ -1742,27 +1784,10 @@ The following glyphs do not have the recommended number of contours: * ⚠ **WARN** The OpenType spec recomments at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 7 instead. Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font. [code: bad-numberOfHMetrics] -
        WARN: Are there any misaligned on-curve points? (com.google.fonts/check/outline_alignment_miss)
        - - -* ⚠ **WARN** The following glyphs have on-curve points which have potentially incorrect y coordinates: - - * _120 (U+0178): X=0.0,Y=1198.0 (should be at ascender 1200?) - - * _120 (U+0178): X=0.0,Y=1198.0 (should be at ascender 1200?) - - * _120 (U+0178): X=5.0,Y=1198.0 (should be at ascender 1200?) - - * _120 (U+0178): X=5.0,Y=1198.0 (should be at ascender 1200?) [code: found-misalignments] -

        [8] Wavefont-Regular.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        +

        [6] Wavefont-Regular.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        * 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent] -
        🔥 FAIL: Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer) (com.adobe.fonts/check/freetype_rasterizer)
        - - -* 🔥 **FAIL** FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]
        WARN: Ensure fonts have ScriptLangTags declared on the 'meta' table. (com.google.fonts/check/meta/script_lang_tags)
        @@ -1802,6 +1827,18 @@ pip3 install -U fontbakery[freetype] [code: freetype-not-installed] - _2.clip + - _20.clip + + - _21.clip + + - _22.clip + + - _23.clip + + - _24.clip + + - _25.clip + - _3.clip - _4.clip @@ -2040,21 +2077,10 @@ The following glyphs do not have the recommended number of contours: * ⚠ **WARN** The OpenType spec recomments at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 7 instead. Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font. [code: bad-numberOfHMetrics] -
        WARN: Are there any misaligned on-curve points? (com.google.fonts/check/outline_alignment_miss)
        - - -* ⚠ **WARN** The following glyphs have on-curve points which have potentially incorrect y coordinates: - - * _121 (U+0179): X=46.0,Y=1202.0 (should be at ascender 1200?) [code: found-misalignments]

        [8] Wavefont-ExtraLight.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        * 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent] -
        🔥 FAIL: Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer) (com.adobe.fonts/check/freetype_rasterizer)
        - - -* 🔥 **FAIL** FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed]
        WARN: Ensure fonts have ScriptLangTags declared on the 'meta' table. (com.google.fonts/check/meta/script_lang_tags)
        @@ -2094,6 +2120,18 @@ pip3 install -U fontbakery[freetype] [code: freetype-not-installed] - _2.clip + - _20.clip + + - _21.clip + + - _22.clip + + - _23.clip + + - _24.clip + + - _25.clip + - _3.clip - _4.clip @@ -2337,22 +2375,177 @@ Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether * ⚠ **WARN** The following glyphs have on-curve points which have potentially incorrect y coordinates: - * _121 (U+0179): X=0.0,Y=1202.0 (should be at ascender 1200?) + * _121 (U+0179): X=0.0,Y=1202.0 (should be at ascender 1200?) - * _121 (U+0179): X=0.0,Y=1202.0 (should be at ascender 1200?) + * _121 (U+0179): X=16.0,Y=1202.0 (should be at ascender 1200?) [code: found-misalignments] +
        WARN: Are any segments inordinately short? (com.google.fonts/check/outline_short_segments)
        - * _121 (U+0179): X=16.0,Y=1202.0 (should be at ascender 1200?) - * _121 (U+0179): X=16.0,Y=1202.0 (should be at ascender 1200?) [code: found-misalignments] -

        [7] Wavefont-SemiBold.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        +* ⚠ **WARN** The following glyphs have segments which seem very short: + * _108 (U+016C) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> -* 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent] -
        🔥 FAIL: Ensure that the font can be rasterized by FreeType. (derived from com.adobe.fonts/check/freetype_rasterizer) (com.adobe.fonts/check/freetype_rasterizer)
        + * _108 (U+016C) contains a short segment B<<0.0,1072.0>-<0.0,1080.0>-<8.0,1080.0>> + + * _108 (U+016C) contains a short segment B<<8.0,1080.0>-<16.0,1080.0>-<16.0,1072.0>> + + * _108 (U+016C) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _109 (U+016D) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _109 (U+016D) contains a short segment B<<0.0,1082.0>-<0.0,1090.0>-<8.0,1090.0>> + + * _109 (U+016D) contains a short segment B<<8.0,1090.0>-<16.0,1090.0>-<16.0,1082.0>> + + * _109 (U+016D) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _110 (U+016E) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _110 (U+016E) contains a short segment B<<0.0,1092.0>-<0.0,1100.0>-<8.0,1100.0>> + + * _110 (U+016E) contains a short segment B<<8.0,1100.0>-<16.0,1100.0>-<16.0,1092.0>> + + * _110 (U+016E) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _111 (U+016F) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _111 (U+016F) contains a short segment B<<0.0,1102.0>-<0.0,1110.0>-<8.0,1110.0>> + + * _111 (U+016F) contains a short segment B<<8.0,1110.0>-<16.0,1110.0>-<16.0,1102.0>> + + * _111 (U+016F) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _112 (U+0170) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _112 (U+0170) contains a short segment B<<0.0,1112.0>-<0.0,1120.0>-<8.0,1120.0>> + + * _112 (U+0170) contains a short segment B<<8.0,1120.0>-<16.0,1120.0>-<16.0,1112.0>> + + * _112 (U+0170) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _113 (U+0171) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _113 (U+0171) contains a short segment B<<0.0,1122.0>-<0.0,1130.0>-<8.0,1130.0>> + + * _113 (U+0171) contains a short segment B<<8.0,1130.0>-<16.0,1130.0>-<16.0,1122.0>> + + * _113 (U+0171) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _114 (U+0172) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _114 (U+0172) contains a short segment B<<0.0,1132.0>-<0.0,1140.0>-<8.0,1140.0>> + + * _114 (U+0172) contains a short segment B<<8.0,1140.0>-<16.0,1140.0>-<16.0,1132.0>> + + * _114 (U+0172) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _115 (U+0173) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _115 (U+0173) contains a short segment B<<0.0,1142.0>-<0.0,1150.0>-<8.0,1150.0>> + + * _115 (U+0173) contains a short segment B<<8.0,1150.0>-<16.0,1150.0>-<16.0,1142.0>> + + * _115 (U+0173) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _116 (U+0174) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _116 (U+0174) contains a short segment B<<0.0,1152.0>-<0.0,1160.0>-<8.0,1160.0>> + + * _116 (U+0174) contains a short segment B<<8.0,1160.0>-<16.0,1160.0>-<16.0,1152.0>> + + * _116 (U+0174) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _117 (U+0175) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _117 (U+0175) contains a short segment B<<0.0,1162.0>-<0.0,1170.0>-<8.0,1170.0>> + + * _117 (U+0175) contains a short segment B<<8.0,1170.0>-<16.0,1170.0>-<16.0,1162.0>> + + * _117 (U+0175) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _118 (U+0176) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _118 (U+0176) contains a short segment B<<0.0,1172.0>-<0.0,1180.0>-<8.0,1180.0>> + + * _118 (U+0176) contains a short segment B<<8.0,1180.0>-<16.0,1180.0>-<16.0,1172.0>> + + * _118 (U+0176) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _119 (U+0177) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _119 (U+0177) contains a short segment B<<0.0,1182.0>-<0.0,1190.0>-<8.0,1190.0>> + + * _119 (U+0177) contains a short segment B<<8.0,1190.0>-<16.0,1190.0>-<16.0,1182.0>> + * _119 (U+0177) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> -* 🔥 **FAIL** FreeType is not available. To fix this, invoke the 'freetype' extra when installing Font Bakery: -pip3 install -U fontbakery[freetype] [code: freetype-not-installed] + * _120 (U+0178) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _120 (U+0178) contains a short segment B<<0.0,1192.0>-<0.0,1200.0>-<8.0,1200.0>> + + * _120 (U+0178) contains a short segment B<<8.0,1200.0>-<16.0,1200.0>-<16.0,1192.0>> + + * _120 (U+0178) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _121 (U+0179) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _121 (U+0179) contains a short segment B<<0.0,1202.0>-<0.0,1210.0>-<8.0,1210.0>> + + * _121 (U+0179) contains a short segment B<<8.0,1210.0>-<16.0,1210.0>-<16.0,1202.0>> + + * _121 (U+0179) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _122 (U+017A) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _122 (U+017A) contains a short segment B<<0.0,1212.0>-<0.0,1220.0>-<8.0,1220.0>> + + * _122 (U+017A) contains a short segment B<<8.0,1220.0>-<16.0,1220.0>-<16.0,1212.0>> + + * _122 (U+017A) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _123 (U+017B) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _123 (U+017B) contains a short segment B<<0.0,1222.0>-<0.0,1230.0>-<8.0,1230.0>> + + * _123 (U+017B) contains a short segment B<<8.0,1230.0>-<16.0,1230.0>-<16.0,1222.0>> + + * _123 (U+017B) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _124 (U+017C) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _124 (U+017C) contains a short segment B<<0.0,1232.0>-<0.0,1240.0>-<8.0,1240.0>> + + * _124 (U+017C) contains a short segment B<<8.0,1240.0>-<16.0,1240.0>-<16.0,1232.0>> + + * _124 (U+017C) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _125 (U+017D) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _125 (U+017D) contains a short segment B<<0.0,1242.0>-<0.0,1250.0>-<8.0,1250.0>> + + * _125 (U+017D) contains a short segment B<<8.0,1250.0>-<16.0,1250.0>-<16.0,1242.0>> + + * _125 (U+017D) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _126 (U+017E) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _126 (U+017E) contains a short segment B<<0.0,1252.0>-<0.0,1260.0>-<8.0,1260.0>> + + * _126 (U+017E) contains a short segment B<<8.0,1260.0>-<16.0,1260.0>-<16.0,1252.0>> + + * _126 (U+017E) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> + + * _127 (U+017F) contains a short segment B<<8.0,0.0>-<0.0,0.0>-<0.0,8.0>> + + * _127 (U+017F) contains a short segment B<<0.0,1262.0>-<0.0,1270.0>-<8.0,1270.0>> + + * _127 (U+017F) contains a short segment B<<8.0,1270.0>-<16.0,1270.0>-<16.0,1262.0>> + + * _127 (U+017F) contains a short segment B<<16.0,8.0>-<16.0,0.0>-<8.0,0.0>> [code: found-short-segments] +

        [7] Wavefont-SemiBold.ttf
        🔥 FAIL: Checking OS/2 usWinAscent & usWinDescent. (com.google.fonts/check/family/win_ascent_and_descent)
        + + +* 🔥 **FAIL** OS/2.usWinAscent value should be equal or greater than 1270, but got 1200 instead [code: ascent]
        WARN: Ensure fonts have ScriptLangTags declared on the 'meta' table. (com.google.fonts/check/meta/script_lang_tags)
        @@ -2392,6 +2585,18 @@ pip3 install -U fontbakery[freetype] [code: freetype-not-installed] - _2.clip + - _20.clip + + - _21.clip + + - _22.clip + + - _23.clip + + - _24.clip + + - _25.clip + - _3.clip - _4.clip @@ -2630,14 +2835,26 @@ The following glyphs do not have the recommended number of contours: * ⚠ **WARN** The OpenType spec recomments at https://learn.microsoft.com/en-us/typography/opentype/spec/recom#hhea-table that hhea.numberOfHMetrics be set to 3 but this font has 7 instead. Please read https://github.com/fonttools/fonttools/issues/3014 to decide whether this makes sense for your font. [code: bad-numberOfHMetrics] +
        WARN: Are there any misaligned on-curve points? (com.google.fonts/check/outline_alignment_miss)
        + + +* ⚠ **WARN** The following glyphs have on-curve points which have potentially incorrect y coordinates: + + * _121 (U+0179): X=9.5,Y=1200.5 (should be at ascender 1200?) + + * _121 (U+0179): X=54.5,Y=1200.5 (should be at ascender 1200?) + + * _123 (U+017B): X=0.0,Y=1198.0 (should be at ascender 1200?) + + * _123 (U+017B): X=64.0,Y=1198.0 (should be at ascender 1200?) [code: found-misalignments]

        ### Summary | 💔 ERROR | 🔥 FAIL | ⚠ WARN | 💤 SKIP | ℹ INFO | 🍞 PASS | 🔎 DEBUG | |:-----:|:----:|:----:|:----:|:----:|:----:|:----:| -| 0 | 18 | 51 | 1118 | 55 | 836 | 0 | -| 0% | 1% | 2% | 54% | 3% | 40% | 0% | +| 0 | 9 | 51 | 1109 | 55 | 854 | 0 | +| 0% | 0% | 2% | 53% | 3% | 41% | 0% | **Note:** The following loglevels were omitted in this report: * **SKIP** diff --git a/out/proof/Bold-Thin-Regular-ExtraLight/Wavefont-Bold.ttf b/out/proof/Bold-Thin-Regular-ExtraLight/Wavefont-Bold.ttf index 405fab947f7d238d03927e3b5de703bee4135e83..2b9690230a5ddc7d131c1621eab4ea268c39e986 100644 GIT binary patch literal 31876 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 delta 9064 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%0DguAEgixrL*Jy;rJAPVM)mp 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 diff --git a/out/proof/Bold-Thin-Regular-ExtraLight/Wavefont-Thin.ttf b/out/proof/Bold-Thin-Regular-ExtraLight/Wavefont-Thin.ttf index b78f339606bef2eaa7ea420c05cf79c3bea11222..ec79d83e96af80d5d4c706195f9e1036f930e657 100644 GIT binary patch delta 7812 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 W-!ZHU{_Hef0a5df^JHEN8W%vHE4TP{G z@VImQMRT*2)hwHklm&Rda#G9W=5eJ5<`E*lL5RyaxoHk8@nCs%h_=boFPU^-Q|nWN z`1cUfzhlb8rU}`9FRvsT5uBKzdJ0|MWGVE6a($^BoG^pInc3YhC)vVgW=V6YwB36cWx9q>z`U zM#?`!*)%CHd?36p{A+km_`C4V@Mq!e;rGH@!>@+7gr5m-3O^d&5MCQ@Yp-V0k}E9jl{ z3HmPG!(^7thO#r*40biUhdsr%v0p@0%oB%+XN$AN#bTTItoX6`hvbq9rK6>DrHiDS zq&3nO>2v8XIaxkJu9wGZ@}=@p`62lgd8d3(@hfG@Ny-G}Kgw;&Bgz}fw>Dx+w^iCs zwN0@twB2rd%=Wfzw_UVn*$3NCw@KW#l?P>FTjLom_d+a{^DMW6U1R+>lZAW)4liBgF%ZsEQ}h%q;%Zj;GM zY|fb z1ZOmfj7f|}Q#zVM`d2W)er2qY(ngb+5zA=&!NAy5N~fAoYb<0ob10o-G7A%%`IOF& z7|l3R7bixGC|zVqbZcU>gwiD@v(jv|o?i*ZR#3Xagw~i*EVGKzRVLGs*sP~iTW>;} z6QhlkZZw%!5}Ow&eZgejHH;RoVPNb{O5Zf0PYo2`d`RhsCi86qqoK*#LFoCTn6Ef(NP&v?B27;-xV2*@&kuxX7Fk1IbcO1}@ z96BQg>TX8DJj|K%Etqp)?q>|WxacVrow2SaHQs(54|E5YXto8@3=`taWhSFV&dEIv zpo@X7;m}nk6x&=5gVXup6}riSxlRMRkVDHYpj%+3appb?<}R2f&OFpC2fv;u+282x2Sz4CLj|p?HWhf5RwUhT0Mv$|(KkpH8EpH%pT(pd_H*xkMQj zOe)OxoEgy5Xx+bhv_H@n94hOHdYEFE4>&W_f~kUeooR=^uk=_8=qRA)xJ0K~Fek!1 z&Y81$qs2ah(NRDTa%dcn;+XSb?&ZvM3r3p^w2VU+SwOR3Zsg1Y3uYe7m7KXYYP86u zQJe;dUI{dhLrX0rx)Ej;XYTCPXt)N$HQO?v$sAhUD~g(XVb0^sBNohqFrzs0lx6`v z4s;@iUb0}GgE@*bZ^tp(;VV&Wh1Y?qIP`HG#G4ObiaGPO1@i?=|ENLxg9hj)3+Q{G zR4&n97R>K3NnHll=G~int-MEL@(&Q>kh2HsVVFYc!M{13SyW z3-k?_sK|oJhxvpvm7GEQ8?!gV1_8app!ntl@qN85!!*Kz2I-cYAO-|^t( zoVme*xd!H9&S%c1lx6xXD{=(i<0uPMd6ghpdxKcF2P zDou!(I1uJT&J4C-Dq!B^%+b2hI&TigX@JCk0lmPXlPx4V9%dtF&g{kD`YX}^iKhXr z=g`<*kYWA}vx+kpSTGY|R&*InoNEEi1X|LC#Q#_@m%uFI%+)cC#@&l&O#CmfzLTIJDgYdJl<8IJ47&`3xqPGkXpjE$-b9@jIY24(&UP;+tP# z++BvK#ETo87}mo$QI6tI@hSd_++fXss>+%Hxfnj8WsC}XL{J3*Hvur|rG8ox!Us^Q z7@+f#fpr7iNe)?*LbFN+)^;sJmC$dek~#Vp}R|~DttCZ6<)F#WA zlA~qB>_nMM>U$*XpBu1IW)BRHhI+rOD6&6VM&M_mvj^4ZW!NcGGe$&1L%M<~Jz8Q# z^a0-zGA49w*)b(0?o^3UG1WcVsEqL@DK?vuHWT!|zq>Hk;RPM9^13Ye_38HkXUh z(5&*ogKJaz>9k+U9HY`2=wq|n?a6^aGJ>rShP8pWpd3yXMsc#D;~_QvTz${x`sW*! zg?)W6c3)p3M(i^v>&fCSy8||mFH@%E2NoHX#hIx#RkfvN8Zlxwp&Wss=E#TE^PUzQ zQkh<;+rsoEM&;J*fL&GXfovm2?4u|f$V%Aky3Ek

        @@ -3582,6 +3593,81 @@

        fontToggle.addEventListener("click", switchFonts); } +// apply optional ot feats + +function buildFeatureList() { + var features = [ + 'c2sc', 'calt', 'case', 'cpsp', 'dlig', 'dnom', + 'frac', 'kern', 'liga', 'lnum', 'numr', 'onum', + 'ordn', 'pnum', 'salt', 'sinf', 'smcp', 'sups', + 'swsh', 'titl', 'tnum', 'zero', 'ss01', 'ss02', + 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', + 'ss09', 'ss10', 'ss11', 'ss12', 'ss13', 'ss14', + 'ss15', 'ss16', 'ss17', 'ss18', 'ss19', 'ss20' + ] + + var otPanel = document.getElementById("ot-panel") + for (i=0; i