diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 00000000..641749d5 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,37 @@ +name: Build font and specimen + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.8 + uses: actions/setup-python@v2 + with: + python-version: 3.8 + - name: Install Linux dependencies + run: | + sudo snap install yq + - name: Build font + run: make build + - name: Check with fontbakery + run: make test + continue-on-error: true + - name: Generate proofs + run: make proof + - name: Gather + run: | + mkdir for-gh-pages + mv fontbakery-report.html for-gh-pages + mv proof/* for-gh-pages + - name: Archive artifacts + uses: actions/upload-artifact@v2 + with: + name: Artifacts + path: | + for-gh-pages + - name: Remove temp folder + run: | + rm -rf for-gh-pages \ No newline at end of file diff --git a/.gitignore b/.gitignore index e43b0f98..8fada71b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,14 @@ +*~ +venv +build.stamp +proof + +# OS generated files # +###################### .DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..e9b7c7cb --- /dev/null +++ b/Makefile @@ -0,0 +1,34 @@ +SOURCES=$(shell yq e '.sources.[] | sub("^","sources/")' sources/config.yaml ) +FAMILY=$(shell yq e '.familyName' sources/config.yaml ) + +help: + @echo "###" + @echo "# Build targets for $(FAMILY)" + @echo "###" + @echo + @echo " make build: Builds the fonts and places them in the fonts/ directory" + @echo " make test: Tests the fonts with fontbakery" + @echo " make proof: Creates HTML proof documents in the proof/ directory" + @echo + +build: build.stamp sources/config.yaml $(SOURCES) + +venv: venv/touchfile + +build.stamp: venv + . venv/bin/activate; gftools builder sources/config.yaml && touch build.stamp + +venv/touchfile: requirements.txt + test -d venv || python3 -m venv venv + . venv/bin/activate; pip install -Ur requirements.txt + touch venv/touchfile + +test: venv build.stamp + . venv/bin/activate; fontbakery check-googlefonts --html fontbakery-report.html --ghmarkdown fontbakery-report.md $(shell find fonts -type f) + +proof: venv build.stamp + . venv/bin/activate; gftools gen-html proof $(shell find fonts/ttf -type f) -o proof + +clean: + rm -rf venv + find -iname "*.pyc" -delete diff --git a/README.md b/README.md index 937a0d2a..53f62cdd 100644 --- a/README.md +++ b/README.md @@ -35,8 +35,24 @@ Expansion to GF Cyrillic Plus, Pro, and locl has been completed by original auth Vietnamese glyphs were added by Nhung Nguyen @crystaltype -### License +## Building + +Fonts are built automatically by GitHub Actions - take a look in the "Actions" tab for the latest build. + +If you particularly want to build fonts manually on your own computer, you will need to install the [`yq` utility](https://github.com/mikefarah/yq). On OS X with Homebrew, type `brew install yq`; on Linux, try `snap install yq`; if all else fails, try the instructions on the linked page. + +Then: + +* `make build` will produce font files. +* `make test` will run [FontBakery](https://github.com/googlefonts/fontbakery)'s quality assurance tests. +* `make proof` will generate HTML proof files. + +## License This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: +This license is copied below, and is also available with a FAQ at http://scripts.sil.org/OFL + +## Repository Layout + +This font repository structure is inspired by [Unified Font Repository v0.3](https://github.com/unified-font-repository/Unified-Font-Repository), modified for the Google Fonts workflow. diff --git a/fonts/otf/Lora-Bold.otf b/fonts/otf/Lora-Bold.otf index 665b42b8..d8e1fa19 100644 Binary files a/fonts/otf/Lora-Bold.otf and b/fonts/otf/Lora-Bold.otf differ diff --git a/fonts/otf/Lora-BoldItalic.otf b/fonts/otf/Lora-BoldItalic.otf index a596011c..e00415ce 100644 Binary files a/fonts/otf/Lora-BoldItalic.otf and b/fonts/otf/Lora-BoldItalic.otf differ diff --git a/fonts/otf/Lora-Italic.otf b/fonts/otf/Lora-Italic.otf index 82105c89..f80c9033 100644 Binary files a/fonts/otf/Lora-Italic.otf and b/fonts/otf/Lora-Italic.otf differ diff --git a/fonts/otf/Lora-Medium.otf b/fonts/otf/Lora-Medium.otf index 559b6fe7..8830db90 100644 Binary files a/fonts/otf/Lora-Medium.otf and b/fonts/otf/Lora-Medium.otf differ diff --git a/fonts/otf/Lora-MediumItalic.otf b/fonts/otf/Lora-MediumItalic.otf index 25e6c38f..98728c35 100644 Binary files a/fonts/otf/Lora-MediumItalic.otf and b/fonts/otf/Lora-MediumItalic.otf differ diff --git a/fonts/otf/Lora-Regular.otf b/fonts/otf/Lora-Regular.otf index f158a380..7b0801ab 100644 Binary files a/fonts/otf/Lora-Regular.otf and b/fonts/otf/Lora-Regular.otf differ diff --git a/fonts/otf/Lora-SemiBold.otf b/fonts/otf/Lora-SemiBold.otf new file mode 100644 index 00000000..b3cf5b0d Binary files /dev/null and b/fonts/otf/Lora-SemiBold.otf differ diff --git a/fonts/otf/Lora-SemiBoldItalic.otf b/fonts/otf/Lora-SemiBoldItalic.otf new file mode 100644 index 00000000..29026f76 Binary files /dev/null and b/fonts/otf/Lora-SemiBoldItalic.otf differ diff --git a/fonts/ttf/Lora-Bold.ttf b/fonts/ttf/Lora-Bold.ttf index 3221a20f..a006a85e 100644 Binary files a/fonts/ttf/Lora-Bold.ttf and b/fonts/ttf/Lora-Bold.ttf differ diff --git a/fonts/ttf/Lora-BoldItalic.ttf b/fonts/ttf/Lora-BoldItalic.ttf index c9023907..eb3f57f0 100644 Binary files a/fonts/ttf/Lora-BoldItalic.ttf and b/fonts/ttf/Lora-BoldItalic.ttf differ diff --git a/fonts/ttf/Lora-Italic.ttf b/fonts/ttf/Lora-Italic.ttf index 0d48ed93..26bc0172 100644 Binary files a/fonts/ttf/Lora-Italic.ttf and b/fonts/ttf/Lora-Italic.ttf differ diff --git a/fonts/ttf/Lora-Medium.ttf b/fonts/ttf/Lora-Medium.ttf index 07716503..e4ab2a23 100644 Binary files a/fonts/ttf/Lora-Medium.ttf and b/fonts/ttf/Lora-Medium.ttf differ diff --git a/fonts/ttf/Lora-MediumItalic.ttf b/fonts/ttf/Lora-MediumItalic.ttf index 517cf98b..bb0ac8df 100644 Binary files a/fonts/ttf/Lora-MediumItalic.ttf and b/fonts/ttf/Lora-MediumItalic.ttf differ diff --git a/fonts/ttf/Lora-Regular.ttf b/fonts/ttf/Lora-Regular.ttf index e45fa66a..20344da5 100644 Binary files a/fonts/ttf/Lora-Regular.ttf and b/fonts/ttf/Lora-Regular.ttf differ diff --git a/fonts/ttf/Lora-SemiBold.ttf b/fonts/ttf/Lora-SemiBold.ttf new file mode 100644 index 00000000..86f5c9f5 Binary files /dev/null and b/fonts/ttf/Lora-SemiBold.ttf differ diff --git a/fonts/ttf/Lora-SemiBoldItalic.ttf b/fonts/ttf/Lora-SemiBoldItalic.ttf new file mode 100644 index 00000000..bd3a9d12 Binary files /dev/null and b/fonts/ttf/Lora-SemiBoldItalic.ttf differ diff --git a/fonts/variable/Lora-Italic[wght].ttf b/fonts/variable/Lora-Italic[wght].ttf new file mode 100644 index 00000000..1f4aeab1 Binary files /dev/null and b/fonts/variable/Lora-Italic[wght].ttf differ diff --git a/fonts/variable/Lora[wght].ttf b/fonts/variable/Lora[wght].ttf new file mode 100644 index 00000000..96361f00 Binary files /dev/null and b/fonts/variable/Lora[wght].ttf differ diff --git a/fonts/vf/Lora-Italic[wght].ttf b/fonts/vf/Lora-Italic[wght].ttf deleted file mode 100644 index ba5360f0..00000000 Binary files a/fonts/vf/Lora-Italic[wght].ttf and /dev/null differ diff --git a/fonts/vf/Lora[wght].ttf b/fonts/vf/Lora[wght].ttf deleted file mode 100644 index 6ba90696..00000000 Binary files a/fonts/vf/Lora[wght].ttf and /dev/null differ diff --git a/fonts/webfonts/Lora-Bold.woff2 b/fonts/webfonts/Lora-Bold.woff2 new file mode 100644 index 00000000..6b3372ae Binary files /dev/null and b/fonts/webfonts/Lora-Bold.woff2 differ diff --git a/fonts/webfonts/Lora-BoldItalic.woff2 b/fonts/webfonts/Lora-BoldItalic.woff2 new file mode 100644 index 00000000..ae23cc2a Binary files /dev/null and b/fonts/webfonts/Lora-BoldItalic.woff2 differ diff --git a/fonts/webfonts/Lora-Italic.woff2 b/fonts/webfonts/Lora-Italic.woff2 new file mode 100644 index 00000000..1d3d9afc Binary files /dev/null and b/fonts/webfonts/Lora-Italic.woff2 differ diff --git a/fonts/webfonts/Lora-Medium.woff2 b/fonts/webfonts/Lora-Medium.woff2 new file mode 100644 index 00000000..8734adc0 Binary files /dev/null and b/fonts/webfonts/Lora-Medium.woff2 differ diff --git a/fonts/webfonts/Lora-MediumItalic.woff2 b/fonts/webfonts/Lora-MediumItalic.woff2 new file mode 100644 index 00000000..03d03b08 Binary files /dev/null and b/fonts/webfonts/Lora-MediumItalic.woff2 differ diff --git a/fonts/webfonts/Lora-Regular.woff2 b/fonts/webfonts/Lora-Regular.woff2 new file mode 100644 index 00000000..f5a7f6ed Binary files /dev/null and b/fonts/webfonts/Lora-Regular.woff2 differ diff --git a/fonts/webfonts/Lora-SemiBold.woff2 b/fonts/webfonts/Lora-SemiBold.woff2 new file mode 100644 index 00000000..2cc89b9f Binary files /dev/null and b/fonts/webfonts/Lora-SemiBold.woff2 differ diff --git a/fonts/webfonts/Lora-SemiBoldItalic.woff2 b/fonts/webfonts/Lora-SemiBoldItalic.woff2 new file mode 100644 index 00000000..976e6d46 Binary files /dev/null and b/fonts/webfonts/Lora-SemiBoldItalic.woff2 differ diff --git a/requirements.txt b/requirements.txt index 27d7b63b..016e66b2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,57 +1,3 @@ -absl-py==0.9.0 -appdirs==1.4.3 -attrs==19.3.0 -beautifulsoup4==4.8.2 -booleanOperations==0.9.0 -certifi==2019.11.28 -chardet==3.0.4 -Click==7.0 -commandlines==0.4.1 -compreffor==0.5.0 -cu2qu==1.6.6 -defcon==0.6.0 -Deprecated==1.2.7 -Flask==1.1.1 -font-v==0.7.1 -fontbakery==0.7.17 -fontdiffenator==0.9.1 -fontmake==2.0.9 -fontMath==0.5.2 -fonttools==4.3.0 -freetype-py==2.1.0.post1 -fs==2.4.11 -gfdiffbrowsers==0.1.6 -gftools==0.3.1 -gitdb2==2.0.6 -GitPython==3.0.5 -glyphsLib==5.1.4 -idna==2.8 -itsdangerous==1.1.0 -Jinja2==2.11.1 -lxml==4.5.0 -MarkupSafe==1.1.1 -opentype-sanitizer==8.0.0.post2 -Pillow==7.0.0 -protobuf==3.11.3 -pybrowserstack-screenshots==0.1 -pycairo==1.19.0 -pyclipper==1.1.0.post3 -PyGithub==1.45 -PyJWT==1.7.1 -pytz==2019.3 -requests==2.22.0 -simplejson==3.17.0 -six==1.14.0 -smmap2==2.0.5 -soupsieve==1.9.5 -tabulate==0.8.6 -ttfautohint-py==0.4.3 -ufo2ft==2.11.1 -ufoLib2==0.5.1 -ufolint==0.4.1 -uharfbuzz==0.5.1.post2 -unicodedata2==12.1.0 -Unidecode==1.1.1 -urllib3==1.25.8 -Werkzeug==0.16.1 -wrapt==1.11.2 +fontmake>=2.4 +fontbakery>=0.7 +gftools>=0.7 diff --git a/sources/Batch Generated Variable Fonts Report.txt b/sources/Batch Generated Variable Fonts Report.txt deleted file mode 100644 index 0b7bc908..00000000 --- a/sources/Batch Generated Variable Fonts Report.txt +++ /dev/null @@ -1,926 +0,0 @@ -Batch Generated Variable Fonts: -******************************* - -source: /Users/richardlipton/Desktop/Git fonts/Lora-Cyrillic/sources/Lora.designspace -path: /Users/richardlipton/Desktop/Git fonts/Lora-Cyrillic/sources/Lora.ttf - Making master glyphs compatible - ''''''''''''''''''''''''''''''' - Adding missing glyph 'space.tf' in master 'Lora Regular (public.default)' - Adding missing glyph 'space.tf' in master 'Lora Bold (public.default)' - Adding missing glyph 'uni0000' in master 'Lora Regular (public.default)' - Adding missing glyph 'uni0000' in master 'Lora Bold (public.default)' - - Decompose Mixed Glyphs - '''''''''''''''''''''' - Decomposing glyph 'Kastroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'obarred-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Dzhe-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Lslash' in master 'Lora Regular (public.default)' - Decomposing glyph 'Ertick-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'esdescender-cy.loclBSH' in master 'Lora Regular (public.default)' - Decomposing glyph 'Zedescender-cy.loclBSH' in master 'Lora Regular (public.default)' - Decomposing glyph 'hastroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'gestrokehook-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'chedescenderabkhasian-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Obarred-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'kastroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'tugrik' in master 'Lora Regular (public.default)' - Decomposing glyph 'gstroke' in master 'Lora Regular (public.default)' - Decomposing glyph 'Ustraightstroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Semisoftsign-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Gstroke' in master 'Lora Regular (public.default)' - Decomposing glyph 'perthousand' in master 'Lora Regular (public.default)' - Decomposing glyph 'zedescender-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Tbar' in master 'Lora Regular (public.default)' - Decomposing glyph 'dzhe-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'ertick-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Oslash' in master 'Lora Regular (public.default)' - Decomposing glyph 'zedescender-cy.loclBSH' in master 'Lora Regular (public.default)' - Decomposing glyph 'Gestrokehook-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'greaterequal' in master 'Lora Regular (public.default)' - Decomposing glyph 'kaverticalstroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'ghestroke-cy.loclBSH' in master 'Lora Regular (public.default)' - Decomposing glyph 'Fita-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Eng' in master 'Lora Regular (public.default)' - Decomposing glyph 'Uhorn' in master 'Lora Regular (public.default)' - Decomposing glyph 'e-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Esdescender-cy.loclBSH' in master 'Lora Regular (public.default)' - Decomposing glyph 'Eth' in master 'Lora Regular (public.default)' - Decomposing glyph 'Kaverticalstroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'ghestroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Zedescender-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Chedescenderabkhasian-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'esdescender-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'lessequal' in master 'Lora Regular (public.default)' - Decomposing glyph 'tbar' in master 'Lora Regular (public.default)' - Decomposing glyph 'Ghestroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'hbar' in master 'Lora Regular (public.default)' - Decomposing glyph 'ghemiddlehook-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Esdescender-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'cheverticalstroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Hastroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Ghemiddlehook-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'Hbar' in master 'Lora Regular (public.default)' - Decomposing glyph 'ustraightstroke-cy' in master 'Lora Regular (public.default)' - Decomposing glyph 'lslash' in master 'Lora Regular (public.default)' - Decomposing glyph 'Kastroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'obarred-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Dzhe-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Lslash' in master 'Lora Bold (public.default)' - Decomposing glyph 'Ertick-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'esdescender-cy.loclBSH' in master 'Lora Bold (public.default)' - Decomposing glyph 'Zedescender-cy.loclBSH' in master 'Lora Bold (public.default)' - Decomposing glyph 'hastroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'gestrokehook-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'chedescenderabkhasian-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Obarred-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'kastroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'tugrik' in master 'Lora Bold (public.default)' - Decomposing glyph 'gstroke' in master 'Lora Bold (public.default)' - Decomposing glyph 'Ustraightstroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Semisoftsign-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Gstroke' in master 'Lora Bold (public.default)' - Decomposing glyph 'perthousand' in master 'Lora Bold (public.default)' - Decomposing glyph 'zedescender-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Tbar' in master 'Lora Bold (public.default)' - Decomposing glyph 'dzhe-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'ertick-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Oslash' in master 'Lora Bold (public.default)' - Decomposing glyph 'zedescender-cy.loclBSH' in master 'Lora Bold (public.default)' - Decomposing glyph 'Gestrokehook-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'greaterequal' in master 'Lora Bold (public.default)' - Decomposing glyph 'kaverticalstroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'ghestroke-cy.loclBSH' in master 'Lora Bold (public.default)' - Decomposing glyph 'Fita-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Eng' in master 'Lora Bold (public.default)' - Decomposing glyph 'Uhorn' in master 'Lora Bold (public.default)' - Decomposing glyph 'e-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Esdescender-cy.loclBSH' in master 'Lora Bold (public.default)' - Decomposing glyph 'Eth' in master 'Lora Bold (public.default)' - Decomposing glyph 'Kaverticalstroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'ghestroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Zedescender-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Chedescenderabkhasian-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'esdescender-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'lessequal' in master 'Lora Bold (public.default)' - Decomposing glyph 'tbar' in master 'Lora Bold (public.default)' - Decomposing glyph 'Ghestroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'hbar' in master 'Lora Bold (public.default)' - Decomposing glyph 'ghemiddlehook-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Esdescender-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'cheverticalstroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Hastroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Ghemiddlehook-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'Hbar' in master 'Lora Bold (public.default)' - Decomposing glyph 'ustraightstroke-cy' in master 'Lora Bold (public.default)' - Decomposing glyph 'lslash' in master 'Lora Bold (public.default)' - - Making master kerning compatible - '''''''''''''''''''''''''''''''' - Adding missing kerning pairs in Lora Regular: (public.kern1.J, colon) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.d) - Adding missing kerning pairs in Lora Bold: (public.kern1.r, public.kern2.t) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, public.kern2.t) - Adding missing kerning pairs in Lora Bold: (eight, periodcentered) - Adding missing kerning pairs in Lora Bold: (w, q) - Adding missing kerning pairs in Lora Bold: (public.kern1.t, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (parenleft, public.kern2.h) - Adding missing kerning pairs in Lora Bold: (public.kern1.A, X) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, igrave) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, trademark) - Adding missing kerning pairs in Lora Regular: (V, public.kern2.S) - Adding missing kerning pairs in Lora Regular: (public.kern1.d, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (public.kern1.k, slash) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, W) - Adding missing kerning pairs in Lora Bold: (eight, nine) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, parenright) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, four) - Adding missing kerning pairs in Lora Regular: (braceleft, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, public.kern2.f) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (nine, fraction) - Adding missing kerning pairs in Lora Regular: (eight, V) - Adding missing kerning pairs in Lora Bold: (public.kern1.n, T) - Adding missing kerning pairs in Lora Regular: (idieresis, braceright) - Adding missing kerning pairs in Lora Bold: (public.kern1.z, public.kern2.d) - Adding missing kerning pairs in Lora Regular: (P, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, idieresis) - Adding missing kerning pairs in Lora Regular: (public.kern1.L, ampersand) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.guilsinglright) - Adding missing kerning pairs in Lora Regular: (public.kern1.y, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, public.kern2.i) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, public.kern2.b) - Adding missing kerning pairs in Lora Regular: (public.kern1.i, public.kern2.hyphen) - Adding missing kerning pairs in Lora Bold: (public.kern1.Z, public.kern2.O) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, public.kern2.s) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, parenright) - Adding missing kerning pairs in Lora Bold: (P, v) - Adding missing kerning pairs in Lora Regular: (germandbls, question) - Adding missing kerning pairs in Lora Bold: (public.kern1.L, public.kern2.hyphen) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, public.kern2.s) - Adding missing kerning pairs in Lora Regular: (public.kern1.k, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, zero) - Adding missing kerning pairs in Lora Regular: (X, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.o, public.kern2.h) - Adding missing kerning pairs in Lora Regular: (two, braceright) - Adding missing kerning pairs in Lora Bold: (W, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (four, public.kern2.T) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, w) - Adding missing kerning pairs in Lora Regular: (public.kern1.quoteleft, public.kern2.y) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, G) - Adding missing kerning pairs in Lora Regular: (public.kern1.k, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteright, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (V, nine) - Adding missing kerning pairs in Lora Regular: (public.kern1.T, public.kern2.i) - Adding missing kerning pairs in Lora Regular: (w, backslash) - Adding missing kerning pairs in Lora Regular: (parenleft, lslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.n, public.kern2.hyphen) - Adding missing kerning pairs in Lora Bold: (public.kern1.R, x) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, public.kern2.y) - Adding missing kerning pairs in Lora Regular: (eth, question) - Adding missing kerning pairs in Lora Regular: (public.kern1.O, public.kern2.b) - Adding missing kerning pairs in Lora Regular: (public.kern1.d, V) - Adding missing kerning pairs in Lora Regular: (three, W) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, comma) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.Z) - Adding missing kerning pairs in Lora Bold: (V, V) - Adding missing kerning pairs in Lora Regular: (quotedbl, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.f, public.kern2.S) - Adding missing kerning pairs in Lora Bold: (public.kern1.e, v) - Adding missing kerning pairs in Lora Regular: (W, registered) - Adding missing kerning pairs in Lora Regular: (braceleft, X) - Adding missing kerning pairs in Lora Regular: (braceleft, idieresis) - Adding missing kerning pairs in Lora Regular: (public.kern1.r, public.kern2.b) - Adding missing kerning pairs in Lora Bold: (two, four) - Adding missing kerning pairs in Lora Regular: (braceleft, public.kern2.f) - Adding missing kerning pairs in Lora Regular: (nine, V) - Adding missing kerning pairs in Lora Regular: (X, slash) - Adding missing kerning pairs in Lora Regular: (X, public.kern2.u) - Adding missing kerning pairs in Lora Bold: (q, public.kern2.d) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, public.kern2.S) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, W) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, bar) - Adding missing kerning pairs in Lora Bold: (idieresis, V) - Adding missing kerning pairs in Lora Regular: (slash, seven) - Adding missing kerning pairs in Lora Regular: (x, public.kern2.g) - Adding missing kerning pairs in Lora Bold: (seven, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Bold: (public.kern1.i, parenright) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.s) - Adding missing kerning pairs in Lora Regular: (four, V) - Adding missing kerning pairs in Lora Bold: (v, x) - Adding missing kerning pairs in Lora Bold: (public.kern1.z, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (public.kern1.D, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (V, ampersand) - Adding missing kerning pairs in Lora Bold: (public.kern1.K, Q) - Adding missing kerning pairs in Lora Bold: (P, agrave) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, exclam) - Adding missing kerning pairs in Lora Bold: (braceleft, one) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, X) - Adding missing kerning pairs in Lora Regular: (W, eight) - Adding missing kerning pairs in Lora Bold: (one, bracketright) - Adding missing kerning pairs in Lora Regular: (public.kern1.K, public.kern2.g) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteright, public.kern2.I) - Adding missing kerning pairs in Lora Bold: (q, v) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, colon) - Adding missing kerning pairs in Lora Bold: (public.kern1.C, public.kern2.z) - Adding missing kerning pairs in Lora Bold: (one, periodcentered) - Adding missing kerning pairs in Lora Bold: (public.kern1.y, comma) - Adding missing kerning pairs in Lora Regular: (bracketleft, public.kern2.h) - Adding missing kerning pairs in Lora Regular: (public.kern1.y, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, public.kern2.guilsinglright) - Adding missing kerning pairs in Lora Bold: (quotesinglbase, v) - Adding missing kerning pairs in Lora Regular: (Q, slash) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, bracketright) - Adding missing kerning pairs in Lora Bold: (public.kern1.O, T) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.O) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.quotesingle) - Adding missing kerning pairs in Lora Bold: (X, x) - Adding missing kerning pairs in Lora Regular: (F, braceright) - Adding missing kerning pairs in Lora Regular: (W, public.kern2.S) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.quotesingle) - Adding missing kerning pairs in Lora Regular: (trademark, V) - Adding missing kerning pairs in Lora Regular: (four, W) - Adding missing kerning pairs in Lora Bold: (public.kern1.a, public.kern2.d) - Adding missing kerning pairs in Lora Regular: (public.kern1.n, public.kern2.u) - Adding missing kerning pairs in Lora Regular: (braceleft, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (ccircumflex, public.kern2.Y) - Adding missing kerning pairs in Lora Bold: (one, minus) - Adding missing kerning pairs in Lora Bold: (W, aacute) - Adding missing kerning pairs in Lora Regular: (public.kern1.O, public.kern2.h) - Adding missing kerning pairs in Lora Bold: (zero, two) - Adding missing kerning pairs in Lora Regular: (b, backslash) - Adding missing kerning pairs in Lora Bold: (public.kern1.T, comma) - Adding missing kerning pairs in Lora Regular: (public.kern1.O, bar) - Adding missing kerning pairs in Lora Regular: (X, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (germandbls, p) - Adding missing kerning pairs in Lora Bold: (six, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.a, asterisk) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, public.kern2.A) - Adding missing kerning pairs in Lora Bold: (W, comma) - Adding missing kerning pairs in Lora Regular: (parenleft, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, x) - Adding missing kerning pairs in Lora Regular: (bracketleft, scaron) - Adding missing kerning pairs in Lora Bold: (quotesinglbase, W) - Adding missing kerning pairs in Lora Bold: (public.kern1.e, public.kern2.a) - Adding missing kerning pairs in Lora Bold: (equal, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, braceright) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, w) - Adding missing kerning pairs in Lora Regular: (public.kern1.f, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (p, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Bold: (public.kern1.O, public.kern2.T) - Adding missing kerning pairs in Lora Bold: (public.kern1.hyphen, w) - Adding missing kerning pairs in Lora Regular: (four, backslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, igrave) - Adding missing kerning pairs in Lora Bold: (one, slash) - Adding missing kerning pairs in Lora Regular: (v, public.kern2.h) - Adding missing kerning pairs in Lora Regular: (parenleft, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (W, nine) - Adding missing kerning pairs in Lora Bold: (public.kern1.o, public.kern2.J) - Adding missing kerning pairs in Lora Bold: (b, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.I) - Adding missing kerning pairs in Lora Bold: (public.kern1.G, public.kern2.period) - Adding missing kerning pairs in Lora Regular: (F, seven) - Adding missing kerning pairs in Lora Regular: (four, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (ampersand, public.kern2.i) - Adding missing kerning pairs in Lora Regular: (F, bracketright) - Adding missing kerning pairs in Lora Regular: (bracketleft, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, public.kern2.z) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (F, public.kern2.b) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, c) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, public.kern2.d) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, public.kern2.b) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, parenright) - Adding missing kerning pairs in Lora Regular: (public.kern1.d, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, public.kern2.u) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteright, p) - Adding missing kerning pairs in Lora Bold: (plus, one) - Adding missing kerning pairs in Lora Regular: (M, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, public.kern2.O) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, w) - Adding missing kerning pairs in Lora Bold: (m, w) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, AE) - Adding missing kerning pairs in Lora Regular: (public.kern1.k, public.kern2.U) - Adding missing kerning pairs in Lora Regular: (public.kern1.c, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (zcaron, bracketright) - Adding missing kerning pairs in Lora Bold: (two, three) - Adding missing kerning pairs in Lora Regular: (M, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.quoteright, public.kern2.b) - Adding missing kerning pairs in Lora Regular: (X, public.kern2.g) - Adding missing kerning pairs in Lora Regular: (public.kern1.u, public.kern2.hyphen) - Adding missing kerning pairs in Lora Bold: (public.kern1.e, public.kern2.o) - Adding missing kerning pairs in Lora Regular: (four, four) - Adding missing kerning pairs in Lora Bold: (w, x) - Adding missing kerning pairs in Lora Regular: (public.kern1.guilsinglright, x) - Adding missing kerning pairs in Lora Bold: (public.kern1.g, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, v) - Adding missing kerning pairs in Lora Bold: (public.kern1.A, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (V, eight) - Adding missing kerning pairs in Lora Bold: (Q, public.kern2.Y) - Adding missing kerning pairs in Lora Bold: (public.kern1.o, T) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, idieresis) - Adding missing kerning pairs in Lora Bold: (public.kern1.A, AE) - Adding missing kerning pairs in Lora Bold: (minus, one) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, k) - Adding missing kerning pairs in Lora Bold: (florin, public.kern2.I) - Adding missing kerning pairs in Lora Regular: (zero, W) - Adding missing kerning pairs in Lora Bold: (public.kern1.O, public.kern2.o) - Adding missing kerning pairs in Lora Bold: (public.kern1.K, G) - Adding missing kerning pairs in Lora Bold: (public.kern1.hyphen, v) - Adding missing kerning pairs in Lora Bold: (public.kern1.T, x) - Adding missing kerning pairs in Lora Regular: (public.kern1.guilsinglleft, public.kern2.U) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.S) - Adding missing kerning pairs in Lora Bold: (Q, X) - Adding missing kerning pairs in Lora Bold: (public.kern1.I, public.kern2.quoteright) - Adding missing kerning pairs in Lora Bold: (v, quotesinglbase) - Adding missing kerning pairs in Lora Regular: (q, slash) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, icircumflex) - Adding missing kerning pairs in Lora Bold: (backslash, one) - Adding missing kerning pairs in Lora Regular: (zero, V) - Adding missing kerning pairs in Lora Regular: (bracketleft, lslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.guilsinglright) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteright, public.kern2.z) - Adding missing kerning pairs in Lora Bold: (public.kern1.z, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.r, trademark) - Adding missing kerning pairs in Lora Regular: (six, W) - Adding missing kerning pairs in Lora Regular: (six, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (P, W) - Adding missing kerning pairs in Lora Bold: (zero, seven) - Adding missing kerning pairs in Lora Bold: (equal, one) - Adding missing kerning pairs in Lora Regular: (public.kern1.r, public.kern2.z) - Adding missing kerning pairs in Lora Bold: (quotesinglbase, V) - Adding missing kerning pairs in Lora Regular: (six, public.kern2.A) - Adding missing kerning pairs in Lora Bold: (public.kern1.D, public.kern2.quoteright) - Adding missing kerning pairs in Lora Bold: (public.kern1.y, public.kern2.y) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, public.kern2.j) - Adding missing kerning pairs in Lora Bold: (public.kern1.u, public.kern2.u) - Adding missing kerning pairs in Lora Regular: (at, X) - Adding missing kerning pairs in Lora Regular: (W, public.kern2.j) - Adding missing kerning pairs in Lora Bold: (W, agrave) - Adding missing kerning pairs in Lora Bold: (F, public.kern2.O) - Adding missing kerning pairs in Lora Regular: (public.kern1.L, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.quoteright, public.kern2.J) - Adding missing kerning pairs in Lora Bold: (public.kern1.k, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.T, public.kern2.b) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, lslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, public.kern2.z) - Adding missing kerning pairs in Lora Bold: (public.kern1.O, public.kern2.d) - Adding missing kerning pairs in Lora Regular: (public.kern1.d, bracketright) - Adding missing kerning pairs in Lora Regular: (public.kern1.k, trademark) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, w) - Adding missing kerning pairs in Lora Regular: (public.kern1.u, asterisk) - Adding missing kerning pairs in Lora Regular: (public.kern1.l, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (germandbls, public.kern2.j) - Adding missing kerning pairs in Lora Bold: (q, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (public.kern1.guilsinglleft, AE) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, W) - Adding missing kerning pairs in Lora Regular: (at, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (X, public.kern2.guilsinglright) - Adding missing kerning pairs in Lora Regular: (F, w) - Adding missing kerning pairs in Lora Regular: (public.kern1.T, icircumflex) - Adding missing kerning pairs in Lora Regular: (minus, eight) - Adding missing kerning pairs in Lora Bold: (public.kern1.L, public.kern2.O) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, braceright) - Adding missing kerning pairs in Lora Regular: (nine, public.kern2.A) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, public.kern2.Y) - Adding missing kerning pairs in Lora Bold: (W, quotesinglbase) - Adding missing kerning pairs in Lora Regular: (germandbls, trademark) - Adding missing kerning pairs in Lora Regular: (five, four) - Adding missing kerning pairs in Lora Regular: (seven, numbersign) - Adding missing kerning pairs in Lora Regular: (public.kern1.T, backslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.O, g) - Adding missing kerning pairs in Lora Regular: (w, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.d, public.kern2.hyphen) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Bold: (public.kern1.period, six) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, otilde) - Adding missing kerning pairs in Lora Bold: (public.kern1.u, eth) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, public.kern2.guilsinglright) - Adding missing kerning pairs in Lora Bold: (public.kern1.T, public.kern2.u) - Adding missing kerning pairs in Lora Bold: (P, x) - Adding missing kerning pairs in Lora Regular: (germandbls, asterisk) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.b) - Adding missing kerning pairs in Lora Regular: (public.kern1.period, public.kern2.j) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteright, public.kern2.u) - Adding missing kerning pairs in Lora Regular: (public.kern1.y, public.kern2.hyphen) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, V) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.i) - Adding missing kerning pairs in Lora Regular: (w, public.kern2.h) - Adding missing kerning pairs in Lora Bold: (public.kern1.J, e) - Adding missing kerning pairs in Lora Bold: (parenleft, G) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, v) - Adding missing kerning pairs in Lora Regular: (bracketleft, public.kern2.T) - Adding missing kerning pairs in Lora Regular: (q, bracketright) - Adding missing kerning pairs in Lora Bold: (public.kern1.L, AE) - Adding missing kerning pairs in Lora Bold: (public.kern1.t, public.kern2.y) - Adding missing kerning pairs in Lora Bold: (public.kern1.period, T) - Adding missing kerning pairs in Lora Regular: (eight, W) - Adding missing kerning pairs in Lora Bold: (public.kern1.u, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (registered, M) - Adding missing kerning pairs in Lora Regular: (B, four) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, ampersand) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, public.kern2.O) - Adding missing kerning pairs in Lora Bold: (seven, colon) - Adding missing kerning pairs in Lora Regular: (W, six) - Adding missing kerning pairs in Lora Bold: (public.kern1.a, G) - Adding missing kerning pairs in Lora Bold: (public.kern1.z, public.kern2.o) - Adding missing kerning pairs in Lora Regular: (public.kern1.T, public.kern2.quoteright) - Adding missing kerning pairs in Lora Bold: (public.kern1.U, q) - Adding missing kerning pairs in Lora Regular: (V, public.kern2.quotesingle) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, public.kern2.d) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, bracketright) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, x) - Adding missing kerning pairs in Lora Regular: (public.kern1.e, asterisk) - Adding missing kerning pairs in Lora Bold: (public.kern1.T, quotesinglbase) - Adding missing kerning pairs in Lora Bold: (public.kern1.J, c) - Adding missing kerning pairs in Lora Bold: (slash, public.kern2.i) - Adding missing kerning pairs in Lora Regular: (F, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (public.kern1.k, braceright) - Adding missing kerning pairs in Lora Regular: (three, V) - Adding missing kerning pairs in Lora Regular: (v, ampersand) - Adding missing kerning pairs in Lora Regular: (ampersand, lslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.L, p) - Adding missing kerning pairs in Lora Regular: (F, at) - Adding missing kerning pairs in Lora Regular: (germandbls, x) - Adding missing kerning pairs in Lora Regular: (X, public.kern2.o) - Adding missing kerning pairs in Lora Regular: (asterisk, public.kern2.g) - Adding missing kerning pairs in Lora Regular: (zero, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (parenleft, AE) - Adding missing kerning pairs in Lora Bold: (X, AE) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, bracketright) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.f) - Adding missing kerning pairs in Lora Bold: (h, v) - Adding missing kerning pairs in Lora Bold: (p, w) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.i, asterisk) - Adding missing kerning pairs in Lora Regular: (questiondown, public.kern2.y) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, public.kern2.f) - Adding missing kerning pairs in Lora Regular: (public.kern1.T, bracketright) - Adding missing kerning pairs in Lora Regular: (public.kern1.e, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (x, v) - Adding missing kerning pairs in Lora Regular: (public.kern1.i, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (public.kern1.K, public.kern2.a) - Adding missing kerning pairs in Lora Bold: (public.kern1.K, public.kern2.T) - Adding missing kerning pairs in Lora Regular: (ampersand, public.kern2.z) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, public.kern2.O) - Adding missing kerning pairs in Lora Regular: (registered, X) - Adding missing kerning pairs in Lora Regular: (P, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Regular: (slash, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (V, otilde) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, public.kern2.hyphen) - Adding missing kerning pairs in Lora Regular: (fraction, zero) - Adding missing kerning pairs in Lora Bold: (q, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, icircumflex) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, eth) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, bracketright) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.T, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, public.kern2.o) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, public.kern2.o) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (public.kern1.z, trademark) - Adding missing kerning pairs in Lora Regular: (F, igrave) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, igrave) - Adding missing kerning pairs in Lora Bold: (m, v) - Adding missing kerning pairs in Lora Regular: (b, asterisk) - Adding missing kerning pairs in Lora Regular: (public.kern1.guilsinglright, AE) - Adding missing kerning pairs in Lora Regular: (braceleft, W) - Adding missing kerning pairs in Lora Regular: (public.kern1.K, public.kern2.guilsinglright) - Adding missing kerning pairs in Lora Regular: (public.kern1.s, trademark) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, idieresis) - Adding missing kerning pairs in Lora Regular: (bracketleft, p) - Adding missing kerning pairs in Lora Bold: (ordfeminine, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (public.kern1.k, backslash) - Adding missing kerning pairs in Lora Bold: (one, fraction) - Adding missing kerning pairs in Lora Regular: (W, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (F, backslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, X) - Adding missing kerning pairs in Lora Bold: (P, public.kern2.y) - Adding missing kerning pairs in Lora Bold: (public.kern1.R, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, six) - Adding missing kerning pairs in Lora Bold: (public.kern1.U, comma) - Adding missing kerning pairs in Lora Regular: (ampersand, public.kern2.Z) - Adding missing kerning pairs in Lora Regular: (M, V) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, public.kern2.i) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.i) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, public.kern2.quoteright) - Adding missing kerning pairs in Lora Bold: (x, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (backslash, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.L, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.s) - Adding missing kerning pairs in Lora Regular: (eth, v) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, igrave) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, x) - Adding missing kerning pairs in Lora Regular: (scircumflex, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (public.kern1.l, p) - Adding missing kerning pairs in Lora Bold: (p, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (backslash, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.n, M) - Adding missing kerning pairs in Lora Regular: (q, parenright) - Adding missing kerning pairs in Lora Bold: (public.kern1.a, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.C, ampersand) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, four) - Adding missing kerning pairs in Lora Bold: (public.kern1.t, v) - Adding missing kerning pairs in Lora Regular: (zero, fraction) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (backslash, X) - Adding missing kerning pairs in Lora Bold: (public.kern1.g, V) - Adding missing kerning pairs in Lora Regular: (public.kern1.quotesingle, public.kern2.s) - Adding missing kerning pairs in Lora Regular: (q, X) - Adding missing kerning pairs in Lora Regular: (public.kern1.hyphen, public.kern2.h) - Adding missing kerning pairs in Lora Bold: (W, V) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, e) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, at) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, public.kern2.g) - Adding missing kerning pairs in Lora Regular: (two, fraction) - Adding missing kerning pairs in Lora Regular: (W, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (W, M) - Adding missing kerning pairs in Lora Bold: (public.kern1.z, public.kern2.z) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, p) - Adding missing kerning pairs in Lora Regular: (seven, seven) - Adding missing kerning pairs in Lora Regular: (x, public.kern2.T) - Adding missing kerning pairs in Lora Regular: (M, public.kern2.i) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, public.kern2.u) - Adding missing kerning pairs in Lora Regular: (public.kern1.O, comma) - Adding missing kerning pairs in Lora Regular: (W, public.kern2.quotesingle) - Adding missing kerning pairs in Lora Bold: (public.kern1.r, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Bold: (public.kern1.G, public.kern2.O) - Adding missing kerning pairs in Lora Regular: (slash, V) - Adding missing kerning pairs in Lora Regular: (public.kern1.D, public.kern2.i) - Adding missing kerning pairs in Lora Regular: (F, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (public.kern1.f, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.h) - Adding missing kerning pairs in Lora Bold: (X, public.kern2.a) - Adding missing kerning pairs in Lora Bold: (public.kern1.r, public.kern2.hyphen) - Adding missing kerning pairs in Lora Regular: (eight, public.kern2.Y) - Adding missing kerning pairs in Lora Bold: (h, w) - Adding missing kerning pairs in Lora Regular: (public.kern1.k, public.kern2.g) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (slash, W) - Adding missing kerning pairs in Lora Bold: (Thorn, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, public.kern2.o) - Adding missing kerning pairs in Lora Regular: (asterisk, eth) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, V) - Adding missing kerning pairs in Lora Bold: (public.kern1.J, q) - Adding missing kerning pairs in Lora Regular: (seven, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (p, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (ampersand, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (four, braceright) - Adding missing kerning pairs in Lora Regular: (public.kern1.period, j) - Adding missing kerning pairs in Lora Regular: (public.kern1.r, public.kern2.s) - Adding missing kerning pairs in Lora Bold: (W, aring) - Adding missing kerning pairs in Lora Bold: (X, X) - Adding missing kerning pairs in Lora Bold: (public.kern1.O, public.kern2.quoteright) - Adding missing kerning pairs in Lora Bold: (bracketleft, one) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Bold: (w, public.kern2.z) - Adding missing kerning pairs in Lora Regular: (public.kern1.l, V) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.y) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, acircumflex) - Adding missing kerning pairs in Lora Regular: (x, braceright) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.f) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, public.kern2.T) - Adding missing kerning pairs in Lora Bold: (public.kern1.e, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (X, two) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, trademark) - Adding missing kerning pairs in Lora Bold: (public.kern1.y, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (public.kern1.y, ampersand) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, icircumflex) - Adding missing kerning pairs in Lora Regular: (V, scaron) - Adding missing kerning pairs in Lora Regular: (lslash, v) - Adding missing kerning pairs in Lora Regular: (braceleft, AE) - Adding missing kerning pairs in Lora Regular: (V, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.D, public.kern2.z) - Adding missing kerning pairs in Lora Regular: (public.kern1.quoteleft, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, public.kern2.I) - Adding missing kerning pairs in Lora Bold: (W, W) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, public.kern2.y) - Adding missing kerning pairs in Lora Regular: (nine, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (V, asterisk) - Adding missing kerning pairs in Lora Regular: (ampersand, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (public.kern1.guilsinglleft, V) - Adding missing kerning pairs in Lora Regular: (W, three) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, eth) - Adding missing kerning pairs in Lora Regular: (v, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (trademark, X) - Adding missing kerning pairs in Lora Regular: (eth, trademark) - Adding missing kerning pairs in Lora Bold: (V, X) - Adding missing kerning pairs in Lora Bold: (nine, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.O, quotedblbase) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Regular: (thorn, asterisk) - Adding missing kerning pairs in Lora Bold: (F, comma) - Adding missing kerning pairs in Lora Regular: (braceleft, x) - Adding missing kerning pairs in Lora Regular: (braceleft, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, parenright) - Adding missing kerning pairs in Lora Regular: (Thorn, public.kern2.U) - Adding missing kerning pairs in Lora Regular: (braceleft, public.kern2.h) - Adding missing kerning pairs in Lora Regular: (M, public.kern2.s) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Regular: (F, trademark) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, jcircumflex) - Adding missing kerning pairs in Lora Regular: (public.kern1.k, parenright) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, public.kern2.A) - Adding missing kerning pairs in Lora Bold: (public.kern1.t, x) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.a) - Adding missing kerning pairs in Lora Bold: (public.kern1.l, public.kern2.b) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (x, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (v, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.I, x) - Adding missing kerning pairs in Lora Regular: (germandbls, public.kern2.quotesingle) - Adding missing kerning pairs in Lora Regular: (public.kern1.T, braceright) - Adding missing kerning pairs in Lora Regular: (nine, W) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, public.kern2.u) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (degree, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, W) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, braceright) - Adding missing kerning pairs in Lora Regular: (public.kern1.f, lslash) - Adding missing kerning pairs in Lora Bold: (one, public.kern2.hyphen) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (trademark, public.kern2.b) - Adding missing kerning pairs in Lora Regular: (x, trademark) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.t) - Adding missing kerning pairs in Lora Bold: (public.kern1.U, AE) - Adding missing kerning pairs in Lora Regular: (seven, backslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.o) - Adding missing kerning pairs in Lora Regular: (public.kern1.s, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (x, parenright) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, eight) - Adding missing kerning pairs in Lora Regular: (public.kern1.z, v) - Adding missing kerning pairs in Lora Regular: (q, trademark) - Adding missing kerning pairs in Lora Regular: (backslash, AE) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, public.kern2.hyphen) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, eth) - Adding missing kerning pairs in Lora Bold: (three, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.g) - Adding missing kerning pairs in Lora Regular: (thorn, public.kern2.quotesingle) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, public.kern2.f) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, braceright) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, C) - Adding missing kerning pairs in Lora Bold: (q, public.kern2.g) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, W) - Adding missing kerning pairs in Lora Regular: (ampersand, M) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, public.kern2.i) - Adding missing kerning pairs in Lora Regular: (W, asterisk) - Adding missing kerning pairs in Lora Bold: (one, public.kern2.A) - Adding missing kerning pairs in Lora Bold: (public.kern1.i, backslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, scaron) - Adding missing kerning pairs in Lora Regular: (braceleft, igrave) - Adding missing kerning pairs in Lora Bold: (public.kern1.L, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (public.kern1.l, public.kern2.S) - Adding missing kerning pairs in Lora Regular: (public.kern1.quoteright, X) - Adding missing kerning pairs in Lora Regular: (germandbls, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (F, public.kern2.f) - Adding missing kerning pairs in Lora Regular: (public.kern1.u, public.kern2.S) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, lslash) - Adding missing kerning pairs in Lora Regular: (public.kern1.hyphen, eight) - Adding missing kerning pairs in Lora Bold: (V, comma) - Adding missing kerning pairs in Lora Regular: (public.kern1.O, public.kern2.a) - Adding missing kerning pairs in Lora Bold: (W, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (public.kern1.O, quotesinglbase) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (W, lslash) - Adding missing kerning pairs in Lora Bold: (public.kern1.e, w) - Adding missing kerning pairs in Lora Regular: (trademark, W) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, braceright) - Adding missing kerning pairs in Lora Regular: (V, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (V, acircumflex) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (public.kern1.quotesingle, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (lslash, public.kern2.y) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, public.kern2.i) - Adding missing kerning pairs in Lora Bold: (P, comma) - Adding missing kerning pairs in Lora Regular: (idieresis, bracketright) - Adding missing kerning pairs in Lora Regular: (braceleft, public.kern2.T) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, scircumflex) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, public.kern2.h) - Adding missing kerning pairs in Lora Regular: (V, six) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, public.kern2.z) - Adding missing kerning pairs in Lora Bold: (p, M) - Adding missing kerning pairs in Lora Regular: (seven, public.kern2.U) - Adding missing kerning pairs in Lora Bold: (q, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, public.kern2.s) - Adding missing kerning pairs in Lora Regular: (public.kern1.K, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (bracketleft, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, public.kern2.J) - Adding missing kerning pairs in Lora Bold: (P, four) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, registered) - Adding missing kerning pairs in Lora Bold: (P, public.kern2.z) - Adding missing kerning pairs in Lora Regular: (M, W) - Adding missing kerning pairs in Lora Regular: (public.kern1.guilsinglright, M) - Adding missing kerning pairs in Lora Regular: (seven, braceright) - Adding missing kerning pairs in Lora Regular: (V, adieresis) - Adding missing kerning pairs in Lora Regular: (registered, public.kern2.I) - Adding missing kerning pairs in Lora Bold: (public.kern1.L, ordfeminine) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (thorn, backslash) - Adding missing kerning pairs in Lora Regular: (braceleft, public.kern2.U) - Adding missing kerning pairs in Lora Regular: (public.kern1.hyphen, x) - Adding missing kerning pairs in Lora Regular: (eth, public.kern2.y) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, public.kern2.u) - Adding missing kerning pairs in Lora Regular: (public.kern1.quotesingle, public.kern2.b) - Adding missing kerning pairs in Lora Bold: (w, w) - Adding missing kerning pairs in Lora Regular: (public.kern1.quoteleft, x) - Adding missing kerning pairs in Lora Regular: (public.kern1.r, public.kern2.S) - Adding missing kerning pairs in Lora Regular: (public.kern1.L, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, seven) - Adding missing kerning pairs in Lora Regular: (public.kern1.t, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (q, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.u) - Adding missing kerning pairs in Lora Bold: (V, quotesinglbase) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, trademark) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, Q) - Adding missing kerning pairs in Lora Bold: (B, public.kern2.J) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, X) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, H) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, public.kern2.b) - Adding missing kerning pairs in Lora Bold: (public.kern1.A, acute) - Adding missing kerning pairs in Lora Bold: (X, public.kern2.Y) - Adding missing kerning pairs in Lora Bold: (public.kern1.O, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (M, public.kern2.z) - Adding missing kerning pairs in Lora Regular: (w, ampersand) - Adding missing kerning pairs in Lora Bold: (public.kern1.U, G) - Adding missing kerning pairs in Lora Regular: (slash, X) - Adding missing kerning pairs in Lora Bold: (public.kern1.T, AE) - Adding missing kerning pairs in Lora Bold: (public.kern1.T, V) - Adding missing kerning pairs in Lora Regular: (public.kern1.D, public.kern2.f) - Adding missing kerning pairs in Lora Regular: (x, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, public.kern2.z) - Adding missing kerning pairs in Lora Regular: (W, zero) - Adding missing kerning pairs in Lora Regular: (registered, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.quoteleft, w) - Adding missing kerning pairs in Lora Regular: (M, public.kern2.u) - Adding missing kerning pairs in Lora Regular: (lslash, w) - Adding missing kerning pairs in Lora Regular: (B, lslash) - Adding missing kerning pairs in Lora Regular: (p, public.kern2.quotesingle) - Adding missing kerning pairs in Lora Bold: (public.kern1.A, public.kern2.Z) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, p) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteright, registered) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, X) - Adding missing kerning pairs in Lora Regular: (public.kern1.u, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, colon) - Adding missing kerning pairs in Lora Bold: (public.kern1.T, p) - Adding missing kerning pairs in Lora Bold: (public.kern1.hyphen, one) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.g) - Adding missing kerning pairs in Lora Bold: (public.kern1.T, X) - Adding missing kerning pairs in Lora Regular: (public.kern1.z, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (B, public.kern2.s) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (public.kern1.quoteright, W) - Adding missing kerning pairs in Lora Bold: (icircumflex, W) - Adding missing kerning pairs in Lora Regular: (scaron, bracketright) - Adding missing kerning pairs in Lora Regular: (parenleft, idieresis) - Adding missing kerning pairs in Lora Bold: (public.kern1.T, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (slash, public.kern2.T) - Adding missing kerning pairs in Lora Regular: (asterisk, public.kern2.o) - Adding missing kerning pairs in Lora Regular: (parenleft, W) - Adding missing kerning pairs in Lora Regular: (M, x) - Adding missing kerning pairs in Lora Regular: (public.kern1.period, p) - Adding missing kerning pairs in Lora Regular: (seven, public.kern2.z) - Adding missing kerning pairs in Lora Bold: (public.kern1.d, eth) - Adding missing kerning pairs in Lora Bold: (q, public.kern2.s) - Adding missing kerning pairs in Lora Regular: (public.kern1.i, v) - Adding missing kerning pairs in Lora Bold: (public.kern1.D, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (F, idieresis) - Adding missing kerning pairs in Lora Regular: (public.kern1.l, public.kern2.hyphen) - Adding missing kerning pairs in Lora Regular: (public.kern1.n, public.kern2.S) - Adding missing kerning pairs in Lora Regular: (registered, V) - Adding missing kerning pairs in Lora Bold: (public.kern1.g, p) - Adding missing kerning pairs in Lora Regular: (bracketleft, public.kern2.U) - Adding missing kerning pairs in Lora Regular: (W, otilde) - Adding missing kerning pairs in Lora Regular: (V, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (public.kern1.L, public.kern2.u) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, public.kern2.u) - Adding missing kerning pairs in Lora Regular: (braceleft, lslash) - Adding missing kerning pairs in Lora Bold: (b, W) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, public.kern2.d) - Adding missing kerning pairs in Lora Bold: (public.kern1.quoteleft, public.kern2.z) - Adding missing kerning pairs in Lora Regular: (public.kern1.l, bracketright) - Adding missing kerning pairs in Lora Regular: (public.kern1.o, asterisk) - Adding missing kerning pairs in Lora Regular: (P, seven) - Adding missing kerning pairs in Lora Regular: (V, atilde) - Adding missing kerning pairs in Lora Regular: (public.kern1.c, trademark) - Adding missing kerning pairs in Lora Regular: (F, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.K, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, public.kern2.u) - Adding missing kerning pairs in Lora Bold: (b, w) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (asterisk, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.z) - Adding missing kerning pairs in Lora Regular: (parenleft, igrave) - Adding missing kerning pairs in Lora Regular: (trademark, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (parenleft, public.kern2.b) - Adding missing kerning pairs in Lora Bold: (public.kern1.Y, public.kern2.T) - Adding missing kerning pairs in Lora Bold: (idieresis, W) - Adding missing kerning pairs in Lora Regular: (public.kern1.f, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.Z, public.kern2.g) - Adding missing kerning pairs in Lora Bold: (public.kern1.J, AE) - Adding missing kerning pairs in Lora Regular: (four, fraction) - Adding missing kerning pairs in Lora Regular: (public.kern1.i, public.kern2.S) - Adding missing kerning pairs in Lora Bold: (public.kern1.c, v) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.guilsinglleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.Y) - Adding missing kerning pairs in Lora Bold: (public.kern1.e, public.kern2.d) - Adding missing kerning pairs in Lora Regular: (public.kern1.quoteleft, v) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, four) - Adding missing kerning pairs in Lora Regular: (fraction, six) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.T, ampersand) - Adding missing kerning pairs in Lora Regular: (public.kern1.U, public.kern2.J) - Adding missing kerning pairs in Lora Bold: (V, W) - Adding missing kerning pairs in Lora Regular: (six, V) - Adding missing kerning pairs in Lora Bold: (P, w) - Adding missing kerning pairs in Lora Bold: (public.kern1.t, w) - Adding missing kerning pairs in Lora Regular: (public.kern1.n, p) - Adding missing kerning pairs in Lora Regular: (M, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.E, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, at) - Adding missing kerning pairs in Lora Regular: (F, public.kern2.h) - Adding missing kerning pairs in Lora Bold: (public.kern1.e, x) - Adding missing kerning pairs in Lora Regular: (three, public.kern2.Y) - Adding missing kerning pairs in Lora Regular: (parenleft, X) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, braceright) - Adding missing kerning pairs in Lora Regular: (F, public.kern2.quoteright) - Adding missing kerning pairs in Lora Bold: (public.kern1.k, public.kern2.A) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, semicolon) - Adding missing kerning pairs in Lora Regular: (V, registered) - Adding missing kerning pairs in Lora Regular: (public.kern1.J, public.kern2.j) - Adding missing kerning pairs in Lora Regular: (public.kern1.Y, atilde) - Adding missing kerning pairs in Lora Regular: (eth, w) - Adding missing kerning pairs in Lora Regular: (X, public.kern2.J) - Adding missing kerning pairs in Lora Bold: (public.kern1.a, public.kern2.u) - Adding missing kerning pairs in Lora Regular: (public.kern1.z, X) - Adding missing kerning pairs in Lora Regular: (public.kern1.C, three) - Adding missing kerning pairs in Lora Regular: (public.kern1.l, public.kern2.t) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, public.kern2.n) - Adding missing kerning pairs in Lora Regular: (public.kern1.R, slash) - Adding missing kerning pairs in Lora Bold: (Thorn, public.kern2.quoteright) - Adding missing kerning pairs in Lora Regular: (public.kern1.g, public.kern2.U) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, eth) - Adding missing kerning pairs in Lora Bold: (public.kern1.f, public.kern2.J) - Adding missing kerning pairs in Lora Regular: (public.kern1.A, slash) - Adding missing kerning pairs in Lora Regular: (seven, public.kern2.o) - Adding missing kerning pairs in Lora Regular: (b, public.kern2.quotesingle) - Adding missing kerning pairs in Lora Bold: (periodcentered, one) - Adding missing kerning pairs in Lora Regular: (x, slash) - Adding missing kerning pairs in Lora Regular: (public.kern1.d, public.kern2.S) - Adding missing kerning pairs in Lora Regular: (public.kern1.S, public.kern2.s) - Adding missing kerning pairs in Lora Bold: (v, public.kern2.t) - Adding missing kerning pairs in Lora Bold: (seven, quotesinglbase) - Adding missing kerning pairs in Lora Regular: (seven, public.kern2.T) - Adding missing kerning pairs in Lora Regular: (M, public.kern2.a) - Adding missing kerning pairs in Lora Regular: (V, zero) - Adding missing kerning pairs in Lora Bold: (public.kern1.s, public.kern2.quoteleft) - Adding missing kerning pairs in Lora Regular: (public.kern1.G, p) - Adding missing kerning pairs in Lora Regular: (public.kern1.N, semicolon) - - - Generate TTF - '''''''''''' - - Generate Lora Regular (public.default) - -------------------- - - makeotf Report - - makeotf [Note] setting the USE_TYPO_METRICS OS/2 fsSelection bit 7 from fontinfo keyword. - makeotf [Note] setting the WEIGHT_WIDTH_SLOPE_ONLY OS/2 fsSelection bit 8 from fontinfo keyword. - makeotf [Note] setting the OBLIQUE OS/2 fsSelection bit 9 from fontinfo keyword. - makeotfexe [WARNING] feature 'frac', referenced in aalt feature, either is not defined or had no rules which could be included in the aalt feature. - makeotfexe [WARNING] The feature file OS/2 overrides TypoAscender and TypoDescender do not sum to the font em-square. - Built release mode font 'temp_00_Lora-Regular-public.default.ttf' Revision 2.210 - - -------------------- - - Generate Lora Bold (public.default) - -------------------- - - makeotf Report - - makeotf [Note] setting the USE_TYPO_METRICS OS/2 fsSelection bit 7 from fontinfo keyword. - makeotf [Note] setting the WEIGHT_WIDTH_SLOPE_ONLY OS/2 fsSelection bit 8 from fontinfo keyword. - makeotf [Note] setting the OBLIQUE OS/2 fsSelection bit 9 from fontinfo keyword. - makeotfexe [WARNING] feature 'frac', referenced in aalt feature, either is not defined or had no rules which could be included in the aalt feature. - makeotfexe [WARNING] The feature file OS/2 overrides TypoAscender and TypoDescender do not sum to the font em-square. - Built release mode font 'temp_01_Lora-Bold-public.default.ttf' Revision 2.210 - - -------------------- \ No newline at end of file diff --git a/sources/Lora-Italic.glyphs b/sources/Lora-Italic.glyphs index a36cb037..ad9c8c8a 100644 --- a/sources/Lora-Italic.glyphs +++ b/sources/Lora-Italic.glyphs @@ -1,5 +1,8 @@ { -.appVersion = "1230"; +.appVersion = "1342"; +DisplayStrings = ( +"/Pemiddlehook-cy/pemiddlehook-cy" +); classes = ( { automatic = 1; @@ -374,11 +377,11 @@ value = 1206; }, { name = typoAscender; -value = 1033; +value = 1006; }, { name = hheaAscender; -value = 1033; +value = 1006; }, { name = typoDescender; @@ -399,15 +402,6 @@ value = 0; { name = typoLineGap; value = 0; -}, -{ -name = "Axis Location"; -value = ( -{ -Axis = Weight; -Location = 400; -} -); } ); descender = -271; @@ -444,11 +438,11 @@ value = 1206; }, { name = typoAscender; -value = 1033; +value = 1006; }, { name = hheaAscender; -value = 1033; +value = 1006; }, { name = typoDescender; @@ -469,15 +463,6 @@ value = 0; { name = typoLineGap; value = 0; -}, -{ -name = "Axis Location"; -value = ( -{ -Axis = Weight; -Location = 700; -} -); } ); descender = -275; @@ -30275,6 +30260,96 @@ rightMetricsKey = "Ge-cy"; unicode = 04A4; }, { +glyphname = "Pemiddlehook-cy"; +layers = ( +{ +components = ( +{ +name = "Pe-cy"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"939 -218 OFFCURVE", +"995 31 OFFCURVE", +"995 134 CURVE SMOOTH", +"995 321 OFFCURVE", +"909 407 OFFCURVE", +"769 407 CURVE SMOOTH", +"722 407 OFFCURVE", +"646 392 OFFCURVE", +"606 369 CURVE", +"603 324 LINE", +"634 345 OFFCURVE", +"692 360 OFFCURVE", +"742 360 CURVE SMOOTH", +"842 360 OFFCURVE", +"900 301 OFFCURVE", +"900 127 CURVE SMOOTH", +"900 46 OFFCURVE", +"878 -189 OFFCURVE", +"736 -189 CURVE SMOOTH", +"722 -189 OFFCURVE", +"695 -186 OFFCURVE", +"680 -183 CURVE", +"673 -213 LINE", +"699 -221 OFFCURVE", +"725 -224 OFFCURVE", +"749 -223 CURVE SMOOTH" +); +} +); +width = 1012; +}, +{ +components = ( +{ +name = "Pe-cy"; +} +); +layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; +paths = ( +{ +closed = 1; +nodes = ( +"919 -229 OFFCURVE", +"1028 -107 OFFCURVE", +"1039 106 CURVE SMOOTH", +"1049 302 OFFCURVE", +"970 406 OFFCURVE", +"803 406 CURVE SMOOTH", +"742 406 OFFCURVE", +"662 391 OFFCURVE", +"622 368 CURVE", +"595 289 LINE", +"626 308 OFFCURVE", +"701 327 OFFCURVE", +"749 327 CURVE SMOOTH", +"823 327 OFFCURVE", +"894 275 OFFCURVE", +"880 98 CURVE SMOOTH", +"870 -37 OFFCURVE", +"846 -151 OFFCURVE", +"751 -151 CURVE SMOOTH", +"737 -151 OFFCURVE", +"711 -149 OFFCURVE", +"695 -146 CURVE", +"680 -216 LINE", +"711 -225 OFFCURVE", +"746 -229 OFFCURVE", +"773 -229 CURVE SMOOTH" +); +} +); +width = 1057; +} +); +unicode = 04A6; +}, +{ glyphname = "Pedescender-cy"; layers = ( { @@ -44826,6 +44901,206 @@ rightMetricsKey = "=tse-cy"; unicode = 0525; }, { +glyphname = "pemiddlehook-cy"; +layers = ( +{ +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"187 0 LINE", +"186 17 OFFCURVE", +"185 33 OFFCURVE", +"185 53 CURVE SMOOTH", +"185 222 OFFCURVE", +"290 464 OFFCURVE", +"382 464 CURVE SMOOTH", +"421 464 OFFCURVE", +"429 426 OFFCURVE", +"429 403 CURVE SMOOTH", +"429 302 OFFCURVE", +"394 134 OFFCURVE", +"394 26 CURVE SMOOTH", +"394 15 OFFCURVE", +"394 9 OFFCURVE", +"395 0 CURVE", +"479 0 LINE", +"478 17 OFFCURVE", +"477 33 OFFCURVE", +"477 53 CURVE SMOOTH", +"477 145 OFFCURVE", +"511 285 OFFCURVE", +"511 381 CURVE SMOOTH", +"511 451 OFFCURVE", +"482 511 OFFCURVE", +"402 511 CURVE SMOOTH", +"337 511 OFFCURVE", +"273 465 OFFCURVE", +"205 283 CURVE", +"202 283 LINE", +"207 309 OFFCURVE", +"214 346 OFFCURVE", +"217 383 CURVE SMOOTH", +"222 448 OFFCURVE", +"211 511 OFFCURVE", +"143 511 CURVE SMOOTH", +"63 511 OFFCURVE", +"22 417 OFFCURVE", +"13 370 CURVE", +"41 364 LINE", +"61 435 OFFCURVE", +"92 461 OFFCURVE", +"114 461 CURVE SMOOTH", +"137 461 OFFCURVE", +"141 440 OFFCURVE", +"141 416 CURVE SMOOTH", +"141 386 OFFCURVE", +"140 382 OFFCURVE", +"122 226 CURVE SMOOTH", +"107 100 OFFCURVE", +"102 60 OFFCURVE", +"102 26 CURVE SMOOTH", +"102 15 OFFCURVE", +"102 9 OFFCURVE", +"103 0 CURVE" +); +}, +{ +closed = 1; +nodes = ( +"632 -229 OFFCURVE", +"747 -75 OFFCURVE", +"747 82 CURVE SMOOTH", +"747 196 OFFCURVE", +"712 283 OFFCURVE", +"608 283 CURVE SMOOTH", +"568 283 OFFCURVE", +"519 263 OFFCURVE", +"476 211 CURVE", +"479 156 LINE", +"506 205 OFFCURVE", +"554 229 OFFCURVE", +"583 229 CURVE SMOOTH", +"641 229 OFFCURVE", +"659 168 OFFCURVE", +"659 86 CURVE SMOOTH", +"659 -62 OFFCURVE", +"608 -194 OFFCURVE", +"523 -194 CURVE SMOOTH", +"514 -194 OFFCURVE", +"505 -193 OFFCURVE", +"494 -191 CURVE", +"484 -222 LINE", +"500 -227 OFFCURVE", +"515 -229 OFFCURVE", +"531 -229 CURVE SMOOTH" +); +} +); +width = 751; +}, +{ +layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; +paths = ( +{ +closed = 1; +nodes = ( +"221 0 LINE", +"220 16 OFFCURVE", +"218 54 OFFCURVE", +"218 72 CURVE SMOOTH", +"218 212 OFFCURVE", +"295 419 OFFCURVE", +"356 419 CURVE SMOOTH", +"376 419 OFFCURVE", +"383 407 OFFCURVE", +"383 378 CURVE SMOOTH", +"383 316 OFFCURVE", +"363 181 OFFCURVE", +"363 67 CURVE SMOOTH", +"363 55 OFFCURVE", +"363 28 OFFCURVE", +"366 0 CURVE", +"495 0 LINE", +"494 45 OFFCURVE", +"494 60 OFFCURVE", +"494 98 CURVE SMOOTH", +"494 171 OFFCURVE", +"509 284 OFFCURVE", +"509 357 CURVE SMOOTH", +"509 451 OFFCURVE", +"477 511 OFFCURVE", +"392 511 CURVE SMOOTH", +"334 511 OFFCURVE", +"268 480 OFFCURVE", +"221 360 CURVE", +"220 360 LINE", +"223 383 OFFCURVE", +"226 394 OFFCURVE", +"226 420 CURVE SMOOTH", +"226 491 OFFCURVE", +"185 511 OFFCURVE", +"142 511 CURVE SMOOTH", +"55 511 OFFCURVE", +"20 412 OFFCURVE", +"8 355 CURVE", +"63 339 LINE", +"80 399 OFFCURVE", +"96 418 OFFCURVE", +"111 418 CURVE SMOOTH", +"118 418 OFFCURVE", +"125 414 OFFCURVE", +"125 392 CURVE SMOOTH", +"125 367 OFFCURVE", +"115 298 OFFCURVE", +"106 226 CURVE SMOOTH", +"98 159 OFFCURVE", +"89 89 OFFCURVE", +"89 48 CURVE SMOOTH", +"89 35 OFFCURVE", +"89 28 OFFCURVE", +"92 0 CURVE" +); +}, +{ +closed = 1; +nodes = ( +"691 -229 OFFCURVE", +"771 -15 OFFCURVE", +"771 92 CURVE SMOOTH", +"771 196 OFFCURVE", +"742 303 OFFCURVE", +"608 303 CURVE SMOOTH", +"568 303 OFFCURVE", +"509 283 OFFCURVE", +"466 231 CURVE", +"469 150 LINE", +"496 199 OFFCURVE", +"544 223 OFFCURVE", +"573 223 CURVE SMOOTH", +"612 223 OFFCURVE", +"633 188 OFFCURVE", +"633 116 CURVE SMOOTH", +"633 -12 OFFCURVE", +"599 -162 OFFCURVE", +"514 -162 CURVE SMOOTH", +"505 -162 OFFCURVE", +"495 -161 OFFCURVE", +"484 -159 CURVE", +"473 -221 LINE", +"500 -228 OFFCURVE", +"515 -229 OFFCURVE", +"541 -229 CURVE SMOOTH" +); +} +); +width = 771; +} +); +unicode = 04A7; +}, +{ glyphname = "haabkhasian-cy"; layers = ( { @@ -64778,6 +65053,200 @@ width = 845; unicode = 0336; }, { +glyphname = dieresis; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{168, 512}"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"271 616 OFFCURVE", +"294 640 OFFCURVE", +"295 670 CURVE SMOOTH", +"297 701 OFFCURVE", +"279 725 OFFCURVE", +"253 725 CURVE SMOOTH", +"229 725 OFFCURVE", +"206 701 OFFCURVE", +"204 670 CURVE SMOOTH", +"203 640 OFFCURVE", +"222 616 OFFCURVE", +"248 616 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"125 616 OFFCURVE", +"147 640 OFFCURVE", +"148 670 CURVE SMOOTH", +"150 701 OFFCURVE", +"132 725 OFFCURVE", +"106 725 CURVE SMOOTH", +"82 725 OFFCURVE", +"59 701 OFFCURVE", +"57 670 CURVE SMOOTH", +"56 640 OFFCURVE", +"75 616 OFFCURVE", +"101 616 CURVE SMOOTH" +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = _top; +position = "{207, 500}"; +} +); +layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; +paths = ( +{ +closed = 1; +nodes = ( +"328 600 OFFCURVE", +"359 635 OFFCURVE", +"359 681 CURVE SMOOTH", +"359 719 OFFCURVE", +"335 751 OFFCURVE", +"299 751 CURVE SMOOTH", +"262 751 OFFCURVE", +"229 714 OFFCURVE", +"229 670 CURVE SMOOTH", +"229 630 OFFCURVE", +"255 600 OFFCURVE", +"290 600 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"154 600 OFFCURVE", +"185 636 OFFCURVE", +"185 681 CURVE SMOOTH", +"185 719 OFFCURVE", +"161 751 OFFCURVE", +"125 751 CURVE SMOOTH", +"88 751 OFFCURVE", +"55 714 OFFCURVE", +"55 670 CURVE SMOOTH", +"55 630 OFFCURVE", +"81 600 OFFCURVE", +"116 600 CURVE SMOOTH" +); +} +); +width = 415; +} +); +unicode = 00A8; +}, +{ +glyphname = dotaccent; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{91, 512}"; +} +); +components = ( +{ +name = period; +transform = "{0.923, 0, 0, 0.922, 7, 624}"; +} +); +layerId = UUID0; +width = 198; +}, +{ +anchors = ( +{ +name = _top; +position = "{113, 500}"; +} +); +components = ( +{ +name = period; +transform = "{0.923, 0, 0, 0.922, 21, 624}"; +} +); +layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; +width = 228; +} +); +unicode = 02D9; +}, +{ +glyphname = grave; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{132, 512}"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"195 599 LINE", +"117 731 LINE SMOOTH", +"90 777 OFFCURVE", +"61 761 OFFCURVE", +"55 755 CURVE SMOOTH", +"47 747 OFFCURVE", +"33 723 OFFCURVE", +"68 686 CURVE SMOOTH", +"171 579 LINE" +); +} +); +width = 240; +}, +{ +anchors = ( +{ +name = _top; +position = "{147, 500}"; +} +); +layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; +paths = ( +{ +closed = 1; +nodes = ( +"232 606 LINE", +"154 746 LINE SMOOTH", +"135 779 OFFCURVE", +"98 795 OFFCURVE", +"64 770 CURVE SMOOTH", +"32 741 OFFCURVE", +"45 698 OFFCURVE", +"70 672 CURVE SMOOTH", +"184 565 LINE" +); +} +); +width = 277; +} +); +unicode = 0060; +}, +{ glyphname = acute; layers = ( { @@ -64836,13 +65305,13 @@ width = 292; unicode = 00B4; }, { -glyphname = breve; +glyphname = hungarumlaut; layers = ( { anchors = ( { name = _top; -position = "{171, 512}"; +position = "{201, 512}"; } ); layerId = UUID0; @@ -64850,30 +65319,39 @@ paths = ( { closed = 1; nodes = ( -"226 608 OFFCURVE", -"282 644 OFFCURVE", -"315 724 CURVE", -"292 735 LINE", -"267 692 OFFCURVE", -"224 662 OFFCURVE", -"178 662 CURVE SMOOTH", -"133 662 OFFCURVE", -"88 694 OFFCURVE", -"70 731 CURVE", -"45 722 LINE", -"67 643 OFFCURVE", -"126 608 OFFCURVE", -"171 608 CURVE SMOOTH" +"338 685 LINE SMOOTH", +"376 710 OFFCURVE", +"378 731 OFFCURVE", +"368 747 CURVE SMOOTH", +"359 761 OFFCURVE", +"332 769 OFFCURVE", +"295 730 CURVE SMOOTH", +"185 617 LINE", +"203 594 LINE" +); +}, +{ +closed = 1; +nodes = ( +"185 688 LINE SMOOTH", +"226 723 OFFCURVE", +"215 743 OFFCURVE", +"207 753 CURVE SMOOTH", +"201 760 OFFCURVE", +"173 772 OFFCURVE", +"140 729 CURVE SMOOTH", +"45 607 LINE", +"67 585 LINE" ); } ); -width = 360; +width = 419; }, { anchors = ( { name = _top; -position = "{198, 500}"; +position = "{233, 500}"; } ); layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; @@ -64881,163 +65359,145 @@ paths = ( { closed = 1; nodes = ( -"264 601 OFFCURVE", -"315 643 OFFCURVE", -"350 740 CURVE", -"295 764 LINE", -"276 727 OFFCURVE", -"247 690 OFFCURVE", -"200 690 CURVE SMOOTH", -"153 690 OFFCURVE", -"124 726 OFFCURVE", -"103 763 CURVE", -"45 735 LINE", -"76 639 OFFCURVE", -"140 601 OFFCURVE", -"196 601 CURVE SMOOTH" +"376 677 LINE SMOOTH", +"407 699 OFFCURVE", +"438 738 OFFCURVE", +"413 770 CURVE SMOOTH", +"390 797 OFFCURVE", +"345 779 OFFCURVE", +"310 741 CURVE SMOOTH", +"205 628 LINE", +"241 581 LINE" +); +}, +{ +closed = 1; +nodes = ( +"208 690 LINE SMOOTH", +"236 716 OFFCURVE", +"259 759 OFFCURVE", +"229 785 CURVE SMOOTH", +"202 808 OFFCURVE", +"161 782 OFFCURVE", +"134 746 CURVE SMOOTH", +"45 621 LINE", +"88 580 LINE" ); } ); -width = 395; +width = 468; } ); -unicode = 02D8; +unicode = 02DD; }, { -glyphname = caron; +glyphname = hungarumlaut.case; layers = ( { anchors = ( { name = _top; -position = "{191, 512}"; +position = "{150, 700}"; } ); -layerId = UUID0; -paths = ( +background = { +components = ( { -closed = 1; -nodes = ( -"187 580 LINE", -"354 744 LINE", -"332 770 LINE", -"192 652 LINE", -"190 652 LINE", -"68 766 LINE", -"45 741 LINE", -"185 580 LINE" -); -} -); -width = 399; +name = hungarumlaut; +transform = "{1, 0, 0, 1, 24, 390}"; }, { -anchors = ( -{ -name = _top; -position = "{213, 500}"; +name = U; +transform = "{1, 0, 0, 1, -400, 0}"; } ); -layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; +}; +layerId = UUID0; paths = ( { closed = 1; nodes = ( -"209 570 LINE", -"381 743 LINE", -"345 788 LINE", -"215 681 LINE", -"214 681 LINE", -"87 786 LINE", -"45 739 LINE", -"199 570 LINE" +"350 873 LINE SMOOTH", +"390 895 OFFCURVE", +"394 916 OFFCURVE", +"385 932 CURVE SMOOTH", +"374 952 OFFCURVE", +"351 957 OFFCURVE", +"311 921 CURVE SMOOTH", +"192 817 LINE", +"208 793 LINE" ); -} +}, +{ +closed = 1; +nodes = ( +"185 885 LINE SMOOTH", +"215 915 OFFCURVE", +"218 933 OFFCURVE", +"204 948 CURVE SMOOTH", +"187 967 OFFCURVE", +"160 958 OFFCURVE", +"136 921 CURVE SMOOTH", +"65 811 LINE", +"89 791 LINE" ); -width = 426; } ); -unicode = 02C7; +width = 379; }, { -glyphname = cedilla; -layers = ( -{ anchors = ( { -name = _bottom; -position = "{135, 0}"; +name = _top; +position = "{150, 700}"; } ); -layerId = UUID0; -paths = ( +background = { +components = ( { -closed = 1; -nodes = ( -"118 -230 OFFCURVE", -"240 -204 OFFCURVE", -"247 -123 CURVE SMOOTH", -"250 -87 OFFCURVE", -"225 -58 OFFCURVE", -"181 -58 CURVE SMOOTH", -"158 -58 OFFCURVE", -"133 -65 OFFCURVE", -"114 -77 CURVE", -"144 8 LINE", -"94 8 LINE", -"59 -100 LINE", -"93 -117 LINE", -"122 -97 OFFCURVE", -"173 -92 OFFCURVE", -"173 -133 CURVE SMOOTH", -"173 -172 OFFCURVE", -"113 -197 OFFCURVE", -"45 -209 CURVE", -"49 -240 LINE" -); -} -); -width = 293; +name = hungarumlaut; +transform = "{1, 0, 0, 1, -4, 410}"; }, { -anchors = ( -{ -name = _bottom; -position = "{165, 0}"; +name = U; +transform = "{1, 0, 0, 1, -390, 0}"; } ); +}; layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; paths = ( { closed = 1; nodes = ( -"127 -248 OFFCURVE", -"279 -216 OFFCURVE", -"284 -123 CURVE SMOOTH", -"287 -75 OFFCURVE", -"256 -54 OFFCURVE", -"215 -53 CURVE SMOOTH", -"197 -53 OFFCURVE", -"163 -60 OFFCURVE", -"145 -69 CURVE", -"178 10 LINE", -"102 10 LINE", -"64 -117 LINE", -"101 -133 LINE", -"121 -117 OFFCURVE", -"172 -109 OFFCURVE", -"170 -144 CURVE SMOOTH", -"168 -185 OFFCURVE", -"77 -201 OFFCURVE", -"45 -207 CURVE", -"50 -259 LINE" +"392 853 LINE SMOOTH", +"425 870 OFFCURVE", +"461 905 OFFCURVE", +"440 939 CURVE SMOOTH", +"422 970 OFFCURVE", +"374 958 OFFCURVE", +"334 925 CURVE SMOOTH", +"215 827 LINE", +"245 775 LINE" +); +}, +{ +closed = 1; +nodes = ( +"212 896 LINE SMOOTH", +"239 922 OFFCURVE", +"257 968 OFFCURVE", +"227 991 CURVE SMOOTH", +"197 1012 OFFCURVE", +"160 984 OFFCURVE", +"134 945 CURVE SMOOTH", +"55 821 LINE", +"101 784 LINE" ); } ); -width = 330; +width = 436; } ); -unicode = 00B8; }, { glyphname = circumflex; @@ -65149,13 +65609,13 @@ width = 419; ); }, { -glyphname = dieresis; +glyphname = caron; layers = ( { anchors = ( { name = _top; -position = "{168, 512}"; +position = "{191, 512}"; } ); layerId = UUID0; @@ -65163,45 +65623,24 @@ paths = ( { closed = 1; nodes = ( -"271 616 OFFCURVE", -"294 640 OFFCURVE", -"295 670 CURVE SMOOTH", -"297 701 OFFCURVE", -"279 725 OFFCURVE", -"253 725 CURVE SMOOTH", -"229 725 OFFCURVE", -"206 701 OFFCURVE", -"204 670 CURVE SMOOTH", -"203 640 OFFCURVE", -"222 616 OFFCURVE", -"248 616 CURVE SMOOTH" -); -}, -{ -closed = 1; -nodes = ( -"125 616 OFFCURVE", -"147 640 OFFCURVE", -"148 670 CURVE SMOOTH", -"150 701 OFFCURVE", -"132 725 OFFCURVE", -"106 725 CURVE SMOOTH", -"82 725 OFFCURVE", -"59 701 OFFCURVE", -"57 670 CURVE SMOOTH", -"56 640 OFFCURVE", -"75 616 OFFCURVE", -"101 616 CURVE SMOOTH" +"187 580 LINE", +"354 744 LINE", +"332 770 LINE", +"192 652 LINE", +"190 652 LINE", +"68 766 LINE", +"45 741 LINE", +"185 580 LINE" ); } ); -width = 351; +width = 399; }, { anchors = ( { name = _top; -position = "{207, 500}"; +position = "{213, 500}"; } ); layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; @@ -65209,89 +65648,30 @@ paths = ( { closed = 1; nodes = ( -"328 600 OFFCURVE", -"359 635 OFFCURVE", -"359 681 CURVE SMOOTH", -"359 719 OFFCURVE", -"335 751 OFFCURVE", -"299 751 CURVE SMOOTH", -"262 751 OFFCURVE", -"229 714 OFFCURVE", -"229 670 CURVE SMOOTH", -"229 630 OFFCURVE", -"255 600 OFFCURVE", -"290 600 CURVE SMOOTH" -); -}, -{ -closed = 1; -nodes = ( -"154 600 OFFCURVE", -"185 636 OFFCURVE", -"185 681 CURVE SMOOTH", -"185 719 OFFCURVE", -"161 751 OFFCURVE", -"125 751 CURVE SMOOTH", -"88 751 OFFCURVE", -"55 714 OFFCURVE", -"55 670 CURVE SMOOTH", -"55 630 OFFCURVE", -"81 600 OFFCURVE", -"116 600 CURVE SMOOTH" -); -} -); -width = 415; -} -); -unicode = 00A8; -}, -{ -glyphname = dotaccent; -layers = ( -{ -anchors = ( -{ -name = _top; -position = "{91, 512}"; -} -); -components = ( -{ -name = period; -transform = "{0.923, 0, 0, 0.922, 7, 624}"; -} +"209 570 LINE", +"381 743 LINE", +"345 788 LINE", +"215 681 LINE", +"214 681 LINE", +"87 786 LINE", +"45 739 LINE", +"199 570 LINE" ); -layerId = UUID0; -width = 198; -}, -{ -anchors = ( -{ -name = _top; -position = "{113, 500}"; } ); -components = ( -{ -name = period; -transform = "{0.923, 0, 0, 0.922, 21, 624}"; -} -); -layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; -width = 228; +width = 426; } ); -unicode = 02D9; +unicode = 02C7; }, { -glyphname = grave; +glyphname = breve; layers = ( { anchors = ( { name = _top; -position = "{132, 512}"; +position = "{171, 512}"; } ); layerId = UUID0; @@ -65299,25 +65679,30 @@ paths = ( { closed = 1; nodes = ( -"195 599 LINE", -"117 731 LINE SMOOTH", -"90 777 OFFCURVE", -"61 761 OFFCURVE", -"55 755 CURVE SMOOTH", -"47 747 OFFCURVE", -"33 723 OFFCURVE", -"68 686 CURVE SMOOTH", -"171 579 LINE" +"226 608 OFFCURVE", +"282 644 OFFCURVE", +"315 724 CURVE", +"292 735 LINE", +"267 692 OFFCURVE", +"224 662 OFFCURVE", +"178 662 CURVE SMOOTH", +"133 662 OFFCURVE", +"88 694 OFFCURVE", +"70 731 CURVE", +"45 722 LINE", +"67 643 OFFCURVE", +"126 608 OFFCURVE", +"171 608 CURVE SMOOTH" ); } ); -width = 240; +width = 360; }, { anchors = ( { name = _top; -position = "{147, 500}"; +position = "{198, 500}"; } ); layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; @@ -65325,31 +65710,36 @@ paths = ( { closed = 1; nodes = ( -"232 606 LINE", -"154 746 LINE SMOOTH", -"135 779 OFFCURVE", -"98 795 OFFCURVE", -"64 770 CURVE SMOOTH", -"32 741 OFFCURVE", -"45 698 OFFCURVE", -"70 672 CURVE SMOOTH", -"184 565 LINE" +"264 601 OFFCURVE", +"315 643 OFFCURVE", +"350 740 CURVE", +"295 764 LINE", +"276 727 OFFCURVE", +"247 690 OFFCURVE", +"200 690 CURVE SMOOTH", +"153 690 OFFCURVE", +"124 726 OFFCURVE", +"103 763 CURVE", +"45 735 LINE", +"76 639 OFFCURVE", +"140 601 OFFCURVE", +"196 601 CURVE SMOOTH" ); } ); -width = 277; +width = 395; } ); -unicode = 0060; +unicode = 02D8; }, { -glyphname = hungarumlaut; +glyphname = ring; layers = ( { anchors = ( { name = _top; -position = "{201, 512}"; +position = "{136, 512}"; } ); layerId = UUID0; @@ -65357,39 +65747,45 @@ paths = ( { closed = 1; nodes = ( -"338 685 LINE SMOOTH", -"376 710 OFFCURVE", -"378 731 OFFCURVE", -"368 747 CURVE SMOOTH", -"359 761 OFFCURVE", -"332 769 OFFCURVE", -"295 730 CURVE SMOOTH", -"185 617 LINE", -"203 594 LINE" +"188 570 OFFCURVE", +"242 609 OFFCURVE", +"243 671 CURVE SMOOTH", +"244 733 OFFCURVE", +"196 761 OFFCURVE", +"149 761 CURVE SMOOTH", +"100 761 OFFCURVE", +"47 720 OFFCURVE", +"46 661 CURVE SMOOTH", +"45 598 OFFCURVE", +"92 570 OFFCURVE", +"140 570 CURVE SMOOTH" ); }, { closed = 1; nodes = ( -"185 688 LINE SMOOTH", -"226 723 OFFCURVE", -"215 743 OFFCURVE", -"207 753 CURVE SMOOTH", -"201 760 OFFCURVE", -"173 772 OFFCURVE", -"140 729 CURVE SMOOTH", -"45 607 LINE", -"67 585 LINE" +"114 597 OFFCURVE", +"95 631 OFFCURVE", +"97 670 CURVE SMOOTH", +"99 705 OFFCURVE", +"121 732 OFFCURVE", +"147 733 CURVE SMOOTH", +"176 734 OFFCURVE", +"194 702 OFFCURVE", +"192 660 CURVE SMOOTH", +"190 625 OFFCURVE", +"169 599 OFFCURVE", +"145 598 CURVE SMOOTH" ); } ); -width = 419; +width = 289; }, { anchors = ( { name = _top; -position = "{233, 500}"; +position = "{165, 500}"; } ); layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; @@ -65397,145 +65793,122 @@ paths = ( { closed = 1; nodes = ( -"376 677 LINE SMOOTH", -"407 699 OFFCURVE", -"438 738 OFFCURVE", -"413 770 CURVE SMOOTH", -"390 797 OFFCURVE", -"345 779 OFFCURVE", -"310 741 CURVE SMOOTH", -"205 628 LINE", -"241 581 LINE" +"217 563 OFFCURVE", +"281 610 OFFCURVE", +"283 685 CURVE SMOOTH", +"284 760 OFFCURVE", +"226 795 OFFCURVE", +"170 795 CURVE SMOOTH", +"107 795 OFFCURVE", +"47 743 OFFCURVE", +"46 674 CURVE SMOOTH", +"45 603 OFFCURVE", +"104 563 OFFCURVE", +"159 563 CURVE SMOOTH" ); }, { closed = 1; nodes = ( -"208 690 LINE SMOOTH", -"236 716 OFFCURVE", -"259 759 OFFCURVE", -"229 785 CURVE SMOOTH", -"202 808 OFFCURVE", -"161 782 OFFCURVE", -"134 746 CURVE SMOOTH", -"45 621 LINE", -"88 580 LINE" +"143 623 OFFCURVE", +"126 645 OFFCURVE", +"128 687 CURVE SMOOTH", +"130 720 OFFCURVE", +"149 735 OFFCURVE", +"167 736 CURVE SMOOTH", +"188 736 OFFCURVE", +"206 717 OFFCURVE", +"204 672 CURVE SMOOTH", +"202 641 OFFCURVE", +"184 624 OFFCURVE", +"167 623 CURVE SMOOTH" ); } ); -width = 468; +width = 329; } ); -unicode = 02DD; +unicode = 02DA; }, { -glyphname = hungarumlaut.case; +glyphname = tilde; layers = ( { anchors = ( { name = _top; -position = "{150, 700}"; -} -); -background = { -components = ( -{ -name = hungarumlaut; -transform = "{1, 0, 0, 1, 24, 390}"; -}, -{ -name = U; -transform = "{1, 0, 0, 1, -400, 0}"; +position = "{204, 512}"; } ); -}; layerId = UUID0; paths = ( { closed = 1; nodes = ( -"350 873 LINE SMOOTH", -"390 895 OFFCURVE", -"394 916 OFFCURVE", -"385 932 CURVE SMOOTH", -"374 952 OFFCURVE", -"351 957 OFFCURVE", -"311 921 CURVE SMOOTH", -"192 817 LINE", -"208 793 LINE" -); -}, -{ -closed = 1; -nodes = ( -"185 885 LINE SMOOTH", -"215 915 OFFCURVE", -"218 933 OFFCURVE", -"204 948 CURVE SMOOTH", -"187 967 OFFCURVE", -"160 958 OFFCURVE", -"136 921 CURVE SMOOTH", -"65 811 LINE", -"89 791 LINE" +"90 654 OFFCURVE", +"120 670 OFFCURVE", +"143 670 CURVE SMOOTH", +"190 670 OFFCURVE", +"214 617 OFFCURVE", +"276 617 CURVE SMOOTH", +"311 617 OFFCURVE", +"354 642 OFFCURVE", +"379 708 CURVE", +"355 720 LINE", +"333 687 OFFCURVE", +"310 668 OFFCURVE", +"279 669 CURVE SMOOTH", +"235 670 OFFCURVE", +"214 723 OFFCURVE", +"151 721 CURVE SMOOTH", +"114 720 OFFCURVE", +"64 685 OFFCURVE", +"45 638 CURVE", +"70 625 LINE" ); } ); -width = 379; +width = 424; }, { anchors = ( { name = _top; -position = "{150, 700}"; -} -); -background = { -components = ( -{ -name = hungarumlaut; -transform = "{1, 0, 0, 1, -4, 410}"; -}, -{ -name = U; -transform = "{1, 0, 0, 1, -390, 0}"; +position = "{222, 500}"; } ); -}; layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; paths = ( { closed = 1; nodes = ( -"392 853 LINE SMOOTH", -"425 870 OFFCURVE", -"461 905 OFFCURVE", -"440 939 CURVE SMOOTH", -"422 970 OFFCURVE", -"374 958 OFFCURVE", -"334 925 CURVE SMOOTH", -"215 827 LINE", -"245 775 LINE" -); -}, -{ -closed = 1; -nodes = ( -"212 896 LINE SMOOTH", -"239 922 OFFCURVE", -"257 968 OFFCURVE", -"227 991 CURVE SMOOTH", -"197 1012 OFFCURVE", -"160 984 OFFCURVE", -"134 945 CURVE SMOOTH", -"55 821 LINE", -"101 784 LINE" +"118 638 OFFCURVE", +"146 647 OFFCURVE", +"162 647 CURVE SMOOTH", +"201 647 OFFCURVE", +"229 609 OFFCURVE", +"282 609 CURVE SMOOTH", +"322 609 OFFCURVE", +"372 639 OFFCURVE", +"399 723 CURVE", +"346 751 LINE", +"329 720 OFFCURVE", +"306 700 OFFCURVE", +"282 700 CURVE SMOOTH", +"234 700 OFFCURVE", +"222 738 OFFCURVE", +"160 738 CURVE SMOOTH", +"116 738 OFFCURVE", +"66 700 OFFCURVE", +"45 640 CURVE", +"98 606 LINE" ); } ); -width = 436; +width = 444; } ); +unicode = 02DC; }, { glyphname = macron; @@ -65586,6 +65959,86 @@ width = 378; unicode = 00AF; }, { +glyphname = cedilla; +layers = ( +{ +anchors = ( +{ +name = _bottom; +position = "{135, 0}"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"118 -230 OFFCURVE", +"240 -204 OFFCURVE", +"247 -123 CURVE SMOOTH", +"250 -87 OFFCURVE", +"225 -58 OFFCURVE", +"181 -58 CURVE SMOOTH", +"158 -58 OFFCURVE", +"133 -65 OFFCURVE", +"114 -77 CURVE", +"144 8 LINE", +"94 8 LINE", +"59 -100 LINE", +"93 -117 LINE", +"122 -97 OFFCURVE", +"173 -92 OFFCURVE", +"173 -133 CURVE SMOOTH", +"173 -172 OFFCURVE", +"113 -197 OFFCURVE", +"45 -209 CURVE", +"49 -240 LINE" +); +} +); +width = 293; +}, +{ +anchors = ( +{ +name = _bottom; +position = "{165, 0}"; +} +); +layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; +paths = ( +{ +closed = 1; +nodes = ( +"127 -248 OFFCURVE", +"279 -216 OFFCURVE", +"284 -123 CURVE SMOOTH", +"287 -75 OFFCURVE", +"256 -54 OFFCURVE", +"215 -53 CURVE SMOOTH", +"197 -53 OFFCURVE", +"163 -60 OFFCURVE", +"145 -69 CURVE", +"178 10 LINE", +"102 10 LINE", +"64 -117 LINE", +"101 -133 LINE", +"121 -117 OFFCURVE", +"172 -109 OFFCURVE", +"170 -144 CURVE SMOOTH", +"168 -185 OFFCURVE", +"77 -201 OFFCURVE", +"45 -207 CURVE", +"50 -259 LINE" +); +} +); +width = 330; +} +); +unicode = 00B8; +}, +{ glyphname = ogonek; layers = ( { @@ -65666,184 +66119,6 @@ width = 327; unicode = 02DB; }, { -glyphname = ring; -layers = ( -{ -anchors = ( -{ -name = _top; -position = "{136, 512}"; -} -); -layerId = UUID0; -paths = ( -{ -closed = 1; -nodes = ( -"188 570 OFFCURVE", -"242 609 OFFCURVE", -"243 671 CURVE SMOOTH", -"244 733 OFFCURVE", -"196 761 OFFCURVE", -"149 761 CURVE SMOOTH", -"100 761 OFFCURVE", -"47 720 OFFCURVE", -"46 661 CURVE SMOOTH", -"45 598 OFFCURVE", -"92 570 OFFCURVE", -"140 570 CURVE SMOOTH" -); -}, -{ -closed = 1; -nodes = ( -"114 597 OFFCURVE", -"95 631 OFFCURVE", -"97 670 CURVE SMOOTH", -"99 705 OFFCURVE", -"121 732 OFFCURVE", -"147 733 CURVE SMOOTH", -"176 734 OFFCURVE", -"194 702 OFFCURVE", -"192 660 CURVE SMOOTH", -"190 625 OFFCURVE", -"169 599 OFFCURVE", -"145 598 CURVE SMOOTH" -); -} -); -width = 289; -}, -{ -anchors = ( -{ -name = _top; -position = "{165, 500}"; -} -); -layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; -paths = ( -{ -closed = 1; -nodes = ( -"217 563 OFFCURVE", -"281 610 OFFCURVE", -"283 685 CURVE SMOOTH", -"284 760 OFFCURVE", -"226 795 OFFCURVE", -"170 795 CURVE SMOOTH", -"107 795 OFFCURVE", -"47 743 OFFCURVE", -"46 674 CURVE SMOOTH", -"45 603 OFFCURVE", -"104 563 OFFCURVE", -"159 563 CURVE SMOOTH" -); -}, -{ -closed = 1; -nodes = ( -"143 623 OFFCURVE", -"126 645 OFFCURVE", -"128 687 CURVE SMOOTH", -"130 720 OFFCURVE", -"149 735 OFFCURVE", -"167 736 CURVE SMOOTH", -"188 736 OFFCURVE", -"206 717 OFFCURVE", -"204 672 CURVE SMOOTH", -"202 641 OFFCURVE", -"184 624 OFFCURVE", -"167 623 CURVE SMOOTH" -); -} -); -width = 329; -} -); -unicode = 02DA; -}, -{ -glyphname = tilde; -layers = ( -{ -anchors = ( -{ -name = _top; -position = "{204, 512}"; -} -); -layerId = UUID0; -paths = ( -{ -closed = 1; -nodes = ( -"90 654 OFFCURVE", -"120 670 OFFCURVE", -"143 670 CURVE SMOOTH", -"190 670 OFFCURVE", -"214 617 OFFCURVE", -"276 617 CURVE SMOOTH", -"311 617 OFFCURVE", -"354 642 OFFCURVE", -"379 708 CURVE", -"355 720 LINE", -"333 687 OFFCURVE", -"310 668 OFFCURVE", -"279 669 CURVE SMOOTH", -"235 670 OFFCURVE", -"214 723 OFFCURVE", -"151 721 CURVE SMOOTH", -"114 720 OFFCURVE", -"64 685 OFFCURVE", -"45 638 CURVE", -"70 625 LINE" -); -} -); -width = 424; -}, -{ -anchors = ( -{ -name = _top; -position = "{222, 500}"; -} -); -layerId = "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094"; -paths = ( -{ -closed = 1; -nodes = ( -"118 638 OFFCURVE", -"146 647 OFFCURVE", -"162 647 CURVE SMOOTH", -"201 647 OFFCURVE", -"229 609 OFFCURVE", -"282 609 CURVE SMOOTH", -"322 609 OFFCURVE", -"372 639 OFFCURVE", -"399 723 CURVE", -"346 751 LINE", -"329 720 OFFCURVE", -"306 700 OFFCURVE", -"282 700 CURVE SMOOTH", -"234 700 OFFCURVE", -"222 738 OFFCURVE", -"160 738 CURVE SMOOTH", -"116 738 OFFCURVE", -"66 700 OFFCURVE", -"45 640 CURVE", -"98 606 LINE" -); -} -); -width = 444; -} -); -unicode = 02DC; -}, -{ color = 10; export = 0; glyphname = breve.case; @@ -69393,6 +69668,17 @@ name = "Medium Italic"; weightClass = Medium; }, { +interpolationWeight = 600; +instanceInterpolations = { +"6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094" = 0.66667; +UUID0 = 0.33333; +}; +isItalic = 1; +linkStyle = SemiBold; +name = "SemiBold Italic"; +weightClass = SemiBold; +}, +{ interpolationWeight = 700; instanceInterpolations = { "6B2A2AD0-3CEC-4B3D-96BE-6A11A3496094" = 1; @@ -73186,6 +73472,6 @@ tH = 79; }; }; }; -versionMajor = 2; -versionMinor = 211; +versionMajor = 3; +versionMinor = 1; } diff --git a/sources/Lora.glyphs b/sources/Lora.glyphs index b4eb02f8..575dc5d7 100644 --- a/sources/Lora.glyphs +++ b/sources/Lora.glyphs @@ -1,9 +1,5 @@ { -.appVersion = "1230"; -DisplayStrings = ( -h, -"Hh/hcircumflex" -); +.appVersion = "1342"; classes = ( { automatic = 1; @@ -405,15 +401,6 @@ value = 0; { name = typoLineGap; value = 0; -}, -{ -name = "Axis Location"; -value = ( -{ -Axis = Weight; -Location = 400; -} -); } ); descender = -255; @@ -487,15 +474,6 @@ value = 0; { name = typoLineGap; value = 0; -}, -{ -name = "Axis Location"; -value = ( -{ -Axis = Weight; -Location = "700"; -} -); } ); descender = -275; @@ -31124,6 +31102,96 @@ rightMetricsKey = "ge-cy"; unicode = 04A4; }, { +glyphname = "Pemiddlehook-cy"; +layers = ( +{ +components = ( +{ +name = "Pe-cy"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"926 -223 OFFCURVE", +"1011 -63 OFFCURVE", +"1011 107 CURVE SMOOTH", +"1011 301 OFFCURVE", +"933 407 OFFCURVE", +"766 407 CURVE SMOOTH", +"715 407 OFFCURVE", +"646 392 OFFCURVE", +"607 369 CURVE", +"607 322 LINE", +"637 343 OFFCURVE", +"684 358 OFFCURVE", +"742 358 CURVE SMOOTH", +"866 358 OFFCURVE", +"916 268 OFFCURVE", +"913 99 CURVE SMOOTH", +"910 -86 OFFCURVE", +"872 -188 OFFCURVE", +"757 -188 CURVE SMOOTH", +"743 -188 OFFCURVE", +"726 -186 OFFCURVE", +"710 -183 CURVE", +"705 -213 LINE", +"729 -220 OFFCURVE", +"752 -223 OFFCURVE", +"774 -223 CURVE SMOOTH" +); +} +); +width = 1021; +}, +{ +components = ( +{ +name = "Pe-cy"; +} +); +layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; +paths = ( +{ +closed = 1; +nodes = ( +"948 -229 OFFCURVE", +"1050 -107 OFFCURVE", +"1050 106 CURVE SMOOTH", +"1050 302 OFFCURVE", +"965 406 OFFCURVE", +"798 406 CURVE SMOOTH", +"737 406 OFFCURVE", +"658 391 OFFCURVE", +"619 368 CURVE", +"596 289 LINE", +"626 308 OFFCURVE", +"701 327 OFFCURVE", +"749 327 CURVE SMOOTH", +"823 327 OFFCURVE", +"896 275 OFFCURVE", +"892 98 CURVE SMOOTH", +"889 -37 OFFCURVE", +"871 -151 OFFCURVE", +"776 -151 CURVE SMOOTH", +"762 -151 OFFCURVE", +"735 -149 OFFCURVE", +"719 -146 CURVE", +"708 -216 LINE", +"739 -225 OFFCURVE", +"775 -229 OFFCURVE", +"802 -229 CURVE SMOOTH" +); +} +); +width = 1060; +} +); +unicode = 04A6; +}, +{ glyphname = "Pedescender-cy"; layers = ( { @@ -45202,6 +45270,96 @@ rightMetricsKey = "tse-cy"; unicode = 0525; }, { +glyphname = "pemiddlehook-cy"; +layers = ( +{ +components = ( +{ +name = "pe-cy"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"713 -229 OFFCURVE", +"810 -95 OFFCURVE", +"810 62 CURVE SMOOTH", +"810 188 OFFCURVE", +"744 283 OFFCURVE", +"610 283 CURVE SMOOTH", +"570 283 OFFCURVE", +"533 273 OFFCURVE", +"501 261 CURVE", +"501 226 LINE", +"527 235 OFFCURVE", +"548 239 OFFCURVE", +"587 239 CURVE SMOOTH", +"695 239 OFFCURVE", +"714 162 OFFCURVE", +"713 60 CURVE SMOOTH", +"711 -108 OFFCURVE", +"677 -194 OFFCURVE", +"602 -194 CURVE SMOOTH", +"593 -194 OFFCURVE", +"584 -193 OFFCURVE", +"573 -191 CURVE", +"564 -222 LINE", +"581 -227 OFFCURVE", +"596 -229 OFFCURVE", +"612 -229 CURVE SMOOTH" +); +} +); +width = 810; +}, +{ +components = ( +{ +name = "pe-cy"; +} +); +layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; +paths = ( +{ +closed = 1; +nodes = ( +"755 -229 OFFCURVE", +"863 -111 OFFCURVE", +"863 36 CURVE SMOOTH", +"863 192 OFFCURVE", +"784 283 OFFCURVE", +"650 283 CURVE SMOOTH", +"610 283 OFFCURVE", +"556 273 OFFCURVE", +"524 261 CURVE", +"524 195 LINE", +"550 204 OFFCURVE", +"571 209 OFFCURVE", +"600 209 CURVE SMOOTH", +"693 209 OFFCURVE", +"722 152 OFFCURVE", +"721 40 CURVE SMOOTH", +"719 -128 OFFCURVE", +"672 -161 OFFCURVE", +"627 -161 CURVE SMOOTH", +"618 -161 OFFCURVE", +"605 -160 OFFCURVE", +"594 -157 CURVE", +"583 -221 LINE", +"600 -226 OFFCURVE", +"638 -229 OFFCURVE", +"654 -229 CURVE SMOOTH" +); +} +); +width = 868; +} +); +unicode = 04A7; +}, +{ glyphname = "haabkhasian-cy"; layers = ( { @@ -68515,6 +68673,234 @@ width = 845; unicode = 0336; }, { +glyphname = dieresis; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{193, 500}"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"303 611 OFFCURVE", +"327 637 OFFCURVE", +"327 670 CURVE SMOOTH", +"327 703 OFFCURVE", +"306 730 OFFCURVE", +"277 730 CURVE SMOOTH", +"251 730 OFFCURVE", +"227 703 OFFCURVE", +"227 670 CURVE SMOOTH", +"227 637 OFFCURVE", +"250 611 OFFCURVE", +"277 611 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"136 611 OFFCURVE", +"160 637 OFFCURVE", +"160 670 CURVE SMOOTH", +"160 703 OFFCURVE", +"139 730 OFFCURVE", +"110 730 CURVE SMOOTH", +"84 730 OFFCURVE", +"60 703 OFFCURVE", +"60 670 CURVE SMOOTH", +"60 637 OFFCURVE", +"83 611 OFFCURVE", +"110 611 CURVE SMOOTH" +); +} +); +width = 387; +}, +{ +anchors = ( +{ +name = _top; +position = "{213, 500}"; +} +); +layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; +paths = ( +{ +closed = 1; +nodes = ( +"336 600 OFFCURVE", +"367 633 OFFCURVE", +"367 675 CURVE SMOOTH", +"367 716 OFFCURVE", +"339 751 OFFCURVE", +"301 751 CURVE SMOOTH", +"265 751 OFFCURVE", +"234 716 OFFCURVE", +"234 675 CURVE SMOOTH", +"234 633 OFFCURVE", +"264 600 OFFCURVE", +"300 600 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"162 600 OFFCURVE", +"193 633 OFFCURVE", +"193 675 CURVE SMOOTH", +"193 716 OFFCURVE", +"165 751 OFFCURVE", +"127 751 CURVE SMOOTH", +"91 751 OFFCURVE", +"60 716 OFFCURVE", +"60 675 CURVE SMOOTH", +"60 633 OFFCURVE", +"90 600 OFFCURVE", +"126 600 CURVE SMOOTH" +); +} +); +width = 427; +} +); +unicode = 00A8; +}, +{ +glyphname = dotaccent; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{99, 500}"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"127.76 609.28 OFFCURVE", +"153.52 635.04 OFFCURVE", +"153.52 668.16 CURVE SMOOTH", +"153.52 701.28 OFFCURVE", +"130.52 727.96 OFFCURVE", +"100.16 727.96 CURVE SMOOTH", +"71.64 727.96 OFFCURVE", +"45.88 701.28 OFFCURVE", +"45.88 668.16 CURVE SMOOTH", +"45.88 635.04 OFFCURVE", +"70.72 609.28 OFFCURVE", +"99.24 609.28 CURVE SMOOTH" +); +} +); +width = 198; +}, +{ +anchors = ( +{ +name = _top; +position = "{120, 500}"; +} +); +background = { +components = ( +{ +name = period; +transform = "{0.92, 0, 0, 0.92, -27, 1278}"; +} +); +}; +layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; +paths = ( +{ +closed = 1; +nodes = ( +"167.05 589.2 OFFCURVE", +"196.45 625.95 OFFCURVE", +"196.45 671.1 CURVE SMOOTH", +"196.45 716.25 OFFCURVE", +"163.9 753 OFFCURVE", +"120.85 753 CURVE SMOOTH", +"79.9 753 OFFCURVE", +"44.2 716.25 OFFCURVE", +"44.2 671.1 CURVE SMOOTH", +"44.2 625.95 OFFCURVE", +"75.7 589.2 OFFCURVE", +"121.9 589.2 CURVE SMOOTH" +); +} +); +width = 240; +} +); +unicode = 02D9; +}, +{ +glyphname = grave; +layers = ( +{ +anchors = ( +{ +name = _top; +position = "{126, 500}"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"207 603 LINE", +"123 738 LINE SMOOTH", +"93 781 OFFCURVE", +"63 761 OFFCURVE", +"58 757 CURVE SMOOTH", +"50 750 OFFCURVE", +"31 724 OFFCURVE", +"67 686 CURVE SMOOTH", +"179 580 LINE" +); +} +); +width = 252; +}, +{ +anchors = ( +{ +name = _top; +position = "{141, 500}"; +} +); +layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; +paths = ( +{ +closed = 1; +nodes = ( +"238 606 LINE", +"156 746 LINE SMOOTH", +"135 779 OFFCURVE", +"94 795 OFFCURVE", +"63 770 CURVE SMOOTH", +"31 741 OFFCURVE", +"44 696 OFFCURVE", +"71 671 CURVE SMOOTH", +"192 565 LINE" +); +} +); +width = 282; +} +); +unicode = 0060; +}, +{ glyphname = acute; layers = ( { @@ -68573,13 +68959,13 @@ width = 282; unicode = 00B4; }, { -glyphname = breve; +glyphname = hungarumlaut; layers = ( { anchors = ( { name = _top; -position = "{182, 500}"; +position = "{181, 500}"; } ); layerId = UUID0; @@ -68587,107 +68973,69 @@ paths = ( { closed = 1; nodes = ( -"242 604 OFFCURVE", -"289 645 OFFCURVE", -"318 725 CURVE", -"291 737 LINE", -"272 700 OFFCURVE", -"229 665 OFFCURVE", -"183 665 CURVE SMOOTH", -"137 665 OFFCURVE", -"94 698 OFFCURVE", -"74 735 CURVE", -"45 720 LINE", -"70 641 OFFCURVE", -"128 604 OFFCURVE", -"180 604 CURVE SMOOTH" -); -} +"340 688 LINE SMOOTH", +"360 702 OFFCURVE", +"371 729 OFFCURVE", +"357 748 CURVE SMOOTH", +"343 768 OFFCURVE", +"314 765 OFFCURVE", +"296 746 CURVE SMOOTH", +"175 614 LINE", +"194 588 LINE" ); -width = 363; }, { -anchors = ( -{ -name = _top; -position = "{202, 500}"; -} -); -layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; -paths = ( -{ closed = 1; nodes = ( -"268 600 OFFCURVE", -"325 638 OFFCURVE", -"360 735 CURVE", -"295 764 LINE", -"276 727 OFFCURVE", -"250 692 OFFCURVE", -"204 692 CURVE SMOOTH", -"157 692 OFFCURVE", -"130 726 OFFCURVE", -"109 763 CURVE", -"44 730 LINE", -"75 634 OFFCURVE", -"144 600 OFFCURVE", -"200 600 CURVE SMOOTH" -); -} +"188 702 LINE SMOOTH", +"212 733 OFFCURVE", +"206 757 OFFCURVE", +"190 768 CURVE SMOOTH", +"171 781 OFFCURVE", +"145 778 OFFCURVE", +"128 741 CURVE SMOOTH", +"72 613 LINE", +"101 595 LINE" ); -width = 404; } ); -unicode = 02D8; +width = 389; }, { -glyphname = caron; -layers = ( -{ anchors = ( { name = _top; -position = "{200, 500}"; +position = "{197, 500}"; } ); -layerId = UUID0; +background = { paths = ( { closed = 1; nodes = ( -"196 573 LINE", -"355 741 LINE", -"330 770 LINE", -"201 659 LINE", -"199 659 LINE", -"72 768 LINE", -"45 736 LINE", -"194 573 LINE" -); -} +"101 595 LINE", +"72 613 LINE", +"128 741 LINE SMOOTH", +"145 778 OFFCURVE", +"171 781 OFFCURVE", +"190 768 CURVE SMOOTH", +"206 757 OFFCURVE", +"212 733 OFFCURVE", +"188 702 CURVE SMOOTH" ); -width = 400; }, { -anchors = ( -{ -name = _top; -position = "{198, 500}"; -} -); -background = { -paths = ( -{ closed = 1; nodes = ( -"201 659 LINE", -"199 659 LINE", -"72 768 LINE", -"45 736 LINE", -"194 573 LINE", -"196 573 LINE", -"355 741 LINE", -"330 770 LINE" +"194 588 LINE", +"175 614 LINE", +"296 746 LINE SMOOTH", +"314 765 OFFCURVE", +"343 768 OFFCURVE", +"357 748 CURVE SMOOTH", +"371 729 OFFCURVE", +"360 702 OFFCURVE", +"340 688 CURVE SMOOTH" ); } ); @@ -68697,101 +69045,36 @@ paths = ( { closed = 1; nodes = ( -"202 557 LINE", -"365 729 LINE", -"323 777 LINE", -"202 672 LINE", -"201 672 LINE", -"72 777 LINE", -"29 726 LINE", -"191 557 LINE" -); -} -); -width = 424; -} -); -unicode = 02C7; -}, -{ -glyphname = cedilla; -layers = ( -{ -anchors = ( -{ -name = _bottom; -position = "{146, 0}"; -} -); -layerId = UUID0; -paths = ( -{ -closed = 1; -nodes = ( -"119 -231 OFFCURVE", -"247 -204 OFFCURVE", -"247 -123 CURVE SMOOTH", -"247 -83 OFFCURVE", -"221 -57 OFFCURVE", -"180 -57 CURVE SMOOTH", -"157 -57 OFFCURVE", -"131 -63 OFFCURVE", -"112 -74 CURVE", -"139 8 LINE", -"83 8 LINE", -"54 -100 LINE", -"88 -116 LINE", -"116 -97 OFFCURVE", -"165 -91 OFFCURVE", -"165 -131 CURVE SMOOTH", -"165 -170 OFFCURVE", -"113 -195 OFFCURVE", -"45 -208 CURVE", -"51 -241 LINE" -); -} +"357 676 LINE SMOOTH", +"388 697 OFFCURVE", +"417 737 OFFCURVE", +"390 769 CURVE SMOOTH", +"366 796 OFFCURVE", +"321 781 OFFCURVE", +"288 743 CURVE SMOOTH", +"189 628 LINE", +"228 581 LINE" ); -width = 292; }, { -anchors = ( -{ -name = _bottom; -position = "{119, 0}"; -} -); -layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; -paths = ( -{ closed = 1; nodes = ( -"130 -248 OFFCURVE", -"280 -216 OFFCURVE", -"280 -123 CURVE SMOOTH", -"280 -75 OFFCURVE", -"249 -54 OFFCURVE", -"207 -53 CURVE SMOOTH", -"189 -53 OFFCURVE", -"155 -60 OFFCURVE", -"139 -69 CURVE", -"167 10 LINE", -"91 10 LINE", -"60 -117 LINE", -"97 -133 LINE", -"117 -117 OFFCURVE", -"165 -109 OFFCURVE", -"165 -144 CURVE SMOOTH", -"165 -185 OFFCURVE", -"77 -201 OFFCURVE", -"45 -207 CURVE", -"53 -259 LINE" +"196 697 LINE SMOOTH", +"218 726 OFFCURVE", +"231 772 OFFCURVE", +"197 793 CURVE SMOOTH", +"166 812 OFFCURVE", +"129 783 OFFCURVE", +"110 743 CURVE SMOOTH", +"45 606 LINE", +"96 572 LINE" ); } ); -width = 325; +width = 428; } ); -unicode = 00B8; +unicode = 02DD; }, { glyphname = circumflex; @@ -68850,13 +69133,13 @@ width = 429; unicode = 02C6; }, { -glyphname = dieresis; +glyphname = caron; layers = ( { anchors = ( { name = _top; -position = "{193, 500}"; +position = "{200, 500}"; } ); layerId = UUID0; @@ -68864,97 +69147,72 @@ paths = ( { closed = 1; nodes = ( -"303 611 OFFCURVE", -"327 637 OFFCURVE", -"327 670 CURVE SMOOTH", -"327 703 OFFCURVE", -"306 730 OFFCURVE", -"277 730 CURVE SMOOTH", -"251 730 OFFCURVE", -"227 703 OFFCURVE", -"227 670 CURVE SMOOTH", -"227 637 OFFCURVE", -"250 611 OFFCURVE", -"277 611 CURVE SMOOTH" -); -}, -{ -closed = 1; -nodes = ( -"136 611 OFFCURVE", -"160 637 OFFCURVE", -"160 670 CURVE SMOOTH", -"160 703 OFFCURVE", -"139 730 OFFCURVE", -"110 730 CURVE SMOOTH", -"84 730 OFFCURVE", -"60 703 OFFCURVE", -"60 670 CURVE SMOOTH", -"60 637 OFFCURVE", -"83 611 OFFCURVE", -"110 611 CURVE SMOOTH" +"196 573 LINE", +"355 741 LINE", +"330 770 LINE", +"201 659 LINE", +"199 659 LINE", +"72 768 LINE", +"45 736 LINE", +"194 573 LINE" ); } ); -width = 387; +width = 400; }, { anchors = ( { name = _top; -position = "{213, 500}"; +position = "{198, 500}"; } ); -layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; +background = { paths = ( { closed = 1; nodes = ( -"336 600 OFFCURVE", -"367 633 OFFCURVE", -"367 675 CURVE SMOOTH", -"367 716 OFFCURVE", -"339 751 OFFCURVE", -"301 751 CURVE SMOOTH", -"265 751 OFFCURVE", -"234 716 OFFCURVE", -"234 675 CURVE SMOOTH", -"234 633 OFFCURVE", -"264 600 OFFCURVE", -"300 600 CURVE SMOOTH" +"201 659 LINE", +"199 659 LINE", +"72 768 LINE", +"45 736 LINE", +"194 573 LINE", +"196 573 LINE", +"355 741 LINE", +"330 770 LINE" ); -}, +} +); +}; +layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; +paths = ( { closed = 1; nodes = ( -"162 600 OFFCURVE", -"193 633 OFFCURVE", -"193 675 CURVE SMOOTH", -"193 716 OFFCURVE", -"165 751 OFFCURVE", -"127 751 CURVE SMOOTH", -"91 751 OFFCURVE", -"60 716 OFFCURVE", -"60 675 CURVE SMOOTH", -"60 633 OFFCURVE", -"90 600 OFFCURVE", -"126 600 CURVE SMOOTH" +"202 557 LINE", +"365 729 LINE", +"323 777 LINE", +"202 672 LINE", +"201 672 LINE", +"72 777 LINE", +"29 726 LINE", +"191 557 LINE" ); } ); -width = 427; +width = 424; } ); -unicode = 00A8; +unicode = 02C7; }, { -glyphname = dotaccent; +glyphname = breve; layers = ( { anchors = ( { name = _top; -position = "{99, 500}"; +position = "{182, 500}"; } ); layerId = UUID0; @@ -68962,71 +69220,67 @@ paths = ( { closed = 1; nodes = ( -"127.76 609.28 OFFCURVE", -"153.52 635.04 OFFCURVE", -"153.52 668.16 CURVE SMOOTH", -"153.52 701.28 OFFCURVE", -"130.52 727.96 OFFCURVE", -"100.16 727.96 CURVE SMOOTH", -"71.64 727.96 OFFCURVE", -"45.88 701.28 OFFCURVE", -"45.88 668.16 CURVE SMOOTH", -"45.88 635.04 OFFCURVE", -"70.72 609.28 OFFCURVE", -"99.24 609.28 CURVE SMOOTH" +"242 604 OFFCURVE", +"289 645 OFFCURVE", +"318 725 CURVE", +"291 737 LINE", +"272 700 OFFCURVE", +"229 665 OFFCURVE", +"183 665 CURVE SMOOTH", +"137 665 OFFCURVE", +"94 698 OFFCURVE", +"74 735 CURVE", +"45 720 LINE", +"70 641 OFFCURVE", +"128 604 OFFCURVE", +"180 604 CURVE SMOOTH" ); } ); -width = 198; +width = 363; }, { anchors = ( { name = _top; -position = "{120, 500}"; -} -); -background = { -components = ( -{ -name = period; -transform = "{0.92, 0, 0, 0.92, -27, 1278}"; +position = "{202, 500}"; } ); -}; layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; paths = ( { closed = 1; nodes = ( -"167.05 589.2 OFFCURVE", -"196.45 625.95 OFFCURVE", -"196.45 671.1 CURVE SMOOTH", -"196.45 716.25 OFFCURVE", -"163.9 753 OFFCURVE", -"120.85 753 CURVE SMOOTH", -"79.9 753 OFFCURVE", -"44.2 716.25 OFFCURVE", -"44.2 671.1 CURVE SMOOTH", -"44.2 625.95 OFFCURVE", -"75.7 589.2 OFFCURVE", -"121.9 589.2 CURVE SMOOTH" +"268 600 OFFCURVE", +"325 638 OFFCURVE", +"360 735 CURVE", +"295 764 LINE", +"276 727 OFFCURVE", +"250 692 OFFCURVE", +"204 692 CURVE SMOOTH", +"157 692 OFFCURVE", +"130 726 OFFCURVE", +"109 763 CURVE", +"44 730 LINE", +"75 634 OFFCURVE", +"144 600 OFFCURVE", +"200 600 CURVE SMOOTH" ); } ); -width = 240; +width = 404; } ); -unicode = 02D9; +unicode = 02D8; }, { -glyphname = grave; +glyphname = ring; layers = ( { anchors = ( { name = _top; -position = "{126, 500}"; +position = "{159, 500}"; } ); layerId = UUID0; @@ -69034,25 +69288,45 @@ paths = ( { closed = 1; nodes = ( -"207 603 LINE", -"123 738 LINE SMOOTH", -"93 781 OFFCURVE", -"63 761 OFFCURVE", -"58 757 CURVE SMOOTH", -"50 750 OFFCURVE", -"31 724 OFFCURVE", -"67 686 CURVE SMOOTH", -"179 580 LINE" +"208 570 OFFCURVE", +"259 609 OFFCURVE", +"257 671 CURVE SMOOTH", +"255 733 OFFCURVE", +"205 761 OFFCURVE", +"158 761 CURVE SMOOTH", +"109 761 OFFCURVE", +"59 720 OFFCURVE", +"61 661 CURVE SMOOTH", +"63 598 OFFCURVE", +"112 570 OFFCURVE", +"160 570 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"132 600 OFFCURVE", +"114 631 OFFCURVE", +"114 670 CURVE SMOOTH", +"114 705 OFFCURVE", +"132 729 OFFCURVE", +"158 730 CURVE SMOOTH", +"187 731 OFFCURVE", +"204 702 OFFCURVE", +"204 660 CURVE SMOOTH", +"204 625 OFFCURVE", +"187 602 OFFCURVE", +"163 601 CURVE SMOOTH" ); } ); -width = 252; +width = 318; }, { anchors = ( { name = _top; -position = "{141, 500}"; +position = "{179, 500}"; } ); layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; @@ -69060,31 +69334,51 @@ paths = ( { closed = 1; nodes = ( -"238 606 LINE", -"156 746 LINE SMOOTH", -"135 779 OFFCURVE", -"94 795 OFFCURVE", -"63 770 CURVE SMOOTH", -"31 741 OFFCURVE", -"44 696 OFFCURVE", -"71 671 CURVE SMOOTH", -"192 565 LINE" +"238 563 OFFCURVE", +"299 610 OFFCURVE", +"297 685 CURVE SMOOTH", +"295 760 OFFCURVE", +"235 795 OFFCURVE", +"179 795 CURVE SMOOTH", +"116 795 OFFCURVE", +"59 743 OFFCURVE", +"61 674 CURVE SMOOTH", +"64 603 OFFCURVE", +"125 563 OFFCURVE", +"180 563 CURVE SMOOTH" +); +}, +{ +closed = 1; +nodes = ( +"161 624 OFFCURVE", +"144 645 OFFCURVE", +"144 687 CURVE SMOOTH", +"144 720 OFFCURVE", +"161 734 OFFCURVE", +"178 735 CURVE SMOOTH", +"200 735 OFFCURVE", +"218 717 OFFCURVE", +"218 672 CURVE SMOOTH", +"218 641 OFFCURVE", +"202 625 OFFCURVE", +"185 624 CURVE SMOOTH" ); } ); -width = 282; +width = 358; } ); -unicode = 0060; +unicode = 02DA; }, { -glyphname = hungarumlaut; +glyphname = tilde; layers = ( { anchors = ( { name = _top; -position = "{181, 500}"; +position = "{203, 500}"; } ); layerId = UUID0; @@ -69092,108 +69386,70 @@ paths = ( { closed = 1; nodes = ( -"340 688 LINE SMOOTH", -"360 702 OFFCURVE", -"371 729 OFFCURVE", -"357 748 CURVE SMOOTH", -"343 768 OFFCURVE", -"314 765 OFFCURVE", -"296 746 CURVE SMOOTH", -"175 614 LINE", -"194 588 LINE" -); -}, -{ -closed = 1; -nodes = ( -"188 702 LINE SMOOTH", -"212 733 OFFCURVE", -"206 757 OFFCURVE", -"190 768 CURVE SMOOTH", -"171 781 OFFCURVE", -"145 778 OFFCURVE", -"128 741 CURVE SMOOTH", -"72 613 LINE", -"101 595 LINE" +"342 722 LINE", +"326 693 OFFCURVE", +"298 674 OFFCURVE", +"269 674 CURVE SMOOTH", +"225 674 OFFCURVE", +"200 729 OFFCURVE", +"137 727 CURVE SMOOTH", +"100 726 OFFCURVE", +"52 688 OFFCURVE", +"35 641 CURVE", +"65 624 LINE", +"84 654 OFFCURVE", +"114 666 OFFCURVE", +"138 666 CURVE SMOOTH", +"175 666 OFFCURVE", +"207 612 OFFCURVE", +"269 612 CURVE SMOOTH", +"304 612 OFFCURVE", +"349 641 OFFCURVE", +"371 707 CURVE" ); } ); -width = 389; +width = 406; }, { anchors = ( { name = _top; -position = "{197, 500}"; -} -); -background = { -paths = ( -{ -closed = 1; -nodes = ( -"101 595 LINE", -"72 613 LINE", -"128 741 LINE SMOOTH", -"145 778 OFFCURVE", -"171 781 OFFCURVE", -"190 768 CURVE SMOOTH", -"206 757 OFFCURVE", -"212 733 OFFCURVE", -"188 702 CURVE SMOOTH" -); -}, -{ -closed = 1; -nodes = ( -"194 588 LINE", -"175 614 LINE", -"296 746 LINE SMOOTH", -"314 765 OFFCURVE", -"343 768 OFFCURVE", -"357 748 CURVE SMOOTH", -"371 729 OFFCURVE", -"360 702 OFFCURVE", -"340 688 CURVE SMOOTH" -); +position = "{213, 500}"; } ); -}; layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; paths = ( { closed = 1; nodes = ( -"357 676 LINE SMOOTH", -"388 697 OFFCURVE", -"417 737 OFFCURVE", -"390 769 CURVE SMOOTH", -"366 796 OFFCURVE", -"321 781 OFFCURVE", -"288 743 CURVE SMOOTH", -"189 628 LINE", -"228 581 LINE" -); -}, -{ -closed = 1; -nodes = ( -"196 697 LINE SMOOTH", -"218 726 OFFCURVE", -"231 772 OFFCURVE", -"197 793 CURVE SMOOTH", -"166 812 OFFCURVE", -"129 783 OFFCURVE", -"110 743 CURVE SMOOTH", -"45 606 LINE", -"96 572 LINE" +"335 753 LINE", +"318 722 OFFCURVE", +"296 703 OFFCURVE", +"273 703 CURVE SMOOTH", +"225 703 OFFCURVE", +"213 741 OFFCURVE", +"151 741 CURVE SMOOTH", +"106 741 OFFCURVE", +"56 699 OFFCURVE", +"34 638 CURVE", +"90 605 LINE", +"110 637 OFFCURVE", +"136 646 OFFCURVE", +"152 646 CURVE SMOOTH", +"192 646 OFFCURVE", +"219 607 OFFCURVE", +"273 607 CURVE SMOOTH", +"313 607 OFFCURVE", +"364 641 OFFCURVE", +"392 724 CURVE" ); } ); -width = 428; +width = 426; } ); -unicode = 02DD; +unicode = 02DC; }, { glyphname = macron; @@ -69244,6 +69500,86 @@ width = 374; unicode = 00AF; }, { +glyphname = cedilla; +layers = ( +{ +anchors = ( +{ +name = _bottom; +position = "{146, 0}"; +} +); +layerId = UUID0; +paths = ( +{ +closed = 1; +nodes = ( +"119 -231 OFFCURVE", +"247 -204 OFFCURVE", +"247 -123 CURVE SMOOTH", +"247 -83 OFFCURVE", +"221 -57 OFFCURVE", +"180 -57 CURVE SMOOTH", +"157 -57 OFFCURVE", +"131 -63 OFFCURVE", +"112 -74 CURVE", +"139 8 LINE", +"83 8 LINE", +"54 -100 LINE", +"88 -116 LINE", +"116 -97 OFFCURVE", +"165 -91 OFFCURVE", +"165 -131 CURVE SMOOTH", +"165 -170 OFFCURVE", +"113 -195 OFFCURVE", +"45 -208 CURVE", +"51 -241 LINE" +); +} +); +width = 292; +}, +{ +anchors = ( +{ +name = _bottom; +position = "{119, 0}"; +} +); +layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; +paths = ( +{ +closed = 1; +nodes = ( +"130 -248 OFFCURVE", +"280 -216 OFFCURVE", +"280 -123 CURVE SMOOTH", +"280 -75 OFFCURVE", +"249 -54 OFFCURVE", +"207 -53 CURVE SMOOTH", +"189 -53 OFFCURVE", +"155 -60 OFFCURVE", +"139 -69 CURVE", +"167 10 LINE", +"91 10 LINE", +"60 -117 LINE", +"97 -133 LINE", +"117 -117 OFFCURVE", +"165 -109 OFFCURVE", +"165 -144 CURVE SMOOTH", +"165 -185 OFFCURVE", +"77 -201 OFFCURVE", +"45 -207 CURVE", +"53 -259 LINE" +); +} +); +width = 325; +} +); +unicode = 00B8; +}, +{ glyphname = ogonek; layers = ( { @@ -69353,184 +69689,6 @@ width = 328; unicode = 02DB; }, { -glyphname = ring; -layers = ( -{ -anchors = ( -{ -name = _top; -position = "{159, 500}"; -} -); -layerId = UUID0; -paths = ( -{ -closed = 1; -nodes = ( -"208 570 OFFCURVE", -"259 609 OFFCURVE", -"257 671 CURVE SMOOTH", -"255 733 OFFCURVE", -"205 761 OFFCURVE", -"158 761 CURVE SMOOTH", -"109 761 OFFCURVE", -"59 720 OFFCURVE", -"61 661 CURVE SMOOTH", -"63 598 OFFCURVE", -"112 570 OFFCURVE", -"160 570 CURVE SMOOTH" -); -}, -{ -closed = 1; -nodes = ( -"132 600 OFFCURVE", -"114 631 OFFCURVE", -"114 670 CURVE SMOOTH", -"114 705 OFFCURVE", -"132 729 OFFCURVE", -"158 730 CURVE SMOOTH", -"187 731 OFFCURVE", -"204 702 OFFCURVE", -"204 660 CURVE SMOOTH", -"204 625 OFFCURVE", -"187 602 OFFCURVE", -"163 601 CURVE SMOOTH" -); -} -); -width = 318; -}, -{ -anchors = ( -{ -name = _top; -position = "{179, 500}"; -} -); -layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; -paths = ( -{ -closed = 1; -nodes = ( -"238 563 OFFCURVE", -"299 610 OFFCURVE", -"297 685 CURVE SMOOTH", -"295 760 OFFCURVE", -"235 795 OFFCURVE", -"179 795 CURVE SMOOTH", -"116 795 OFFCURVE", -"59 743 OFFCURVE", -"61 674 CURVE SMOOTH", -"64 603 OFFCURVE", -"125 563 OFFCURVE", -"180 563 CURVE SMOOTH" -); -}, -{ -closed = 1; -nodes = ( -"161 624 OFFCURVE", -"144 645 OFFCURVE", -"144 687 CURVE SMOOTH", -"144 720 OFFCURVE", -"161 734 OFFCURVE", -"178 735 CURVE SMOOTH", -"200 735 OFFCURVE", -"218 717 OFFCURVE", -"218 672 CURVE SMOOTH", -"218 641 OFFCURVE", -"202 625 OFFCURVE", -"185 624 CURVE SMOOTH" -); -} -); -width = 358; -} -); -unicode = 02DA; -}, -{ -glyphname = tilde; -layers = ( -{ -anchors = ( -{ -name = _top; -position = "{203, 500}"; -} -); -layerId = UUID0; -paths = ( -{ -closed = 1; -nodes = ( -"342 722 LINE", -"326 693 OFFCURVE", -"298 674 OFFCURVE", -"269 674 CURVE SMOOTH", -"225 674 OFFCURVE", -"200 729 OFFCURVE", -"137 727 CURVE SMOOTH", -"100 726 OFFCURVE", -"52 688 OFFCURVE", -"35 641 CURVE", -"65 624 LINE", -"84 654 OFFCURVE", -"114 666 OFFCURVE", -"138 666 CURVE SMOOTH", -"175 666 OFFCURVE", -"207 612 OFFCURVE", -"269 612 CURVE SMOOTH", -"304 612 OFFCURVE", -"349 641 OFFCURVE", -"371 707 CURVE" -); -} -); -width = 406; -}, -{ -anchors = ( -{ -name = _top; -position = "{213, 500}"; -} -); -layerId = "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9"; -paths = ( -{ -closed = 1; -nodes = ( -"335 753 LINE", -"318 722 OFFCURVE", -"296 703 OFFCURVE", -"273 703 CURVE SMOOTH", -"225 703 OFFCURVE", -"213 741 OFFCURVE", -"151 741 CURVE SMOOTH", -"106 741 OFFCURVE", -"56 699 OFFCURVE", -"34 638 CURVE", -"90 605 LINE", -"110 637 OFFCURVE", -"136 646 OFFCURVE", -"152 646 CURVE SMOOTH", -"192 646 OFFCURVE", -"219 607 OFFCURVE", -"273 607 CURVE SMOOTH", -"313 607 OFFCURVE", -"364 641 OFFCURVE", -"392 724 CURVE" -); -} -); -width = 426; -} -); -unicode = 02DC; -}, -{ glyphname = dieresiscomb.case; layers = ( { @@ -74215,11 +74373,21 @@ name = Medium; weightClass = Medium; }, { +interpolationWeight = 600; +instanceInterpolations = { +"4C2B4986-1645-43C1-94B7-5E4C57EFF0D9" = 0.66667; +UUID0 = 0.33333; +}; +name = SemiBold; +weightClass = SemiBold; +}, +{ interpolationWeight = 700; instanceInterpolations = { "4C2B4986-1645-43C1-94B7-5E4C57EFF0D9" = 1; }; isBold = 1; +linkStyle = Regular; name = Bold; weightClass = Bold; } @@ -78035,6 +78203,6 @@ tH = "40"; }; }; }; -versionMajor = 2; -versionMinor = 211; +versionMajor = 3; +versionMinor = 1; } diff --git a/sources/Lora-Bold.ufo/features.fea b/sources/archive/Lora-Bold.ufo/features.fea similarity index 100% rename from sources/Lora-Bold.ufo/features.fea rename to sources/archive/Lora-Bold.ufo/features.fea diff --git a/sources/Lora-Bold.ufo/fontinfo.plist b/sources/archive/Lora-Bold.ufo/fontinfo.plist similarity index 100% rename from sources/Lora-Bold.ufo/fontinfo.plist rename to sources/archive/Lora-Bold.ufo/fontinfo.plist diff --git a/sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/contents.plist b/sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/contents.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/contents.plist rename to sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/contents.plist diff --git a/sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/layerinfo.plist b/sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/layerinfo.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/layerinfo.plist rename to sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/layerinfo.plist diff --git a/sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/zhedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/zhedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/zhedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32.background/zhedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/contents.plist b/sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/contents.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/contents.plist rename to sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/contents.plist diff --git a/sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/layerinfo.plist b/sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/layerinfo.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/layerinfo.plist rename to sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/layerinfo.plist diff --git a/sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/zhedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/zhedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/zhedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.D_ec 19 17, 23_32/zhedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.old.background/contents.plist b/sources/archive/Lora-Bold.ufo/glyphs.old.background/contents.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.old.background/contents.plist rename to sources/archive/Lora-Bold.ufo/glyphs.old.background/contents.plist diff --git a/sources/Lora-Bold.ufo/glyphs.old.background/dzeabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.old.background/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.old.background/dzeabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.old.background/dzeabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.old.background/layerinfo.plist b/sources/archive/Lora-Bold.ufo/glyphs.old.background/layerinfo.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.old.background/layerinfo.plist rename to sources/archive/Lora-Bold.ufo/glyphs.old.background/layerinfo.plist diff --git a/sources/Lora-Bold.ufo/glyphs.old/D_zeabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.old/D_zeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.old/D_zeabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.old/D_zeabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.old/contents.plist b/sources/archive/Lora-Bold.ufo/glyphs.old/contents.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.old/contents.plist rename to sources/archive/Lora-Bold.ufo/glyphs.old/contents.plist diff --git a/sources/Lora-Bold.ufo/glyphs.old/dzeabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.old/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.old/dzeabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.old/dzeabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.old/layerinfo.plist b/sources/archive/Lora-Bold.ufo/glyphs.old/layerinfo.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.old/layerinfo.plist rename to sources/archive/Lora-Bold.ufo/glyphs.old/layerinfo.plist diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/C_cedilla.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/C_cedilla.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/C_cedilla.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/C_cedilla.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/C_he-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/C_he-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/C_he-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/C_he-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/C_heabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/C_heabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/C_heabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/C_heabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/C_heverticalstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/C_heverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/C_heverticalstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/C_heverticalstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/D_croat.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/D_croat.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/D_croat.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/D_croat.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.600.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.600.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.600.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.600.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/D_je-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/D_je-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/D_je-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/D_je-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/E_ndescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/E_ndescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/E_ndescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/E_ndescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/E_ng.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/E_ng.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/E_ng.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/E_ng.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/E_nghe-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/E_nghe-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/E_nghe-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/E_nghe-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/E_reversed-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/E_reversed-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/E_reversed-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/E_reversed-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/E_th.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/E_th.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/E_th.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/E_th.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/E_zh.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/E_zh.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/E_zh.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/E_zh.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/G_estrokehook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/G_estrokehook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/G_estrokehook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/G_estrokehook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/H_aabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/H_aabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/H_aabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/H_aabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/I_a-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/I_a-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/I_a-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/I_a-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/I_zhitsa-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/I_zhitsa-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/I_zhitsa-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/I_zhitsa-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/K_ahook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/K_ahook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/K_ahook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/K_ahook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/K_averticalstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/K_averticalstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/K_averticalstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/K_averticalstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/L_je-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/L_je-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/L_je-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/L_je-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/L_slash.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/L_slash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/L_slash.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/L_slash.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/O_slash.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/O_slash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/O_slash.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/O_slash.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/U_-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/U_-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/U_-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/U_-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/U_straight-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/U_straight-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/U_straight-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/U_straight-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/Y_eru-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/Y_eru-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/Y_eru-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/Y_eru-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/Z_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/Z_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/Z_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/Z_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/Z_edescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/Z_edescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/Z_edescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/Z_edescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/Z_hedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/Z_hedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/Z_hedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/Z_hedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/__descender-cy.case.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/__descender-cy.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/__descender-cy.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/__descender-cy.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/aacute.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/aacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/aacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/aacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/approxequal.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/approxequal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/approxequal.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/approxequal.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/brevecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/brevecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/brevecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/brevecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/caron.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/caroncomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/caroncomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/caroncomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/caroncomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/caroncomb.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/caroncomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/caroncomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/caroncomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/ccedilla.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/ccedilla.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/ccedilla.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/ccedilla.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/che-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/che-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/che-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/che-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/cheabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/cheabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/cheabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/cheabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/chekhakassian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/chekhakassian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/chekhakassian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/chekhakassian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/cheverticalstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/cheverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/cheverticalstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/cheverticalstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/circumflexcomb.case.i.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/circumflexcomb.case.i.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/circumflexcomb.case.i.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/circumflexcomb.case.i.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/circumflexcomb.i.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/circumflexcomb.i.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/circumflexcomb.i.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/circumflexcomb.i.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/commercialM_inusS_ign.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/commercialM_inusS_ign.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/commercialM_inusS_ign.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/commercialM_inusS_ign.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/contents.plist b/sources/archive/Lora-Bold.ufo/glyphs.public.background/contents.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/contents.plist rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/contents.plist diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/dcroat.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/dcroat.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/dcroat.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/dcroat.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/de-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/de-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/de-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/de-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/divide.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/divide.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/divide.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/divide.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/dotaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/dotaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/dotaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/dotaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/dotaccentcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/dotaccentcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/dotaccentcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/dotaccentcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/dzeabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/dzeabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/dzeabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/eldescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/eldescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/eldescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/eldescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/emdash.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/emdash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/emdash.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/emdash.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/eng.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/eng.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/eng.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/eng.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/equal.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/equal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/equal.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/equal.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/ereversed-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/ereversed-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/ereversed-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/ereversed-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/euro.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/euro.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/euro.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/euro.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/ezh.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/ezh.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/ezh.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/ezh.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/ge-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/ge-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/ge-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/ge-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/ge-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/ge-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/ge-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/ge-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/gestrokehook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/gestrokehook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/gestrokehook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/gestrokehook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/gravecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/gravecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/gravecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/gravecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/greaterequal.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/greaterequal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/greaterequal.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/greaterequal.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/haabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/haabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/haabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/haabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/hahook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/hahook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/hahook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/hahook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/hastroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/hastroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/hastroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/hastroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/hookabovecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/hookabovecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/hookabovecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/hookabovecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/hryvnia.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/hryvnia.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/hryvnia.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/hryvnia.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/hungarumlaut.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/hungarumlaut.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/hungarumlaut.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/hungarumlaut.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/hungarumlautcomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/hungarumlautcomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/hungarumlautcomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/hungarumlautcomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/hungarumlautcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/hungarumlautcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/hungarumlautcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/hungarumlautcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/icircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/icircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/icircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/icircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/iu-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/iu-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/iu-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/iu-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/izhitsa-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/izhitsa-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/izhitsa-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/izhitsa-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/j.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/j.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/j.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/j.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/kahook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/kahook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/kahook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/kahook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/kaverticalstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/kaverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/kaverticalstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/kaverticalstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/layerinfo.plist b/sources/archive/Lora-Bold.ufo/glyphs.public.background/layerinfo.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/layerinfo.plist rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/layerinfo.plist diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/lessequal.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/lessequal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/lessequal.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/lessequal.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/liraT_urkish.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/liraT_urkish.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/liraT_urkish.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/liraT_urkish.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/lslash.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/lslash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/lslash.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/lslash.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/micro.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/micro.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/micro.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/micro.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/minute.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/minute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/minute.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/minute.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/mu.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/mu.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/mu.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/mu.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/notequal.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/notequal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/notequal.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/notequal.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/oe.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/oe.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/oe.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/oe.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/oslash.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/oslash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/oslash.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/oslash.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/pedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/pedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/pedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/pedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/perthousand.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/perthousand.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/perthousand.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/perthousand.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/plus.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/plus.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/plus.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/plus.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/product.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/product.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/product.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/product.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/r.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/r.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/r.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/r.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/reversedze-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/reversedze-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/reversedze-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/reversedze-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/schwa-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/schwa-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/schwa-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/schwa-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/schwa.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/schwa.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/schwa.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/schwa.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/semisoftsign-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/semisoftsign-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/semisoftsign-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/semisoftsign-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/softsign-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/softsign-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/softsign-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/softsign-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/tail-cy.case.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/tail-cy.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/tail-cy.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/tail-cy.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/tail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/tail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/tail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/tail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/te-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/te-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/te-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/te-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/tshe-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/tshe-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/tshe-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/tshe-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/u.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/u.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/u.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/u.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/uni1C_81.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/uni1C_81.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/uni1C_81.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/uni1C_81.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/ustraightstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/ustraightstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/ustraightstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/ustraightstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/y.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/y.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/y.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/y.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/yusbig-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/yusbig-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/yusbig-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/yusbig-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/ze-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/ze-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/ze-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/ze-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/zhe-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/zhe-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/zhe-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/zhe-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs.public.background/zhedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs.public.background/zhedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs.public.background/zhedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs.public.background/zhedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_E_.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_E_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_E_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_breve-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_breve-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_breve-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_breve-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_breve.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_breve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_breve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_breveacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_breveacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_breveacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_brevedotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_brevedotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_brevegrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_brevegrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_brevegrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_brevehookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_brevehookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_brevetilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_brevetilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_brevetilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_circumflexacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_circumflexacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_circumflexdotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_circumflexgrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_circumflexgrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_circumflexhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_circumflexhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_circumflextilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_circumflextilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_dieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_dieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_dieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_dieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_dieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_dieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_dieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_dotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_dotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_dotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_grave.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_grave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_grave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_hookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_hookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_hookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_ie-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_ie-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_ie-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_ie-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_macron.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_macron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_macron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_ogonek.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_ogonek.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_ogonek.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_ring.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_ring.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_ring.glif diff --git a/sources/Lora-Bold.ufo/glyphs/A_tilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/A_tilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/A_tilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/B_.glif b/sources/archive/Lora-Bold.ufo/glyphs/B_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/B_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/B_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/B_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/B_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/B_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/B_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_cedilla.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_cedilla.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_cedilla.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_dotaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_dotaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_dotaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_he-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_he-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_he-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_he-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_heabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_heabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_heabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_heabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_hedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_hedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_hedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_hedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_hedescenderabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_hedescenderabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_hedescenderabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_hedescenderabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_hedieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_hedieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_hedieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_hedieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_hekhakassian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_hekhakassian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_hekhakassian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_hekhakassian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/C_heverticalstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/C_heverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/C_heverticalstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/C_heverticalstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_croat.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_croat.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_croat.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_e-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_e-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_e-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_e-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_elta.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_elta.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_elta.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_elta.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.600.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.600.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.600.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.600.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_je-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_je-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_je-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_je-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_ze-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_ze-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_ze-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_ze-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_zeabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_zeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_zeabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_zeabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/D_zhe-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/D_zhe-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/D_zhe-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/D_zhe-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_breve.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_breve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_breve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_circumflexacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_circumflexacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_circumflexdotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_circumflexgrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_circumflexgrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_circumflexhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_circumflexhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_circumflextilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_circumflextilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_dieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_dieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_dieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_dieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_dieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_dieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_dieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_dotaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_dotaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_dotaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_dotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_dotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_dotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_f-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_f-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_f-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_f-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_f-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_f-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_f-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_f-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_grave.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_grave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_grave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_hookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_hookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_hookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_l-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_l-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_l-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_l-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_l-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_l-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_l-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_l-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_ldescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_ldescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_ldescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_ldescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_lhook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_lhook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_lhook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_lhook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_ltail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_ltail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_ltail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_ltail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_m-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_m-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_m-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_m-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_macron.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_macron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_macron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_mtail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_mtail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_mtail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_mtail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_n-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_n-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_n-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_n-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_nL_eftH_ook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_nL_eftH_ook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_nL_eftH_ook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_nL_eftH_ook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_ndescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_ndescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_ndescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_ndescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_ng.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_ng.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_ng.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_nghe-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_nghe-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_nghe-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_nghe-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_nhook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_nhook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_nhook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_nhook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_ntail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_ntail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_ntail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_ntail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_ogonek.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_ogonek.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_ogonek.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_r-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_r-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_r-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_r-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_reversed-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_reversed-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_reversed-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_reversed-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_rtick-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_rtick-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_rtick-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_rtick-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_s-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_s-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_s-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_s-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_sdescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_sdescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_sdescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_sdescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_th.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_th.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_th.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_th.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_tilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_tilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_tilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_zh.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_zh.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_zh.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_zh.glif diff --git a/sources/Lora-Bold.ufo/glyphs/E_zhcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/E_zhcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/E_zhcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/E_zhcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/F_.glif b/sources/archive/Lora-Bold.ufo/glyphs/F_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/F_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/F_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/F_ita-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/F_ita-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/F_ita-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/F_ita-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_amma.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_amma.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_amma.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_amma.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_breve.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_breve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_breve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_commaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_commaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_commaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_edescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_edescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_edescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_edescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_ermandbls.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_ermandbls.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_ermandbls.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_ermandbls.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_estrokehook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_estrokehook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_estrokehook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_estrokehook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_hemiddlehook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_hemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_hemiddlehook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_hemiddlehook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_hestroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_hestroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_hestroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_hestroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_heupturn-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_heupturn-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_heupturn-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_heupturn-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_je-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_je-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_je-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_je-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/G_stroke.glif b/sources/archive/Lora-Bold.ufo/glyphs/G_stroke.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/G_stroke.glif rename to sources/archive/Lora-Bold.ufo/glyphs/G_stroke.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_a-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_a-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_a-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_a-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_aabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_aabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_aabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_aabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_adescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_adescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_adescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_adescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_ahook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_ahook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_ahook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_ahook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_ardsign-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_ardsign-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_ardsign-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_ardsign-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_astroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_astroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_astroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_astroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_bar.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_bar.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_bar.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/H_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/H_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/H_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_a-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_a-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_a-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_a-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_breve.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_breve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_breve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_dieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_dieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_dieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_dieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_dieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_dieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_dieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_dotaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_dotaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_dotaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_dotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_dotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_dotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_ebreve-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_ebreve-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_ebreve-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_ebreve-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_egrave-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_egrave-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_egrave-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_egrave-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_grave.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_grave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_grave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_hookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_hookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_hookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_i-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_i-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_i-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_i-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_igrave-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_igrave-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_igrave-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_igrave-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_ishort-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_ishort-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_ishort-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_ishort-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_ishorttail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_ishorttail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_ishorttail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_ishorttail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_macron-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_macron-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_macron-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_macron-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_macron.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_macron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_macron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_o-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_o-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_o-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_o-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_ogonek.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_ogonek.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_ogonek.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_tilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_tilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_tilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_u-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_u-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_u-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_u-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/I_zhitsa-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/I_zhitsa-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/I_zhitsa-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/I_zhitsa-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/J_.glif b/sources/archive/Lora-Bold.ufo/glyphs/J_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/J_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/J_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/J_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/J_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/J_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/J_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/J_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/J_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/J_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_a-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_a-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_a-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_a-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_abashkir-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_abashkir-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_abashkir-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_abashkir-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_adescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_adescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_adescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_adescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_ahook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_ahook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_ahook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_ahook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_astroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_astroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_astroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_astroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_averticalstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_averticalstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_averticalstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_averticalstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_commaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_commaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_commaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/K_je-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/K_je-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/K_je-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/K_je-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/L_.glif b/sources/archive/Lora-Bold.ufo/glyphs/L_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/L_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/L_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/L_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/L_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/L_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/L_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/L_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/L_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/L_commaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/L_commaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/L_commaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/L_dot.glif b/sources/archive/Lora-Bold.ufo/glyphs/L_dot.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/L_dot.glif rename to sources/archive/Lora-Bold.ufo/glyphs/L_dot.glif diff --git a/sources/Lora-Bold.ufo/glyphs/L_je-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/L_je-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/L_je-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/L_je-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/L_slash.glif b/sources/archive/Lora-Bold.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/L_slash.glif rename to sources/archive/Lora-Bold.ufo/glyphs/L_slash.glif diff --git a/sources/Lora-Bold.ufo/glyphs/M_.glif b/sources/archive/Lora-Bold.ufo/glyphs/M_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/M_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/M_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/N_.glif b/sources/archive/Lora-Bold.ufo/glyphs/N_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/N_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/N_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/N_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/N_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/N_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/N_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/N_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/N_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/N_commaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/N_commaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/N_commaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/N_je-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/N_je-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/N_je-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/N_je-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/N_tilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/N_tilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/N_tilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_E_.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_E_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_E_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_E_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_barred-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_barred-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_barred-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_barred-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_barreddieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_barreddieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_barreddieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_barreddieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_breve.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_breve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_breve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_breve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_circumflexacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_circumflexacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_circumflexacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_circumflexacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_circumflexdotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_circumflexdotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_circumflexdotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_circumflexgrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_circumflexgrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_circumflexgrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_circumflexgrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_circumflexhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_circumflexhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_circumflexhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_circumflexhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_circumflextilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_circumflextilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_circumflextilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_circumflextilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_dieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_dieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_dieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_dieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_dieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_dieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_dieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_dieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_dotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_dotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_dotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_dotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_grave.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_grave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_grave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_hm.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_hm.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_hm.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_hm.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_hookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_hookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_hookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_hookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_horn.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_horn.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_horn.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_horn.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_hornacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_hornacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_hornacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_hornacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_horndotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_horndotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_horndotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_horndotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_horngrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_horngrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_horngrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_horngrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_hornhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_hornhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_hornhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_hornhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_horntilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_horntilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_horntilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_horntilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_hungarumlaut.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_hungarumlaut.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_macron.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_macron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_macron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_macron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_mega.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_mega.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_mega.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_mega.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_slash.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_slash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_slash.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_slash.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_slashacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_slashacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_slashacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_slashacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/O_tilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/O_tilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/O_tilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/O_tilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/P_.glif b/sources/archive/Lora-Bold.ufo/glyphs/P_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/P_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/P_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/P_alochka-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/P_alochka-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/P_alochka-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/P_alochka-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/P_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/P_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/P_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/P_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/P_edescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/P_edescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/P_edescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/P_edescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/P_emiddlehook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/P_emiddlehook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/P_emiddlehook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/P_emiddlehook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/P_i.glif b/sources/archive/Lora-Bold.ufo/glyphs/P_i.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/P_i.glif rename to sources/archive/Lora-Bold.ufo/glyphs/P_i.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Q_.glif b/sources/archive/Lora-Bold.ufo/glyphs/Q_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Q_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Q_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Q_a-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Q_a-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Q_a-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Q_a-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/R_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/R_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/R_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/R_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/R_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/R_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/R_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/R_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/R_commaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/R_commaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/R_commaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/R_commaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/R_eversedze-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/R_eversedze-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/R_eversedze-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/R_eversedze-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_cedilla.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_cedilla.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_cedilla.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_cedilla.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_chwa-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_chwa-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_chwa-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_chwa-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_chwa.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_chwa.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_chwa.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_chwa.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_chwadieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_chwadieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_chwadieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_chwadieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_commaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_commaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_commaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_commaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_emisoftsign-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_emisoftsign-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_emisoftsign-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_emisoftsign-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_ha-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_ha-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_ha-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_ha-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_hcha-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_hcha-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_hcha-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_hcha-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_hha-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_hha-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_hha-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_hha-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_hhadescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_hhadescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_hhadescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_hhadescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/S_oftsign-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/S_oftsign-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/S_oftsign-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/S_oftsign-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_bar.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_bar.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_bar.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_cedilla.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_cedilla.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_cedilla.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_cedilla.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_commaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_commaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_commaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_commaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_edescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_edescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_edescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_edescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_etse-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_etse-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_etse-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_etse-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_horn.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_horn.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_horn.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_horn.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_se-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_se-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_se-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_se-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/T_she-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/T_she-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/T_she-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/T_she-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_breve.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_breve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_breve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_breve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_dieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_dieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_dieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_dieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_dieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_dieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_dieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_dieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_dotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_dotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_dotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_dotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_grave.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_grave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_grave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_grave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_hookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_hookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_hookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_hookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_horn.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_horn.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_horn.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_horn.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_hornacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_hornacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_hornacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_hornacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_horndotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_horndotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_horndotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_horndotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_horngrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_horngrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_horngrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_horngrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_hornhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_hornhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_hornhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_hornhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_horntilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_horntilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_horntilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_horntilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_hungarumlaut-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_hungarumlaut-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_hungarumlaut-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_hungarumlaut-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_hungarumlaut.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_hungarumlaut.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_hungarumlaut.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_hungarumlaut.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_macron-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_macron-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_macron-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_macron-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_macron.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_macron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_macron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_macron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_ogonek.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_ogonek.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_ogonek.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_ogonek.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_ring.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_ring.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_ring.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_ring.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_short-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_short-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_short-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_short-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_straight-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_straight-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_straight-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_straight-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_straightstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_straightstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_straightstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_straightstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/U_tilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/U_tilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/U_tilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/U_tilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/V_.glif b/sources/archive/Lora-Bold.ufo/glyphs/V_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/V_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/V_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/V_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/V_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/V_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/V_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/W_.glif b/sources/archive/Lora-Bold.ufo/glyphs/W_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/W_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/W_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/W_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/W_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/W_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/W_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/X_.glif b/sources/archive/Lora-Bold.ufo/glyphs/X_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/X_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/X_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_at-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_at-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_at-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_at-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_dieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_dieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_dieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_dieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_dotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_dotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_dotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_dotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_eru-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_eru-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_eru-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_eru-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_erudieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_erudieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_erudieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_erudieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_grave.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_grave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_grave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_grave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_hookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_hookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_hookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_hookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_i-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_i-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_i-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_i-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_tilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_tilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_tilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_tilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Y_usbig-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Y_usbig-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Y_usbig-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Y_usbig-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_dotaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_dotaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_dotaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_dotaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_edescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_edescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_edescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_edescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_edieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_edieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_edieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_edieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_he-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_he-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_he-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_he-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_hebreve-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_hebreve-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_hebreve-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_hebreve-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_hedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_hedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_hedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_hedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/Z_hedieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/Z_hedieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/Z_hedieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/Z_hedieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/__descender-cy.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/__descender-cy.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/__descender-cy.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/__descender-cy.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/__descender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/__descender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/__descender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/__descender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/__verticalbar-cy.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/__verticalbar-cy.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/__verticalbar-cy.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/__verticalbar-cy.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/__verticalbar-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/__verticalbar-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/__verticalbar-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/__verticalbar-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/_notdef.glif b/sources/archive/Lora-Bold.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/_notdef.glif rename to sources/archive/Lora-Bold.ufo/glyphs/_notdef.glif diff --git a/sources/Lora-Bold.ufo/glyphs/a-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/a-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/a-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/a-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/a.glif b/sources/archive/Lora-Bold.ufo/glyphs/a.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/a.glif rename to sources/archive/Lora-Bold.ufo/glyphs/a.glif diff --git a/sources/Lora-Bold.ufo/glyphs/aacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/aacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/aacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/aacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/abreve-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/abreve-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/abreve-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/abreve-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/abreve.glif b/sources/archive/Lora-Bold.ufo/glyphs/abreve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/abreve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/abreve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/abreveacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/abreveacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/abreveacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/abreveacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/abrevedotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/abrevedotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/abrevedotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/abrevedotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/abrevegrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/abrevegrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/abrevegrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/abrevegrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/abrevehookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/abrevehookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/abrevehookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/abrevehookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/abrevetilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/abrevetilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/abrevetilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/abrevetilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/acaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/acircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acircumflexacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/acircumflexacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acircumflexacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acircumflexacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acircumflexdotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/acircumflexdotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acircumflexdotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acircumflexdotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acircumflexgrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/acircumflexgrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acircumflexgrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acircumflexgrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acircumflexhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/acircumflexhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acircumflexhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acircumflexhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acircumflextilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/acircumflextilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acircumflextilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acircumflextilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acute.glif b/sources/archive/Lora-Bold.ufo/glyphs/acute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acutecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/acutecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acutecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acutecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/acutecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/acutecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/acutecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/acutecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/adieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/adieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/adieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/adieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/adieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/adieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/adieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/adieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/adotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/adotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/adotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/adotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ae.glif b/sources/archive/Lora-Bold.ufo/glyphs/ae.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ae.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ae.glif diff --git a/sources/Lora-Bold.ufo/glyphs/agrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/agrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/agrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/agrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ahookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/ahookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ahookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ahookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/aie-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/aie-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/aie-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/aie-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/amacron.glif b/sources/archive/Lora-Bold.ufo/glyphs/amacron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/amacron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/amacron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ampersand.glif b/sources/archive/Lora-Bold.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ampersand.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ampersand.glif diff --git a/sources/Lora-Bold.ufo/glyphs/angstrom.glif b/sources/archive/Lora-Bold.ufo/glyphs/angstrom.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/angstrom.glif rename to sources/archive/Lora-Bold.ufo/glyphs/angstrom.glif diff --git a/sources/Lora-Bold.ufo/glyphs/aogonek.glif b/sources/archive/Lora-Bold.ufo/glyphs/aogonek.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/aogonek.glif rename to sources/archive/Lora-Bold.ufo/glyphs/aogonek.glif diff --git a/sources/Lora-Bold.ufo/glyphs/apostrophemod.glif b/sources/archive/Lora-Bold.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/apostrophemod.glif rename to sources/archive/Lora-Bold.ufo/glyphs/apostrophemod.glif diff --git a/sources/Lora-Bold.ufo/glyphs/approxequal.glif b/sources/archive/Lora-Bold.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/approxequal.glif rename to sources/archive/Lora-Bold.ufo/glyphs/approxequal.glif diff --git a/sources/Lora-Bold.ufo/glyphs/approxequal.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/approxequal.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/approxequal.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/approxequal.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/aring.glif b/sources/archive/Lora-Bold.ufo/glyphs/aring.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/aring.glif rename to sources/archive/Lora-Bold.ufo/glyphs/aring.glif diff --git a/sources/Lora-Bold.ufo/glyphs/asciicircum.glif b/sources/archive/Lora-Bold.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/asciicircum.glif rename to sources/archive/Lora-Bold.ufo/glyphs/asciicircum.glif diff --git a/sources/Lora-Bold.ufo/glyphs/asciitilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/asciitilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/asciitilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/asterisk.glif b/sources/archive/Lora-Bold.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/asterisk.glif rename to sources/archive/Lora-Bold.ufo/glyphs/asterisk.glif diff --git a/sources/Lora-Bold.ufo/glyphs/at.glif b/sources/archive/Lora-Bold.ufo/glyphs/at.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/at.glif rename to sources/archive/Lora-Bold.ufo/glyphs/at.glif diff --git a/sources/Lora-Bold.ufo/glyphs/atilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/atilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/atilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/atilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/b.glif b/sources/archive/Lora-Bold.ufo/glyphs/b.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/b.glif rename to sources/archive/Lora-Bold.ufo/glyphs/b.glif diff --git a/sources/Lora-Bold.ufo/glyphs/backslash.glif b/sources/archive/Lora-Bold.ufo/glyphs/backslash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/backslash.glif rename to sources/archive/Lora-Bold.ufo/glyphs/backslash.glif diff --git a/sources/Lora-Bold.ufo/glyphs/bar.glif b/sources/archive/Lora-Bold.ufo/glyphs/bar.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/bar.glif rename to sources/archive/Lora-Bold.ufo/glyphs/bar.glif diff --git a/sources/Lora-Bold.ufo/glyphs/be-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/be-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/be-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/be-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/be-cy.loclS_R_B_.glif b/sources/archive/Lora-Bold.ufo/glyphs/be-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/be-cy.loclS_R_B_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/be-cy.loclS_R_B_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/braceleft.glif b/sources/archive/Lora-Bold.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/braceleft.glif rename to sources/archive/Lora-Bold.ufo/glyphs/braceleft.glif diff --git a/sources/Lora-Bold.ufo/glyphs/braceright.glif b/sources/archive/Lora-Bold.ufo/glyphs/braceright.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/braceright.glif rename to sources/archive/Lora-Bold.ufo/glyphs/braceright.glif diff --git a/sources/Lora-Bold.ufo/glyphs/bracketleft.glif b/sources/archive/Lora-Bold.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/bracketleft.glif rename to sources/archive/Lora-Bold.ufo/glyphs/bracketleft.glif diff --git a/sources/Lora-Bold.ufo/glyphs/bracketright.glif b/sources/archive/Lora-Bold.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/bracketright.glif rename to sources/archive/Lora-Bold.ufo/glyphs/bracketright.glif diff --git a/sources/Lora-Bold.ufo/glyphs/breve.glif b/sources/archive/Lora-Bold.ufo/glyphs/breve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/breve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/breve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb-cy.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb-cy.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb-cy.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb-cy.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb_acutecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb_acutecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb_acutecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb_acutecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb_acutecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb_acutecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb_acutecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb_acutecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb_gravecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb_gravecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb_gravecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb_gravecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb_gravecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb_gravecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb_gravecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb_gravecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb_hookabovecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb_hookabovecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb_hookabovecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb_hookabovecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb_hookabovecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb_hookabovecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb_tildecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb_tildecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb_tildecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb_tildecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brevecomb_tildecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/brevecomb_tildecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brevecomb_tildecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brevecomb_tildecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/brokenbar.glif b/sources/archive/Lora-Bold.ufo/glyphs/brokenbar.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/brokenbar.glif rename to sources/archive/Lora-Bold.ufo/glyphs/brokenbar.glif diff --git a/sources/Lora-Bold.ufo/glyphs/bullet.glif b/sources/archive/Lora-Bold.ufo/glyphs/bullet.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/bullet.glif rename to sources/archive/Lora-Bold.ufo/glyphs/bullet.glif diff --git a/sources/Lora-Bold.ufo/glyphs/bulletoperator.glif b/sources/archive/Lora-Bold.ufo/glyphs/bulletoperator.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/bulletoperator.glif rename to sources/archive/Lora-Bold.ufo/glyphs/bulletoperator.glif diff --git a/sources/Lora-Bold.ufo/glyphs/c.glif b/sources/archive/Lora-Bold.ufo/glyphs/c.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/c.glif rename to sources/archive/Lora-Bold.ufo/glyphs/c.glif diff --git a/sources/Lora-Bold.ufo/glyphs/cacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/cacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/cacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/cacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/caron.glif b/sources/archive/Lora-Bold.ufo/glyphs/caron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/caron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/caron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/caroncomb.alt.glif b/sources/archive/Lora-Bold.ufo/glyphs/caroncomb.alt.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/caroncomb.alt.glif rename to sources/archive/Lora-Bold.ufo/glyphs/caroncomb.alt.glif diff --git a/sources/Lora-Bold.ufo/glyphs/caroncomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/caroncomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/caroncomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/caroncomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/caroncomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/caroncomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/caroncomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/caroncomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ccaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/ccaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ccaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ccaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ccedilla.glif b/sources/archive/Lora-Bold.ufo/glyphs/ccedilla.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ccedilla.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ccedilla.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ccircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/ccircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ccircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ccircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/cdotaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/cdotaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/cdotaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/cdotaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/cedilla.glif b/sources/archive/Lora-Bold.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/cedilla.glif rename to sources/archive/Lora-Bold.ufo/glyphs/cedilla.glif diff --git a/sources/Lora-Bold.ufo/glyphs/cedillacomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/cedillacomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/cedillacomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/cedillacomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/cedillacomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/cedillacomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/cedillacomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/cedillacomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/cent.glif b/sources/archive/Lora-Bold.ufo/glyphs/cent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/cent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/cent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/cent.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/cent.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/cent.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/cent.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/che-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/che-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/che-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/che-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/che-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/che-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/che-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/che-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/cheabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/cheabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/cheabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/cheabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/chedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/chedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/chedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/chedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/chedescenderabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/chedescenderabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/chedescenderabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/chedescenderabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/chedieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/chedieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/chedieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/chedieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/chekhakassian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/chekhakassian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/chekhakassian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/chekhakassian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/cheverticalstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/cheverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/cheverticalstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/cheverticalstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb.case.i.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb.case.i.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb.case.i.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb.case.i.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb.i.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb.i.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb.i.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb.i.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb_acutecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_acutecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb_acutecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_acutecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb_acutecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_acutecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb_acutecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_acutecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb_gravecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_gravecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb_gravecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_gravecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb_gravecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_gravecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb_gravecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_gravecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb_hookabovecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb_hookabovecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_hookabovecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb_tildecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_tildecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb_tildecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_tildecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/circumflexcomb_tildecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_tildecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/circumflexcomb_tildecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/circumflexcomb_tildecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/colon.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/colon.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/colon.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/colon.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/colon.glif b/sources/archive/Lora-Bold.ufo/glyphs/colon.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/colon.glif rename to sources/archive/Lora-Bold.ufo/glyphs/colon.glif diff --git a/sources/Lora-Bold.ufo/glyphs/colon.tf.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/colon.tf.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/colon.tf.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/colon.tf.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/colon.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/colon.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/colon.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/colon.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/comma.glif b/sources/archive/Lora-Bold.ufo/glyphs/comma.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/comma.glif rename to sources/archive/Lora-Bold.ufo/glyphs/comma.glif diff --git a/sources/Lora-Bold.ufo/glyphs/comma.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/comma.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/comma.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/comma.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/commaaccentcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/commaaccentcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/commaaccentcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/commaaccentcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/commaturnedmod.glif b/sources/archive/Lora-Bold.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/commaturnedmod.glif rename to sources/archive/Lora-Bold.ufo/glyphs/commaturnedmod.glif diff --git a/sources/Lora-Bold.ufo/glyphs/commercialM_inusS_ign.glif b/sources/archive/Lora-Bold.ufo/glyphs/commercialM_inusS_ign.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/commercialM_inusS_ign.glif rename to sources/archive/Lora-Bold.ufo/glyphs/commercialM_inusS_ign.glif diff --git a/sources/Lora-Bold.ufo/glyphs/contents.plist b/sources/archive/Lora-Bold.ufo/glyphs/contents.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/contents.plist rename to sources/archive/Lora-Bold.ufo/glyphs/contents.plist diff --git a/sources/Lora-Bold.ufo/glyphs/copyright.glif b/sources/archive/Lora-Bold.ufo/glyphs/copyright.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/copyright.glif rename to sources/archive/Lora-Bold.ufo/glyphs/copyright.glif diff --git a/sources/Lora-Bold.ufo/glyphs/currency.glif b/sources/archive/Lora-Bold.ufo/glyphs/currency.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/currency.glif rename to sources/archive/Lora-Bold.ufo/glyphs/currency.glif diff --git a/sources/Lora-Bold.ufo/glyphs/currency.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/currency.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/currency.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/currency.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/d.glif b/sources/archive/Lora-Bold.ufo/glyphs/d.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/d.glif rename to sources/archive/Lora-Bold.ufo/glyphs/d.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dagger.glif b/sources/archive/Lora-Bold.ufo/glyphs/dagger.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dagger.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dagger.glif diff --git a/sources/Lora-Bold.ufo/glyphs/daggerdbl.glif b/sources/archive/Lora-Bold.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/daggerdbl.glif rename to sources/archive/Lora-Bold.ufo/glyphs/daggerdbl.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/dcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dcroat.glif b/sources/archive/Lora-Bold.ufo/glyphs/dcroat.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dcroat.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dcroat.glif diff --git a/sources/Lora-Bold.ufo/glyphs/de-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/de-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/de-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/de-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/de-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/de-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/de-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/de-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/degree.glif b/sources/archive/Lora-Bold.ufo/glyphs/degree.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/degree.glif rename to sources/archive/Lora-Bold.ufo/glyphs/degree.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dieresiscomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/dieresiscomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dieresiscomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dieresiscomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dieresiscomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/dieresiscomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dieresiscomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dieresiscomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/divide.alt.glif b/sources/archive/Lora-Bold.ufo/glyphs/divide.alt.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/divide.alt.glif rename to sources/archive/Lora-Bold.ufo/glyphs/divide.alt.glif diff --git a/sources/Lora-Bold.ufo/glyphs/divide.glif b/sources/archive/Lora-Bold.ufo/glyphs/divide.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/divide.glif rename to sources/archive/Lora-Bold.ufo/glyphs/divide.glif diff --git a/sources/Lora-Bold.ufo/glyphs/divide.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/divide.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/divide.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/divide.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/divisionslash.glif b/sources/archive/Lora-Bold.ufo/glyphs/divisionslash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/divisionslash.glif rename to sources/archive/Lora-Bold.ufo/glyphs/divisionslash.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dje-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/dje-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dje-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dje-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dollar.glif b/sources/archive/Lora-Bold.ufo/glyphs/dollar.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dollar.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dollar.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dollar.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/dollar.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dollar.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dollar.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dotaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dotaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dotaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dotaccentcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/dotaccentcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dotaccentcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dotaccentcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dotbelowcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/dotbelowcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dotbelowcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dotbelowcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dze-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/dze-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dze-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dze-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dzeabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dzeabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dzeabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/dzhe-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/dzhe-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/dzhe-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/dzhe-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/e-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/e-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/e-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/e-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/e.glif b/sources/archive/Lora-Bold.ufo/glyphs/e.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/e.glif rename to sources/archive/Lora-Bold.ufo/glyphs/e.glif diff --git a/sources/Lora-Bold.ufo/glyphs/eacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/eacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/eacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/eacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ebreve.glif b/sources/archive/Lora-Bold.ufo/glyphs/ebreve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ebreve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ebreve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ecaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/ecaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ecaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ecaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ecircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/ecircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ecircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ecircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ecircumflexacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/ecircumflexacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ecircumflexacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ecircumflexacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ecircumflexdotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/ecircumflexdotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ecircumflexdotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ecircumflexdotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ecircumflexgrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/ecircumflexgrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ecircumflexgrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ecircumflexgrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ecircumflexhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/ecircumflexhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ecircumflexhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ecircumflexhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ecircumflextilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/ecircumflextilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ecircumflextilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ecircumflextilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/edieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/edieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/edieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/edieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/edieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/edieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/edieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/edieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/edotaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/edotaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/edotaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/edotaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/edotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/edotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/edotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/edotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ef-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ef-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ef-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ef-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/egrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/egrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/egrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/egrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ehookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/ehookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ehookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ehookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/eight.glif b/sources/archive/Lora-Bold.ufo/glyphs/eight.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/eight.glif rename to sources/archive/Lora-Bold.ufo/glyphs/eight.glif diff --git a/sources/Lora-Bold.ufo/glyphs/eight.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/eight.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/eight.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/eight.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/el-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/el-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/el-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/el-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/el-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/el-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/el-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/el-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/eldescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/eldescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/eldescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/eldescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/elhook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/elhook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/elhook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/elhook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ellipsis.glif b/sources/archive/Lora-Bold.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ellipsis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ellipsis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/eltail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/eltail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/eltail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/eltail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/em-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/em-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/em-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/em-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/emacron.glif b/sources/archive/Lora-Bold.ufo/glyphs/emacron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/emacron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/emacron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/emdash.glif b/sources/archive/Lora-Bold.ufo/glyphs/emdash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/emdash.glif rename to sources/archive/Lora-Bold.ufo/glyphs/emdash.glif diff --git a/sources/Lora-Bold.ufo/glyphs/emtail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/emtail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/emtail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/emtail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/en-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/en-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/en-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/en-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/en-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/en-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/en-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/en-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/endash.glif b/sources/archive/Lora-Bold.ufo/glyphs/endash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/endash.glif rename to sources/archive/Lora-Bold.ufo/glyphs/endash.glif diff --git a/sources/Lora-Bold.ufo/glyphs/endescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/endescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/endescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/endescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/eng.glif b/sources/archive/Lora-Bold.ufo/glyphs/eng.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/eng.glif rename to sources/archive/Lora-Bold.ufo/glyphs/eng.glif diff --git a/sources/Lora-Bold.ufo/glyphs/enghe-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/enghe-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/enghe-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/enghe-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/enhook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/enhook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/enhook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/enhook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/enlefthook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/enlefthook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/enlefthook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/enlefthook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/entail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/entail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/entail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/entail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/eogonek.glif b/sources/archive/Lora-Bold.ufo/glyphs/eogonek.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/eogonek.glif rename to sources/archive/Lora-Bold.ufo/glyphs/eogonek.glif diff --git a/sources/Lora-Bold.ufo/glyphs/equal.glif b/sources/archive/Lora-Bold.ufo/glyphs/equal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/equal.glif rename to sources/archive/Lora-Bold.ufo/glyphs/equal.glif diff --git a/sources/Lora-Bold.ufo/glyphs/equal.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/equal.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/equal.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/equal.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/er-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/er-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/er-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/er-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ereversed-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ereversed-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ereversed-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ereversed-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ertick-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ertick-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ertick-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ertick-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/es-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/es-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/es-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/es-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/esdescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/esdescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/esdescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/esdescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/esdescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Bold.ufo/glyphs/esdescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/esdescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/esdescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/esdescender-cy.loclC_H_U_.glif b/sources/archive/Lora-Bold.ufo/glyphs/esdescender-cy.loclC_H_U_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/esdescender-cy.loclC_H_U_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/esdescender-cy.loclC_H_U_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/estimated.glif b/sources/archive/Lora-Bold.ufo/glyphs/estimated.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/estimated.glif rename to sources/archive/Lora-Bold.ufo/glyphs/estimated.glif diff --git a/sources/Lora-Bold.ufo/glyphs/eth.glif b/sources/archive/Lora-Bold.ufo/glyphs/eth.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/eth.glif rename to sources/archive/Lora-Bold.ufo/glyphs/eth.glif diff --git a/sources/Lora-Bold.ufo/glyphs/etilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/etilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/etilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/etilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/euro.glif b/sources/archive/Lora-Bold.ufo/glyphs/euro.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/euro.glif rename to sources/archive/Lora-Bold.ufo/glyphs/euro.glif diff --git a/sources/Lora-Bold.ufo/glyphs/euro.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/euro.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/euro.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/euro.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/exclam.glif b/sources/archive/Lora-Bold.ufo/glyphs/exclam.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/exclam.glif rename to sources/archive/Lora-Bold.ufo/glyphs/exclam.glif diff --git a/sources/Lora-Bold.ufo/glyphs/exclamdown.glif b/sources/archive/Lora-Bold.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/exclamdown.glif rename to sources/archive/Lora-Bold.ufo/glyphs/exclamdown.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ezh.glif b/sources/archive/Lora-Bold.ufo/glyphs/ezh.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ezh.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ezh.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ezhcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/ezhcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ezhcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ezhcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/f.glif b/sources/archive/Lora-Bold.ufo/glyphs/f.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/f.glif rename to sources/archive/Lora-Bold.ufo/glyphs/f.glif diff --git a/sources/Lora-Bold.ufo/glyphs/fi.glif b/sources/archive/Lora-Bold.ufo/glyphs/fi.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/fi.glif rename to sources/archive/Lora-Bold.ufo/glyphs/fi.glif diff --git a/sources/Lora-Bold.ufo/glyphs/firsttonechinese.glif b/sources/archive/Lora-Bold.ufo/glyphs/firsttonechinese.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/firsttonechinese.glif rename to sources/archive/Lora-Bold.ufo/glyphs/firsttonechinese.glif diff --git a/sources/Lora-Bold.ufo/glyphs/fita-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/fita-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/fita-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/fita-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/five.glif b/sources/archive/Lora-Bold.ufo/glyphs/five.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/five.glif rename to sources/archive/Lora-Bold.ufo/glyphs/five.glif diff --git a/sources/Lora-Bold.ufo/glyphs/five.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/five.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/five.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/five.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/fl.glif b/sources/archive/Lora-Bold.ufo/glyphs/fl.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/fl.glif rename to sources/archive/Lora-Bold.ufo/glyphs/fl.glif diff --git a/sources/Lora-Bold.ufo/glyphs/florin.glif b/sources/archive/Lora-Bold.ufo/glyphs/florin.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/florin.glif rename to sources/archive/Lora-Bold.ufo/glyphs/florin.glif diff --git a/sources/Lora-Bold.ufo/glyphs/florin.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/florin.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/florin.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/florin.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/foundry.glif b/sources/archive/Lora-Bold.ufo/glyphs/foundry.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/foundry.glif rename to sources/archive/Lora-Bold.ufo/glyphs/foundry.glif diff --git a/sources/Lora-Bold.ufo/glyphs/four.glif b/sources/archive/Lora-Bold.ufo/glyphs/four.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/four.glif rename to sources/archive/Lora-Bold.ufo/glyphs/four.glif diff --git a/sources/Lora-Bold.ufo/glyphs/four.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/four.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/four.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/four.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/foursuperior.glif b/sources/archive/Lora-Bold.ufo/glyphs/foursuperior.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/foursuperior.glif rename to sources/archive/Lora-Bold.ufo/glyphs/foursuperior.glif diff --git a/sources/Lora-Bold.ufo/glyphs/fraction.glif b/sources/archive/Lora-Bold.ufo/glyphs/fraction.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/fraction.glif rename to sources/archive/Lora-Bold.ufo/glyphs/fraction.glif diff --git a/sources/Lora-Bold.ufo/glyphs/g.glif b/sources/archive/Lora-Bold.ufo/glyphs/g.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/g.glif rename to sources/archive/Lora-Bold.ufo/glyphs/g.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gbreve.glif b/sources/archive/Lora-Bold.ufo/glyphs/gbreve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gbreve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gbreve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/gcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gcircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/gcircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gcircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gcircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gcommaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/gcommaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gcommaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gcommaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ge-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ge-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ge-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ge-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ge-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/ge-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ge-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ge-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/gedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/germandbls.glif b/sources/archive/Lora-Bold.ufo/glyphs/germandbls.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/germandbls.glif rename to sources/archive/Lora-Bold.ufo/glyphs/germandbls.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gestrokehook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/gestrokehook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gestrokehook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gestrokehook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ghemiddlehook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ghemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ghemiddlehook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ghemiddlehook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ghestroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ghestroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ghestroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ghestroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-Bold.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gheupturn-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/gheupturn-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gheupturn-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gheupturn-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gje-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/gje-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gje-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gje-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/grave.glif b/sources/archive/Lora-Bold.ufo/glyphs/grave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/grave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/grave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gravecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/gravecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gravecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gravecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gravecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/gravecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gravecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gravecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/greater.glif b/sources/archive/Lora-Bold.ufo/glyphs/greater.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/greater.glif rename to sources/archive/Lora-Bold.ufo/glyphs/greater.glif diff --git a/sources/Lora-Bold.ufo/glyphs/greater.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/greater.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/greater.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/greater.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/greaterequal.glif b/sources/archive/Lora-Bold.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/greaterequal.glif rename to sources/archive/Lora-Bold.ufo/glyphs/greaterequal.glif diff --git a/sources/Lora-Bold.ufo/glyphs/greaterequal.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/greaterequal.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/greaterequal.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/greaterequal.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/gstroke.glif b/sources/archive/Lora-Bold.ufo/glyphs/gstroke.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/gstroke.glif rename to sources/archive/Lora-Bold.ufo/glyphs/gstroke.glif diff --git a/sources/Lora-Bold.ufo/glyphs/guillemetleft.glif b/sources/archive/Lora-Bold.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/guillemetleft.glif rename to sources/archive/Lora-Bold.ufo/glyphs/guillemetleft.glif diff --git a/sources/Lora-Bold.ufo/glyphs/guillemetright.glif b/sources/archive/Lora-Bold.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/guillemetright.glif rename to sources/archive/Lora-Bold.ufo/glyphs/guillemetright.glif diff --git a/sources/Lora-Bold.ufo/glyphs/guilsinglleft.glif b/sources/archive/Lora-Bold.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/guilsinglleft.glif rename to sources/archive/Lora-Bold.ufo/glyphs/guilsinglleft.glif diff --git a/sources/Lora-Bold.ufo/glyphs/guilsinglright.glif b/sources/archive/Lora-Bold.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/guilsinglright.glif rename to sources/archive/Lora-Bold.ufo/glyphs/guilsinglright.glif diff --git a/sources/Lora-Bold.ufo/glyphs/h.glif b/sources/archive/Lora-Bold.ufo/glyphs/h.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/h.glif rename to sources/archive/Lora-Bold.ufo/glyphs/h.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ha-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ha-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ha-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ha-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/haabkhasian-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/haabkhasian-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/haabkhasian-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/haabkhasian-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hadescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/hadescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hadescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hadescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hahook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/hahook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hahook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hahook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hardsign-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/hardsign-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hardsign-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hardsign-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hardsign-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/hardsign-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hardsign-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hardsign-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hastroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/hastroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hastroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hastroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hbar.glif b/sources/archive/Lora-Bold.ufo/glyphs/hbar.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hbar.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hbar.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/hcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hcircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/hcircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hcircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hcircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hookabovecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/hookabovecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hookabovecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hookabovecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/horncomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/horncomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/horncomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/horncomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hryvnia.glif b/sources/archive/Lora-Bold.ufo/glyphs/hryvnia.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hryvnia.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hryvnia.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hryvnia.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/hryvnia.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hryvnia.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hryvnia.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hungarumlaut.glif b/sources/archive/Lora-Bold.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hungarumlaut.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hungarumlaut.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hungarumlautcomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/hungarumlautcomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hungarumlautcomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hungarumlautcomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hungarumlautcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/hungarumlautcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hungarumlautcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hungarumlautcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hyphen.glif b/sources/archive/Lora-Bold.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hyphen.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hyphen.glif diff --git a/sources/Lora-Bold.ufo/glyphs/hyphentwo.glif b/sources/archive/Lora-Bold.ufo/glyphs/hyphentwo.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/hyphentwo.glif rename to sources/archive/Lora-Bold.ufo/glyphs/hyphentwo.glif diff --git a/sources/Lora-Bold.ufo/glyphs/i-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/i-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/i-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/i-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/i.glif b/sources/archive/Lora-Bold.ufo/glyphs/i.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/i.glif rename to sources/archive/Lora-Bold.ufo/glyphs/i.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ia-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ia-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ia-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ia-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/iacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ibreve.glif b/sources/archive/Lora-Bold.ufo/glyphs/ibreve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ibreve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ibreve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/icircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/icircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/icircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/icircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/idieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/idieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/idieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/idieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/idieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/idieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/idieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/idieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/idotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/idotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/idotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/idotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/idotless.glif b/sources/archive/Lora-Bold.ufo/glyphs/idotless.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/idotless.glif rename to sources/archive/Lora-Bold.ufo/glyphs/idotless.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ie-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ie-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ie-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ie-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iebreve-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/iebreve-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iebreve-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iebreve-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iegrave-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/iegrave-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iegrave-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iegrave-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/igrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/igrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/igrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/igrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ihookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/ihookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ihookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ihookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ii-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ii-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ii-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ii-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ii-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/ii-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ii-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ii-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iigrave-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/iigrave-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iigrave-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iigrave-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iigrave-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/iigrave-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iigrave-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iigrave-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iishort-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/iishort-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iishort-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iishort-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iishort-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/iishort-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iishort-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iishort-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iishorttail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/iishorttail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iishorttail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iishorttail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/imacron-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/imacron-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/imacron-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/imacron-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/imacron.glif b/sources/archive/Lora-Bold.ufo/glyphs/imacron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/imacron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/imacron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/increment.glif b/sources/archive/Lora-Bold.ufo/glyphs/increment.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/increment.glif rename to sources/archive/Lora-Bold.ufo/glyphs/increment.glif diff --git a/sources/Lora-Bold.ufo/glyphs/infinity.glif b/sources/archive/Lora-Bold.ufo/glyphs/infinity.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/infinity.glif rename to sources/archive/Lora-Bold.ufo/glyphs/infinity.glif diff --git a/sources/Lora-Bold.ufo/glyphs/integral.glif b/sources/archive/Lora-Bold.ufo/glyphs/integral.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/integral.glif rename to sources/archive/Lora-Bold.ufo/glyphs/integral.glif diff --git a/sources/Lora-Bold.ufo/glyphs/io-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/io-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/io-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/io-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iogonek.glif b/sources/archive/Lora-Bold.ufo/glyphs/iogonek.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iogonek.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iogonek.glif diff --git a/sources/Lora-Bold.ufo/glyphs/itilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/itilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/itilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/itilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iu-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/iu-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iu-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iu-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/iu-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/iu-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/iu-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/iu-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/izhitsa-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/izhitsa-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/izhitsa-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/izhitsa-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/j.glif b/sources/archive/Lora-Bold.ufo/glyphs/j.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/j.glif rename to sources/archive/Lora-Bold.ufo/glyphs/j.glif diff --git a/sources/Lora-Bold.ufo/glyphs/jcircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/jcircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/jcircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/jcircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/jdotless.glif b/sources/archive/Lora-Bold.ufo/glyphs/jdotless.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/jdotless.glif rename to sources/archive/Lora-Bold.ufo/glyphs/jdotless.glif diff --git a/sources/Lora-Bold.ufo/glyphs/je-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/je-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/je-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/je-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/k.glif b/sources/archive/Lora-Bold.ufo/glyphs/k.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/k.glif rename to sources/archive/Lora-Bold.ufo/glyphs/k.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ka-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ka-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ka-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ka-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ka-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/ka-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ka-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ka-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/kabashkir-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/kabashkir-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/kabashkir-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/kabashkir-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/kadescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/kadescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/kadescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/kadescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/kahook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/kahook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/kahook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/kahook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/kastroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/kastroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/kastroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/kastroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/kaverticalstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/kaverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/kaverticalstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/kaverticalstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/kcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/kcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/kcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/kcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/kcommaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/kcommaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/kcommaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/kcommaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/kelvin.glif b/sources/archive/Lora-Bold.ufo/glyphs/kelvin.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/kelvin.glif rename to sources/archive/Lora-Bold.ufo/glyphs/kelvin.glif diff --git a/sources/Lora-Bold.ufo/glyphs/kje-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/kje-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/kje-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/kje-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/l.glif b/sources/archive/Lora-Bold.ufo/glyphs/l.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/l.glif rename to sources/archive/Lora-Bold.ufo/glyphs/l.glif diff --git a/sources/Lora-Bold.ufo/glyphs/lacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/lacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/lacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/lacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/layerinfo.plist b/sources/archive/Lora-Bold.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/layerinfo.plist rename to sources/archive/Lora-Bold.ufo/glyphs/layerinfo.plist diff --git a/sources/Lora-Bold.ufo/glyphs/lcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/lcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/lcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/lcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/lcommaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/lcommaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/lcommaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/lcommaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ldot.glif b/sources/archive/Lora-Bold.ufo/glyphs/ldot.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ldot.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ldot.glif diff --git a/sources/Lora-Bold.ufo/glyphs/leftanglebracket-math.glif b/sources/archive/Lora-Bold.ufo/glyphs/leftanglebracket-math.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/leftanglebracket-math.glif rename to sources/archive/Lora-Bold.ufo/glyphs/leftanglebracket-math.glif diff --git a/sources/Lora-Bold.ufo/glyphs/less.glif b/sources/archive/Lora-Bold.ufo/glyphs/less.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/less.glif rename to sources/archive/Lora-Bold.ufo/glyphs/less.glif diff --git a/sources/Lora-Bold.ufo/glyphs/less.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/less.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/less.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/less.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/lessequal.glif b/sources/archive/Lora-Bold.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/lessequal.glif rename to sources/archive/Lora-Bold.ufo/glyphs/lessequal.glif diff --git a/sources/Lora-Bold.ufo/glyphs/lessequal.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/lessequal.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/lessequal.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/lessequal.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/liraT_urkish.glif b/sources/archive/Lora-Bold.ufo/glyphs/liraT_urkish.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/liraT_urkish.glif rename to sources/archive/Lora-Bold.ufo/glyphs/liraT_urkish.glif diff --git a/sources/Lora-Bold.ufo/glyphs/liraT_urkish.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/liraT_urkish.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/liraT_urkish.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/liraT_urkish.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/literS_ign.glif b/sources/archive/Lora-Bold.ufo/glyphs/literS_ign.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/literS_ign.glif rename to sources/archive/Lora-Bold.ufo/glyphs/literS_ign.glif diff --git a/sources/Lora-Bold.ufo/glyphs/lje-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/lje-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/lje-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/lje-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/logicalnot.glif b/sources/archive/Lora-Bold.ufo/glyphs/logicalnot.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/logicalnot.glif rename to sources/archive/Lora-Bold.ufo/glyphs/logicalnot.glif diff --git a/sources/Lora-Bold.ufo/glyphs/logicalnot.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/logicalnot.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/logicalnot.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/logicalnot.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/longs.glif b/sources/archive/Lora-Bold.ufo/glyphs/longs.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/longs.glif rename to sources/archive/Lora-Bold.ufo/glyphs/longs.glif diff --git a/sources/Lora-Bold.ufo/glyphs/lozenge.glif b/sources/archive/Lora-Bold.ufo/glyphs/lozenge.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/lozenge.glif rename to sources/archive/Lora-Bold.ufo/glyphs/lozenge.glif diff --git a/sources/Lora-Bold.ufo/glyphs/lslash.glif b/sources/archive/Lora-Bold.ufo/glyphs/lslash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/lslash.glif rename to sources/archive/Lora-Bold.ufo/glyphs/lslash.glif diff --git a/sources/Lora-Bold.ufo/glyphs/m.glif b/sources/archive/Lora-Bold.ufo/glyphs/m.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/m.glif rename to sources/archive/Lora-Bold.ufo/glyphs/m.glif diff --git a/sources/Lora-Bold.ufo/glyphs/macron.glif b/sources/archive/Lora-Bold.ufo/glyphs/macron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/macron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/macron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/macroncomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/macroncomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/macroncomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/macroncomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/micro.glif b/sources/archive/Lora-Bold.ufo/glyphs/micro.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/micro.glif rename to sources/archive/Lora-Bold.ufo/glyphs/micro.glif diff --git a/sources/Lora-Bold.ufo/glyphs/minus.glif b/sources/archive/Lora-Bold.ufo/glyphs/minus.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/minus.glif rename to sources/archive/Lora-Bold.ufo/glyphs/minus.glif diff --git a/sources/Lora-Bold.ufo/glyphs/minus.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/minus.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/minus.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/minus.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/minute.glif b/sources/archive/Lora-Bold.ufo/glyphs/minute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/minute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/minute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/mu.glif b/sources/archive/Lora-Bold.ufo/glyphs/mu.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/mu.glif rename to sources/archive/Lora-Bold.ufo/glyphs/mu.glif diff --git a/sources/Lora-Bold.ufo/glyphs/multiply.glif b/sources/archive/Lora-Bold.ufo/glyphs/multiply.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/multiply.glif rename to sources/archive/Lora-Bold.ufo/glyphs/multiply.glif diff --git a/sources/Lora-Bold.ufo/glyphs/multiply.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/multiply.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/multiply.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/multiply.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/n.glif b/sources/archive/Lora-Bold.ufo/glyphs/n.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/n.glif rename to sources/archive/Lora-Bold.ufo/glyphs/n.glif diff --git a/sources/Lora-Bold.ufo/glyphs/nacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/nacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/nacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/nacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/napostrophe.glif b/sources/archive/Lora-Bold.ufo/glyphs/napostrophe.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/napostrophe.glif rename to sources/archive/Lora-Bold.ufo/glyphs/napostrophe.glif diff --git a/sources/Lora-Bold.ufo/glyphs/nbspace.glif b/sources/archive/Lora-Bold.ufo/glyphs/nbspace.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/nbspace.glif rename to sources/archive/Lora-Bold.ufo/glyphs/nbspace.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ncaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/ncaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ncaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ncaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ncommaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/ncommaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ncommaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ncommaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/nine.glif b/sources/archive/Lora-Bold.ufo/glyphs/nine.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/nine.glif rename to sources/archive/Lora-Bold.ufo/glyphs/nine.glif diff --git a/sources/Lora-Bold.ufo/glyphs/nine.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/nine.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/nine.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/nine.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/nje-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/nje-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/nje-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/nje-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/notequal.glif b/sources/archive/Lora-Bold.ufo/glyphs/notequal.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/notequal.glif rename to sources/archive/Lora-Bold.ufo/glyphs/notequal.glif diff --git a/sources/Lora-Bold.ufo/glyphs/notequal.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/notequal.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/notequal.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/notequal.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ntilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/ntilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ntilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ntilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/numbersign.glif b/sources/archive/Lora-Bold.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/numbersign.glif rename to sources/archive/Lora-Bold.ufo/glyphs/numbersign.glif diff --git a/sources/Lora-Bold.ufo/glyphs/numbersign.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/numbersign.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/numbersign.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/numbersign.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/numero.glif b/sources/archive/Lora-Bold.ufo/glyphs/numero.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/numero.glif rename to sources/archive/Lora-Bold.ufo/glyphs/numero.glif diff --git a/sources/Lora-Bold.ufo/glyphs/o-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/o-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/o-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/o-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/o.glif b/sources/archive/Lora-Bold.ufo/glyphs/o.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/o.glif rename to sources/archive/Lora-Bold.ufo/glyphs/o.glif diff --git a/sources/Lora-Bold.ufo/glyphs/oacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/oacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/oacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/oacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/obarred-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/obarred-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/obarred-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/obarred-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/obarreddieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/obarreddieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/obarreddieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/obarreddieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/obreve.glif b/sources/archive/Lora-Bold.ufo/glyphs/obreve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/obreve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/obreve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ocircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/ocircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ocircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ocircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ocircumflexacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/ocircumflexacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ocircumflexacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ocircumflexacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ocircumflexdotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/ocircumflexdotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ocircumflexdotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ocircumflexdotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ocircumflexgrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/ocircumflexgrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ocircumflexgrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ocircumflexgrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ocircumflexhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/ocircumflexhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ocircumflexhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ocircumflexhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ocircumflextilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/ocircumflextilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ocircumflextilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ocircumflextilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/odieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/odieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/odieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/odieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/odieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/odieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/odieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/odieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/odotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/odotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/odotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/odotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/oe.glif b/sources/archive/Lora-Bold.ufo/glyphs/oe.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/oe.glif rename to sources/archive/Lora-Bold.ufo/glyphs/oe.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ogonek.glif b/sources/archive/Lora-Bold.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ogonek.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ogonek.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ogonekcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/ogonekcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ogonekcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ogonekcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ograve.glif b/sources/archive/Lora-Bold.ufo/glyphs/ograve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ograve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ograve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ohookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/ohookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ohookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ohookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ohorn.glif b/sources/archive/Lora-Bold.ufo/glyphs/ohorn.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ohorn.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ohorn.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ohornacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/ohornacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ohornacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ohornacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ohorndotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/ohorndotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ohorndotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ohorndotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ohorngrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/ohorngrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ohorngrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ohorngrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ohornhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/ohornhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ohornhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ohornhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ohorntilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/ohorntilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ohorntilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ohorntilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ohungarumlaut.glif b/sources/archive/Lora-Bold.ufo/glyphs/ohungarumlaut.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ohungarumlaut.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ohungarumlaut.glif diff --git a/sources/Lora-Bold.ufo/glyphs/omacron.glif b/sources/archive/Lora-Bold.ufo/glyphs/omacron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/omacron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/omacron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/one.glif b/sources/archive/Lora-Bold.ufo/glyphs/one.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/one.glif rename to sources/archive/Lora-Bold.ufo/glyphs/one.glif diff --git a/sources/Lora-Bold.ufo/glyphs/one.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/one.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/one.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/one.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/onehalf.glif b/sources/archive/Lora-Bold.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/onehalf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/onehalf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/onequarter.glif b/sources/archive/Lora-Bold.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/onequarter.glif rename to sources/archive/Lora-Bold.ufo/glyphs/onequarter.glif diff --git a/sources/Lora-Bold.ufo/glyphs/onesuperior.glif b/sources/archive/Lora-Bold.ufo/glyphs/onesuperior.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/onesuperior.glif rename to sources/archive/Lora-Bold.ufo/glyphs/onesuperior.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ordfeminine.glif b/sources/archive/Lora-Bold.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ordfeminine.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ordfeminine.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ordmasculine.glif b/sources/archive/Lora-Bold.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ordmasculine.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ordmasculine.glif diff --git a/sources/Lora-Bold.ufo/glyphs/oslash.glif b/sources/archive/Lora-Bold.ufo/glyphs/oslash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/oslash.glif rename to sources/archive/Lora-Bold.ufo/glyphs/oslash.glif diff --git a/sources/Lora-Bold.ufo/glyphs/oslashacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/oslashacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/oslashacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/oslashacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/otilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/otilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/otilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/otilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/p.glif b/sources/archive/Lora-Bold.ufo/glyphs/p.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/p.glif rename to sources/archive/Lora-Bold.ufo/glyphs/p.glif diff --git a/sources/Lora-Bold.ufo/glyphs/palochka-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/palochka-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/palochka-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/palochka-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/paragraph.glif b/sources/archive/Lora-Bold.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/paragraph.glif rename to sources/archive/Lora-Bold.ufo/glyphs/paragraph.glif diff --git a/sources/Lora-Bold.ufo/glyphs/parenleft.glif b/sources/archive/Lora-Bold.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/parenleft.glif rename to sources/archive/Lora-Bold.ufo/glyphs/parenleft.glif diff --git a/sources/Lora-Bold.ufo/glyphs/parenright.glif b/sources/archive/Lora-Bold.ufo/glyphs/parenright.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/parenright.glif rename to sources/archive/Lora-Bold.ufo/glyphs/parenright.glif diff --git a/sources/Lora-Bold.ufo/glyphs/partialdiff.glif b/sources/archive/Lora-Bold.ufo/glyphs/partialdiff.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/partialdiff.glif rename to sources/archive/Lora-Bold.ufo/glyphs/partialdiff.glif diff --git a/sources/Lora-Bold.ufo/glyphs/pe-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/pe-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/pe-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/pe-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/pe-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/pe-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/pe-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/pe-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/pedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/pedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/pedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/pedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/pemiddlehook-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/pemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/pemiddlehook-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/pemiddlehook-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/percent.glif b/sources/archive/Lora-Bold.ufo/glyphs/percent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/percent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/percent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/percent.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/percent.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/percent.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/percent.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/period.glif b/sources/archive/Lora-Bold.ufo/glyphs/period.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/period.glif rename to sources/archive/Lora-Bold.ufo/glyphs/period.glif diff --git a/sources/Lora-Bold.ufo/glyphs/period.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/period.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/period.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/period.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/periodcentered.glif b/sources/archive/Lora-Bold.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/periodcentered.glif rename to sources/archive/Lora-Bold.ufo/glyphs/periodcentered.glif diff --git a/sources/Lora-Bold.ufo/glyphs/periodcentered.loclC_A_T_.glif b/sources/archive/Lora-Bold.ufo/glyphs/periodcentered.loclC_A_T_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/periodcentered.loclC_A_T_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/periodcentered.loclC_A_T_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/perthousand.glif b/sources/archive/Lora-Bold.ufo/glyphs/perthousand.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/perthousand.glif rename to sources/archive/Lora-Bold.ufo/glyphs/perthousand.glif diff --git a/sources/Lora-Bold.ufo/glyphs/pi.glif b/sources/archive/Lora-Bold.ufo/glyphs/pi.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/pi.glif rename to sources/archive/Lora-Bold.ufo/glyphs/pi.glif diff --git a/sources/Lora-Bold.ufo/glyphs/plus.glif b/sources/archive/Lora-Bold.ufo/glyphs/plus.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/plus.glif rename to sources/archive/Lora-Bold.ufo/glyphs/plus.glif diff --git a/sources/Lora-Bold.ufo/glyphs/plus.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/plus.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/plus.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/plus.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/plusminus.glif b/sources/archive/Lora-Bold.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/plusminus.glif rename to sources/archive/Lora-Bold.ufo/glyphs/plusminus.glif diff --git a/sources/Lora-Bold.ufo/glyphs/plusminus.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/plusminus.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/plusminus.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/plusminus.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/product.glif b/sources/archive/Lora-Bold.ufo/glyphs/product.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/product.glif rename to sources/archive/Lora-Bold.ufo/glyphs/product.glif diff --git a/sources/Lora-Bold.ufo/glyphs/q.glif b/sources/archive/Lora-Bold.ufo/glyphs/q.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/q.glif rename to sources/archive/Lora-Bold.ufo/glyphs/q.glif diff --git a/sources/Lora-Bold.ufo/glyphs/qa-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/qa-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/qa-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/qa-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/question.glif b/sources/archive/Lora-Bold.ufo/glyphs/question.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/question.glif rename to sources/archive/Lora-Bold.ufo/glyphs/question.glif diff --git a/sources/Lora-Bold.ufo/glyphs/questiondown.glif b/sources/archive/Lora-Bold.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/questiondown.glif rename to sources/archive/Lora-Bold.ufo/glyphs/questiondown.glif diff --git a/sources/Lora-Bold.ufo/glyphs/quotedbl.glif b/sources/archive/Lora-Bold.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/quotedbl.glif rename to sources/archive/Lora-Bold.ufo/glyphs/quotedbl.glif diff --git a/sources/Lora-Bold.ufo/glyphs/quotedblbase.glif b/sources/archive/Lora-Bold.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/quotedblbase.glif rename to sources/archive/Lora-Bold.ufo/glyphs/quotedblbase.glif diff --git a/sources/Lora-Bold.ufo/glyphs/quotedblleft.glif b/sources/archive/Lora-Bold.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/quotedblleft.glif rename to sources/archive/Lora-Bold.ufo/glyphs/quotedblleft.glif diff --git a/sources/Lora-Bold.ufo/glyphs/quotedblright.glif b/sources/archive/Lora-Bold.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/quotedblright.glif rename to sources/archive/Lora-Bold.ufo/glyphs/quotedblright.glif diff --git a/sources/Lora-Bold.ufo/glyphs/quoteleft.glif b/sources/archive/Lora-Bold.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/quoteleft.glif rename to sources/archive/Lora-Bold.ufo/glyphs/quoteleft.glif diff --git a/sources/Lora-Bold.ufo/glyphs/quoteright.glif b/sources/archive/Lora-Bold.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/quoteright.glif rename to sources/archive/Lora-Bold.ufo/glyphs/quoteright.glif diff --git a/sources/Lora-Bold.ufo/glyphs/quotesinglbase.glif b/sources/archive/Lora-Bold.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/quotesinglbase.glif rename to sources/archive/Lora-Bold.ufo/glyphs/quotesinglbase.glif diff --git a/sources/Lora-Bold.ufo/glyphs/quotesingle.glif b/sources/archive/Lora-Bold.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/quotesingle.glif rename to sources/archive/Lora-Bold.ufo/glyphs/quotesingle.glif diff --git a/sources/Lora-Bold.ufo/glyphs/r.glif b/sources/archive/Lora-Bold.ufo/glyphs/r.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/r.glif rename to sources/archive/Lora-Bold.ufo/glyphs/r.glif diff --git a/sources/Lora-Bold.ufo/glyphs/racute.glif b/sources/archive/Lora-Bold.ufo/glyphs/racute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/racute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/racute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/radical.glif b/sources/archive/Lora-Bold.ufo/glyphs/radical.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/radical.glif rename to sources/archive/Lora-Bold.ufo/glyphs/radical.glif diff --git a/sources/Lora-Bold.ufo/glyphs/rcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/rcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/rcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/rcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/rcommaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/rcommaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/rcommaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/rcommaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/registered.glif b/sources/archive/Lora-Bold.ufo/glyphs/registered.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/registered.glif rename to sources/archive/Lora-Bold.ufo/glyphs/registered.glif diff --git a/sources/Lora-Bold.ufo/glyphs/reversedze-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/reversedze-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/reversedze-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/reversedze-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/rightanglebracket-math.glif b/sources/archive/Lora-Bold.ufo/glyphs/rightanglebracket-math.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/rightanglebracket-math.glif rename to sources/archive/Lora-Bold.ufo/glyphs/rightanglebracket-math.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ring.glif b/sources/archive/Lora-Bold.ufo/glyphs/ring.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ring.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ring.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ringcomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/ringcomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ringcomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ringcomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ringcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/ringcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ringcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ringcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ruble.glif b/sources/archive/Lora-Bold.ufo/glyphs/ruble.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ruble.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ruble.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ruble.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/ruble.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ruble.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ruble.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/s.glif b/sources/archive/Lora-Bold.ufo/glyphs/s.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/s.glif rename to sources/archive/Lora-Bold.ufo/glyphs/s.glif diff --git a/sources/Lora-Bold.ufo/glyphs/sacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/sacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/sacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/sacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/scaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/scaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/scaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/scaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/scedilla.glif b/sources/archive/Lora-Bold.ufo/glyphs/scedilla.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/scedilla.glif rename to sources/archive/Lora-Bold.ufo/glyphs/scedilla.glif diff --git a/sources/Lora-Bold.ufo/glyphs/schwa-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/schwa-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/schwa-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/schwa-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/schwa.glif b/sources/archive/Lora-Bold.ufo/glyphs/schwa.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/schwa.glif rename to sources/archive/Lora-Bold.ufo/glyphs/schwa.glif diff --git a/sources/Lora-Bold.ufo/glyphs/schwadieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/schwadieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/schwadieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/schwadieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/scircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/scircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/scircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/scircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/scommaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/scommaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/scommaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/scommaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/second.glif b/sources/archive/Lora-Bold.ufo/glyphs/second.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/second.glif rename to sources/archive/Lora-Bold.ufo/glyphs/second.glif diff --git a/sources/Lora-Bold.ufo/glyphs/section.glif b/sources/archive/Lora-Bold.ufo/glyphs/section.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/section.glif rename to sources/archive/Lora-Bold.ufo/glyphs/section.glif diff --git a/sources/Lora-Bold.ufo/glyphs/section.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/section.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/section.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/section.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/semicolon.glif b/sources/archive/Lora-Bold.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/semicolon.glif rename to sources/archive/Lora-Bold.ufo/glyphs/semicolon.glif diff --git a/sources/Lora-Bold.ufo/glyphs/semicolon.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/semicolon.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/semicolon.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/semicolon.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/semisoftsign-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/semisoftsign-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/semisoftsign-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/semisoftsign-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/seven.glif b/sources/archive/Lora-Bold.ufo/glyphs/seven.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/seven.glif rename to sources/archive/Lora-Bold.ufo/glyphs/seven.glif diff --git a/sources/Lora-Bold.ufo/glyphs/seven.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/seven.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/seven.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/seven.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/sha-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/sha-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/sha-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/sha-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/sha-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/sha-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/sha-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/sha-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/shcha-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/shcha-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/shcha-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/shcha-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/shcha-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/shcha-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/shcha-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/shcha-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/shha-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/shha-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/shha-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/shha-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/shhadescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/shhadescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/shhadescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/shhadescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/six.glif b/sources/archive/Lora-Bold.ufo/glyphs/six.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/six.glif rename to sources/archive/Lora-Bold.ufo/glyphs/six.glif diff --git a/sources/Lora-Bold.ufo/glyphs/six.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/six.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/six.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/six.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/slash.glif b/sources/archive/Lora-Bold.ufo/glyphs/slash.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/slash.glif rename to sources/archive/Lora-Bold.ufo/glyphs/slash.glif diff --git a/sources/Lora-Bold.ufo/glyphs/softhyphen.glif b/sources/archive/Lora-Bold.ufo/glyphs/softhyphen.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/softhyphen.glif rename to sources/archive/Lora-Bold.ufo/glyphs/softhyphen.glif diff --git a/sources/Lora-Bold.ufo/glyphs/softsign-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/softsign-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/softsign-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/softsign-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/softsign-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/softsign-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/softsign-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/softsign-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/space.glif b/sources/archive/Lora-Bold.ufo/glyphs/space.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/space.glif rename to sources/archive/Lora-Bold.ufo/glyphs/space.glif diff --git a/sources/Lora-Bold.ufo/glyphs/space.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/space.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/space.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/space.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/sterling.glif b/sources/archive/Lora-Bold.ufo/glyphs/sterling.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/sterling.glif rename to sources/archive/Lora-Bold.ufo/glyphs/sterling.glif diff --git a/sources/Lora-Bold.ufo/glyphs/sterling.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/sterling.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/sterling.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/sterling.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/strokelongcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/strokelongcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/strokelongcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/strokelongcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/strokeshortcomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/strokeshortcomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/strokeshortcomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/strokeshortcomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/summation.glif b/sources/archive/Lora-Bold.ufo/glyphs/summation.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/summation.glif rename to sources/archive/Lora-Bold.ufo/glyphs/summation.glif diff --git a/sources/Lora-Bold.ufo/glyphs/t.glif b/sources/archive/Lora-Bold.ufo/glyphs/t.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/t.glif rename to sources/archive/Lora-Bold.ufo/glyphs/t.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tail-cy.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/tail-cy.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tail-cy.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tail-cy.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tail-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/tail-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tail-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tail-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tbar.glif b/sources/archive/Lora-Bold.ufo/glyphs/tbar.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tbar.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tbar.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/tcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tcedilla.glif b/sources/archive/Lora-Bold.ufo/glyphs/tcedilla.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tcedilla.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tcedilla.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tcommaaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/tcommaaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tcommaaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tcommaaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/te-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/te-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/te-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/te-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/te-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/te-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/te-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/te-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/tedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tenge.glif b/sources/archive/Lora-Bold.ufo/glyphs/tenge.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tenge.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tenge.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tenge.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/tenge.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tenge.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tenge.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tetse-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/tetse-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tetse-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tetse-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/thorn.glif b/sources/archive/Lora-Bold.ufo/glyphs/thorn.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/thorn.glif rename to sources/archive/Lora-Bold.ufo/glyphs/thorn.glif diff --git a/sources/Lora-Bold.ufo/glyphs/three.glif b/sources/archive/Lora-Bold.ufo/glyphs/three.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/three.glif rename to sources/archive/Lora-Bold.ufo/glyphs/three.glif diff --git a/sources/Lora-Bold.ufo/glyphs/three.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/three.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/three.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/three.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/threequarters.glif b/sources/archive/Lora-Bold.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/threequarters.glif rename to sources/archive/Lora-Bold.ufo/glyphs/threequarters.glif diff --git a/sources/Lora-Bold.ufo/glyphs/threesuperior.glif b/sources/archive/Lora-Bold.ufo/glyphs/threesuperior.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/threesuperior.glif rename to sources/archive/Lora-Bold.ufo/glyphs/threesuperior.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/tilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tildecomb.case.glif b/sources/archive/Lora-Bold.ufo/glyphs/tildecomb.case.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tildecomb.case.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tildecomb.case.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tildecomb.glif b/sources/archive/Lora-Bold.ufo/glyphs/tildecomb.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tildecomb.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tildecomb.glif diff --git a/sources/Lora-Bold.ufo/glyphs/trademark.glif b/sources/archive/Lora-Bold.ufo/glyphs/trademark.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/trademark.glif rename to sources/archive/Lora-Bold.ufo/glyphs/trademark.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tse-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/tse-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tse-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tse-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tse-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/tse-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tse-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tse-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tshe-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/tshe-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tshe-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tshe-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tugrik.glif b/sources/archive/Lora-Bold.ufo/glyphs/tugrik.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tugrik.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tugrik.glif diff --git a/sources/Lora-Bold.ufo/glyphs/tugrik.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/tugrik.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/tugrik.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/tugrik.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/two.glif b/sources/archive/Lora-Bold.ufo/glyphs/two.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/two.glif rename to sources/archive/Lora-Bold.ufo/glyphs/two.glif diff --git a/sources/Lora-Bold.ufo/glyphs/two.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/two.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/two.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/two.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/twosuperior.glif b/sources/archive/Lora-Bold.ufo/glyphs/twosuperior.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/twosuperior.glif rename to sources/archive/Lora-Bold.ufo/glyphs/twosuperior.glif diff --git a/sources/Lora-Bold.ufo/glyphs/u-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/u-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/u-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/u-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/u.glif b/sources/archive/Lora-Bold.ufo/glyphs/u.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/u.glif rename to sources/archive/Lora-Bold.ufo/glyphs/u.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/uacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ubreve.glif b/sources/archive/Lora-Bold.ufo/glyphs/ubreve.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ubreve.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ubreve.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ucaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/ucaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ucaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ucaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ucircumflex.glif b/sources/archive/Lora-Bold.ufo/glyphs/ucircumflex.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ucircumflex.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ucircumflex.glif diff --git a/sources/Lora-Bold.ufo/glyphs/udieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/udieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/udieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/udieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/udieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/udieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/udieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/udieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/udotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/udotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/udotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/udotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ugrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/ugrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ugrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ugrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/uhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uhorn.glif b/sources/archive/Lora-Bold.ufo/glyphs/uhorn.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uhorn.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uhorn.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uhornacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/uhornacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uhornacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uhornacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uhorndotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/uhorndotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uhorndotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uhorndotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uhorngrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/uhorngrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uhorngrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uhorngrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uhornhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/uhornhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uhornhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uhornhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uhorntilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/uhorntilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uhorntilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uhorntilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uhungarumlaut-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/uhungarumlaut-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uhungarumlaut-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uhungarumlaut-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uhungarumlaut.glif b/sources/archive/Lora-Bold.ufo/glyphs/uhungarumlaut.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uhungarumlaut.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uhungarumlaut.glif diff --git a/sources/Lora-Bold.ufo/glyphs/umacron-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/umacron-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/umacron-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/umacron-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/umacron.glif b/sources/archive/Lora-Bold.ufo/glyphs/umacron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/umacron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/umacron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/underscore.glif b/sources/archive/Lora-Bold.ufo/glyphs/underscore.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/underscore.glif rename to sources/archive/Lora-Bold.ufo/glyphs/underscore.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uni0000.glif b/sources/archive/Lora-Bold.ufo/glyphs/uni0000.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uni0000.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uni0000.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uni1C_81.glif b/sources/archive/Lora-Bold.ufo/glyphs/uni1C_81.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uni1C_81.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uni1C_81.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uni1C_85.glif b/sources/archive/Lora-Bold.ufo/glyphs/uni1C_85.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uni1C_85.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uni1C_85.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uniE_F_F_D_.glif b/sources/archive/Lora-Bold.ufo/glyphs/uniE_F_F_D_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uniE_F_F_D_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uniE_F_F_D_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uogonek.glif b/sources/archive/Lora-Bold.ufo/glyphs/uogonek.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uogonek.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uogonek.glif diff --git a/sources/Lora-Bold.ufo/glyphs/uring.glif b/sources/archive/Lora-Bold.ufo/glyphs/uring.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/uring.glif rename to sources/archive/Lora-Bold.ufo/glyphs/uring.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ushort-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ushort-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ushort-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ushort-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ustraight-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ustraight-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ustraight-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ustraight-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ustraightstroke-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ustraightstroke-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ustraightstroke-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ustraightstroke-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/utilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/utilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/utilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/utilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/v.glif b/sources/archive/Lora-Bold.ufo/glyphs/v.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/v.glif rename to sources/archive/Lora-Bold.ufo/glyphs/v.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ve-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ve-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ve-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ve-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ve-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/ve-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ve-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ve-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/w.glif b/sources/archive/Lora-Bold.ufo/glyphs/w.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/w.glif rename to sources/archive/Lora-Bold.ufo/glyphs/w.glif diff --git a/sources/Lora-Bold.ufo/glyphs/we-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/we-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/we-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/we-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/x.glif b/sources/archive/Lora-Bold.ufo/glyphs/x.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/x.glif rename to sources/archive/Lora-Bold.ufo/glyphs/x.glif diff --git a/sources/Lora-Bold.ufo/glyphs/y.glif b/sources/archive/Lora-Bold.ufo/glyphs/y.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/y.glif rename to sources/archive/Lora-Bold.ufo/glyphs/y.glif diff --git a/sources/Lora-Bold.ufo/glyphs/yacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/yacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/yacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/yacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/yat-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/yat-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/yat-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/yat-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ydieresis.glif b/sources/archive/Lora-Bold.ufo/glyphs/ydieresis.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ydieresis.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ydieresis.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ydotbelow.glif b/sources/archive/Lora-Bold.ufo/glyphs/ydotbelow.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ydotbelow.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ydotbelow.glif diff --git a/sources/Lora-Bold.ufo/glyphs/yen.glif b/sources/archive/Lora-Bold.ufo/glyphs/yen.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/yen.glif rename to sources/archive/Lora-Bold.ufo/glyphs/yen.glif diff --git a/sources/Lora-Bold.ufo/glyphs/yen.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/yen.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/yen.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/yen.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/yeru-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/yeru-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/yeru-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/yeru-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/yerudieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/yerudieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/yerudieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/yerudieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ygrave.glif b/sources/archive/Lora-Bold.ufo/glyphs/ygrave.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ygrave.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ygrave.glif diff --git a/sources/Lora-Bold.ufo/glyphs/yhookabove.glif b/sources/archive/Lora-Bold.ufo/glyphs/yhookabove.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/yhookabove.glif rename to sources/archive/Lora-Bold.ufo/glyphs/yhookabove.glif diff --git a/sources/Lora-Bold.ufo/glyphs/yi-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/yi-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/yi-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/yi-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ytilde.glif b/sources/archive/Lora-Bold.ufo/glyphs/ytilde.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ytilde.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ytilde.glif diff --git a/sources/Lora-Bold.ufo/glyphs/yusbig-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/yusbig-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/yusbig-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/yusbig-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/z.glif b/sources/archive/Lora-Bold.ufo/glyphs/z.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/z.glif rename to sources/archive/Lora-Bold.ufo/glyphs/z.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zacute.glif b/sources/archive/Lora-Bold.ufo/glyphs/zacute.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zacute.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zacute.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zcaron.glif b/sources/archive/Lora-Bold.ufo/glyphs/zcaron.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zcaron.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zcaron.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zdotaccent.glif b/sources/archive/Lora-Bold.ufo/glyphs/zdotaccent.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zdotaccent.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zdotaccent.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ze-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/ze-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ze-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ze-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/ze-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/ze-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/ze-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/ze-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/zedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zedescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Bold.ufo/glyphs/zedescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zedescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zedescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zedieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/zedieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zedieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zedieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zero.glif b/sources/archive/Lora-Bold.ufo/glyphs/zero.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zero.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zero.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zero.tf.glif b/sources/archive/Lora-Bold.ufo/glyphs/zero.tf.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zero.tf.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zero.tf.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zhe-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/zhe-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zhe-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zhe-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zhe-cy.loclB_G_R_.glif b/sources/archive/Lora-Bold.ufo/glyphs/zhe-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zhe-cy.loclB_G_R_.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zhe-cy.loclB_G_R_.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zhebreve-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/zhebreve-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zhebreve-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zhebreve-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zhedescender-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/zhedescender-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zhedescender-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zhedescender-cy.glif diff --git a/sources/Lora-Bold.ufo/glyphs/zhedieresis-cy.glif b/sources/archive/Lora-Bold.ufo/glyphs/zhedieresis-cy.glif similarity index 100% rename from sources/Lora-Bold.ufo/glyphs/zhedieresis-cy.glif rename to sources/archive/Lora-Bold.ufo/glyphs/zhedieresis-cy.glif diff --git a/sources/Lora-Bold.ufo/groups.plist b/sources/archive/Lora-Bold.ufo/groups.plist similarity index 100% rename from sources/Lora-Bold.ufo/groups.plist rename to sources/archive/Lora-Bold.ufo/groups.plist diff --git a/sources/Lora-Bold.ufo/kerning.plist b/sources/archive/Lora-Bold.ufo/kerning.plist similarity index 100% rename from sources/Lora-Bold.ufo/kerning.plist rename to sources/archive/Lora-Bold.ufo/kerning.plist diff --git a/sources/Lora-Bold.ufo/layercontents.plist b/sources/archive/Lora-Bold.ufo/layercontents.plist similarity index 100% rename from sources/Lora-Bold.ufo/layercontents.plist rename to sources/archive/Lora-Bold.ufo/layercontents.plist diff --git a/sources/Lora-Bold.ufo/lib.plist b/sources/archive/Lora-Bold.ufo/lib.plist similarity index 100% rename from sources/Lora-Bold.ufo/lib.plist rename to sources/archive/Lora-Bold.ufo/lib.plist diff --git a/sources/Lora-Bold.ufo/metainfo.plist b/sources/archive/Lora-Bold.ufo/metainfo.plist similarity index 100% rename from sources/Lora-Bold.ufo/metainfo.plist rename to sources/archive/Lora-Bold.ufo/metainfo.plist diff --git a/sources/Lora-BoldItalic.ufo/features.fea b/sources/archive/Lora-BoldItalic.ufo/features.fea similarity index 100% rename from sources/Lora-BoldItalic.ufo/features.fea rename to sources/archive/Lora-BoldItalic.ufo/features.fea diff --git a/sources/Lora-BoldItalic.ufo/fontinfo.plist b/sources/archive/Lora-BoldItalic.ufo/fontinfo.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/fontinfo.plist rename to sources/archive/Lora-BoldItalic.ufo/fontinfo.plist diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/C_cedilla.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/C_cedilla.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/C_cedilla.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/C_cedilla.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/C_he-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/C_he-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/C_he-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/C_he-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/D_je-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/D_je-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/D_je-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/D_je-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/D_zeabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/D_zeabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/D_zeabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/D_zeabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/E_f-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/E_f-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/E_f-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/E_f-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/E_lhook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/E_lhook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/E_lhook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/E_lhook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/E_ng.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/E_ng.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/E_ng.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/E_ng.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/E_nhook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/E_nhook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/E_nhook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/E_nhook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/G_estrokehook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/G_estrokehook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/G_estrokehook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/G_estrokehook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/H_aabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/H_aabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/H_aabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/H_aabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/H_ahook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/H_ahook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/H_ahook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/H_ahook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/I_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/I_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/I_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/I_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/K_averticalstroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/K_averticalstroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/K_averticalstroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/K_averticalstroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/L_je-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/L_je-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/L_je-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/L_je-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/L_slash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/L_slash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/L_slash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/L_slash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/P_edescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/P_edescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/P_edescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/P_edescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/T_edescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/T_edescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/T_edescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/T_edescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/Y_at-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/Y_at-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/Y_at-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/Y_at-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/Y_usbig-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/Y_usbig-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/Y_usbig-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/Y_usbig-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/Z_hedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/Z_hedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/Z_hedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/Z_hedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/approxequal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/approxequal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/approxequal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/approxequal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/breve.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/breve.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/breve.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/breve.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/cheabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/cheabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/cheabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/cheabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/cheverticalstroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/cheverticalstroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/cheverticalstroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/cheverticalstroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/commaaccentcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/commaaccentcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/commaaccentcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/commaaccentcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/commercialM_inusS_ign.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/commercialM_inusS_ign.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/commercialM_inusS_ign.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/commercialM_inusS_ign.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/contents.plist b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/contents.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/contents.plist rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/contents.plist diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/dcroat.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/dcroat.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/dcroat.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/dcroat.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/divide.alt.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/divide.alt.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/divide.alt.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/divide.alt.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/divide.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/divide.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/divide.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/divide.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/eltail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/eltail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/eltail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/eltail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/emdash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/emdash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/emdash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/emdash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/eng.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/eng.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/eng.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/eng.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/enhook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/enhook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/enhook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/enhook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/equal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/equal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/equal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/equal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/ezh.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ezh.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/ezh.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ezh.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/fita-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/fita-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/fita-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/fita-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/ge-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ge-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/ge-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ge-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/ge-cy.ss01.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ge-cy.ss01.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/ge-cy.ss01.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ge-cy.ss01.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/gedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/gedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/gedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/gedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/gestrokehook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/gestrokehook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/gestrokehook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/gestrokehook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/ghemiddlehook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ghemiddlehook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/ghemiddlehook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ghemiddlehook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/ghestroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ghestroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/ghestroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ghestroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/ghestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ghestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/ghestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ghestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/greaterequal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/greaterequal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/greaterequal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/greaterequal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/haabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/haabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/haabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/haabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/hardsign-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/hardsign-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/hardsign-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/hardsign-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/hookabovecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/hookabovecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/hookabovecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/hookabovecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/hryvnia.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/hryvnia.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/hryvnia.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/hryvnia.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/hungarumlaut.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/hungarumlaut.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/hungarumlaut.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/hungarumlaut.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/j.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/j.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/j.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/j.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/jdotless.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/jdotless.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/jdotless.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/jdotless.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/kabashkir-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/kabashkir-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/kabashkir-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/kabashkir-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/kahook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/kahook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/kahook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/kahook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/kastroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/kastroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/kastroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/kastroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/layerinfo.plist b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/layerinfo.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/layerinfo.plist rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/layerinfo.plist diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/lessequal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/lessequal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/lessequal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/lessequal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/liraT_urkish.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/liraT_urkish.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/liraT_urkish.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/liraT_urkish.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/lslash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/lslash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/lslash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/lslash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/micro.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/micro.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/micro.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/micro.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/minute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/minute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/minute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/minute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/mu.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/mu.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/mu.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/mu.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/n.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/n.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/n.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/n.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/notequal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/notequal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/notequal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/notequal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/onequarter.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/onequarter.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/onequarter.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/onequarter.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/plus.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/plus.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/plus.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/plus.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/schwa-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/schwa-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/schwa-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/schwa-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/schwa.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/schwa.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/schwa.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/schwa.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/semisoftsign-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/semisoftsign-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/semisoftsign-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/semisoftsign-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/tail-cy.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/tail-cy.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/tail-cy.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/tail-cy.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/tenge.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/tenge.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/tenge.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/tenge.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/tshe-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/tshe-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/tshe-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/tshe-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/u.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/u.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/u.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/u.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/ustraightstroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ustraightstroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/ustraightstroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ustraightstroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_E_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_E_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_E_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_breve-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_breve-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_breve-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_breve-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_breve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_breve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_breve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_breveacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_breveacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_breveacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_brevedotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_brevedotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_brevegrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_brevegrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_brevegrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_brevehookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_brevehookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_brevetilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_brevetilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_brevetilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_circumflexacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_circumflexacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_circumflexgrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_circumflexgrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_circumflexhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_circumflextilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_circumflextilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_dieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_dieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_dieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_dieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_dieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_dieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_dieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_dotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_dotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_dotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_grave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_grave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_grave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_hookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_hookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_hookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_ie-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_ie-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_ie-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_ie-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_macron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_macron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_macron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_ogonek.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_ogonek.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_ogonek.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_ring.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_ring.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_ring.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/A_tilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/A_tilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/A_tilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/B_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/B_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/B_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/B_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/B_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/B_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/B_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/B_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_cedilla.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_cedilla.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_cedilla.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_dotaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_dotaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_dotaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_he-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_he-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_he-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_he-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_heabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_heabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_heabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_heabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_hedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_hedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_hedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_hedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_hedescenderabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_hedescenderabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_hedescenderabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_hedescenderabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_hedieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_hedieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_hedieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_hedieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_hekhakassian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_hekhakassian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_hekhakassian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_hekhakassian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/C_heverticalstroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/C_heverticalstroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/C_heverticalstroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/C_heverticalstroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_croat.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_croat.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_croat.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_e-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_e-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_e-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_e-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_elta.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_elta.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_elta.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_elta.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.699.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.699.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.699.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.699.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_je-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_je-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_je-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_je-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_ze-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_ze-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_ze-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_ze-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_zeabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_zeabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_zeabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_zeabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/D_zhe-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/D_zhe-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/D_zhe-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/D_zhe-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_breve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_breve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_breve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_circumflexacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_circumflexacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_circumflexgrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_circumflexgrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_circumflexhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_circumflextilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_circumflextilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_dieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_dieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_dieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_dieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_dieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_dieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_dieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_dotaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_dotaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_dotaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_dotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_dotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_dotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_f-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_f-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_f-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_f-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_f-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_f-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_f-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_f-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_grave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_grave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_grave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_hookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_hookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_hookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_l-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_l-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_l-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_l-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_l-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_l-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_l-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_l-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_ldescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_ldescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_ldescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_ldescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_lhook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_lhook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_lhook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_lhook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_ltail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_ltail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_ltail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_ltail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_m-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_m-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_m-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_m-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_macron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_macron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_macron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_mtail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_mtail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_mtail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_mtail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_n-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_n-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_n-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_n-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_nL_eftH_ook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_nL_eftH_ook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_nL_eftH_ook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_nL_eftH_ook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_ndescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_ndescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_ndescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_ndescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_ng.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_ng.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_ng.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_nghe-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_nghe-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_nghe-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_nghe-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_nhook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_nhook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_nhook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_nhook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_ntail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_ntail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_ntail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_ntail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_ogonek.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_ogonek.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_ogonek.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_r-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_r-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_r-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_r-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_reversed-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_reversed-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_reversed-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_reversed-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_rtick-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_rtick-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_rtick-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_rtick-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_s-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_s-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_s-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_s-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_th.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_th.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_th.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_th.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_tilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_tilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_tilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_zh.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_zh.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_zh.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_zh.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/E_zhcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/E_zhcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/E_zhcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/E_zhcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/F_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/F_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/F_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/F_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/F_ita-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/F_ita-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/F_ita-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/F_ita-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_amma.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_amma.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_amma.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_amma.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_breve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_breve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_breve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_commaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_commaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_commaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_edescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_edescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_edescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_edescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_ermandbls.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_ermandbls.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_ermandbls.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_ermandbls.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_estrokehook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_estrokehook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_estrokehook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_estrokehook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_hemiddlehook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_hemiddlehook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_hemiddlehook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_hemiddlehook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_hestroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_hestroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_hestroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_hestroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_heupturn-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_heupturn-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_heupturn-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_heupturn-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_je-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_je-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_je-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_je-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/G_stroke.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/G_stroke.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/G_stroke.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/G_stroke.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_a-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_a-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_a-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_a-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_aabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_aabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_aabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_aabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_adescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_adescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_adescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_adescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_ahook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_ahook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_ahook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_ahook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_ardsign-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_ardsign-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_ardsign-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_ardsign-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_astroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_astroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_astroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_astroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_bar.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_bar.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_bar.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/H_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/H_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/H_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_a-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_a-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_a-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_a-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_breve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_breve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_breve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_dieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_dieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_dieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_dieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_dieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_dieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_dieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_dotaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_dotaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_dotaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_dotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_dotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_dotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_ebreve-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_ebreve-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_ebreve-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_ebreve-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_egrave-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_egrave-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_egrave-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_egrave-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_grave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_grave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_grave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_hookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_hookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_hookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_i-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_i-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_i-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_i-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_igrave-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_igrave-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_igrave-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_igrave-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_ishort-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_ishort-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_ishort-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_ishort-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_ishorttail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_ishorttail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_ishorttail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_ishorttail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_macron-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_macron-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_macron-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_macron-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_macron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_macron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_macron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_o-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_o-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_o-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_o-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_ogonek.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_ogonek.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_ogonek.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_tilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_tilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_tilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_u-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_u-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_u-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_u-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/I_zhitsa-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/I_zhitsa-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/I_zhitsa-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/I_zhitsa-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/J_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/J_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/J_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/J_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/J_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/J_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/J_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/J_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/J_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/J_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/J_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_a-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_a-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_a-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_a-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_abashkir-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_abashkir-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_abashkir-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_abashkir-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_adescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_adescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_adescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_adescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_ahook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_ahook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_ahook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_ahook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_astroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_astroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_astroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_astroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_averticalstroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_averticalstroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_averticalstroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_averticalstroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_commaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_commaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_commaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/K_je-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/K_je-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/K_je-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/K_je-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/L_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/L_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/L_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/L_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/L_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/L_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/L_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/L_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/L_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/L_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/L_commaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/L_commaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/L_commaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/L_dot.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/L_dot.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/L_dot.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/L_dot.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/L_je-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/L_je-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/L_je-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/L_je-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/L_slash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/L_slash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/L_slash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/M_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/M_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/M_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/M_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/N_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/N_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/N_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/N_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/N_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/N_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/N_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/N_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/N_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/N_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/N_commaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/N_commaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/N_commaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/N_je-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/N_je-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/N_je-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/N_je-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/N_tilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/N_tilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/N_tilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_E_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_E_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_E_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_E_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_barred-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_barred-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_barred-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_barred-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_barreddieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_barreddieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_barreddieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_barreddieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_breve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_breve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_breve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_breve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_circumflexacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflexacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_circumflexacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflexacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflexdotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_circumflexgrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflexgrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_circumflexgrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflexgrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflexhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_circumflextilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflextilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_circumflextilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_circumflextilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_dieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_dieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_dieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_dieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_dieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_dieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_dieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_dieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_dotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_dotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_dotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_dotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_grave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_grave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_grave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_hm.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_hm.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_hm.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_hm.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_hookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_hookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_hookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_hookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_horn.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_horn.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_horn.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_horn.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_hornacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_hornacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_hornacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_hornacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_horndotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_horndotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_horndotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_horndotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_horngrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_horngrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_horngrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_horngrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_hornhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_hornhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_hornhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_hornhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_horntilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_horntilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_horntilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_horntilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_hungarumlaut.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_hungarumlaut.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_macron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_macron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_macron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_macron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_mega.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_mega.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_mega.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_mega.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_slash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_slash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_slash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_slash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_slashacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_slashacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_slashacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_slashacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/O_tilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/O_tilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/O_tilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/O_tilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/P_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/P_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/P_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/P_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/P_alochka-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/P_alochka-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/P_alochka-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/P_alochka-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/P_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/P_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/P_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/P_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/P_edescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/P_edescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/P_edescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/P_edescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/P_emiddlehook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/P_emiddlehook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/P_emiddlehook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/P_emiddlehook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/P_i.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/P_i.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/P_i.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/P_i.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Q_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Q_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Q_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Q_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Q_a-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Q_a-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Q_a-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Q_a-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/R_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/R_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/R_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/R_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/R_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/R_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/R_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/R_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/R_commaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/R_commaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/R_commaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/R_commaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/R_eversedze-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/R_eversedze-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/R_eversedze-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/R_eversedze-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_cedilla.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_cedilla.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_cedilla.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_cedilla.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_chwa-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_chwa-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_chwa-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_chwa-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_chwa.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_chwa.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_chwa.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_chwa.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_chwadieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_chwadieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_chwadieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_chwadieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_commaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_commaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_commaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_commaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_emisoftsign-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_emisoftsign-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_emisoftsign-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_emisoftsign-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_ha-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_ha-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_ha-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_ha-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_hcha-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_hcha-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_hcha-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_hcha-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_hha-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_hha-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_hha-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_hha-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_hhadescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_hhadescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_hhadescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_hhadescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/S_oftsign-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/S_oftsign-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/S_oftsign-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/S_oftsign-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_bar.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_bar.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_bar.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_cedilla.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_cedilla.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_cedilla.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_cedilla.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_commaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_commaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_commaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_commaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_edescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_edescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_edescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_edescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_etse-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_etse-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_etse-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_etse-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_horn.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_horn.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_horn.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_horn.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_se-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_se-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_se-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_se-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/T_she-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/T_she-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/T_she-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/T_she-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_breve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_breve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_breve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_breve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_dieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_dieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_dieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_dieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_dieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_dieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_dieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_dieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_dotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_dotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_dotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_dotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_grave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_grave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_grave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_grave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_hookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_hookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_hookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_hookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_horn.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_horn.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_horn.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_horn.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_hornacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_hornacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_hornacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_hornacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_horndotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_horndotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_horndotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_horndotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_horngrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_horngrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_horngrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_horngrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_hornhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_hornhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_hornhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_hornhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_horntilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_horntilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_horntilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_horntilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_hungarumlaut-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_hungarumlaut-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_hungarumlaut-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_hungarumlaut-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_hungarumlaut.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_hungarumlaut.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_hungarumlaut.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_hungarumlaut.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_macron-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_macron-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_macron-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_macron-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_macron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_macron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_macron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_macron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_ogonek.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_ogonek.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_ogonek.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_ogonek.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_ring.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_ring.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_ring.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_ring.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_short-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_short-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_short-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_short-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_straight-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_straight-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_straight-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_straight-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_straightstroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_straightstroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_straightstroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_straightstroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/U_tilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/U_tilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/U_tilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/U_tilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/V_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/V_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/V_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/V_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/V_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/V_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/V_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/V_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/W_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/W_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/W_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/W_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/W_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/W_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/W_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/W_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/X_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/X_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/X_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/X_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_at-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_at-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_at-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_at-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_dieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_dieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_dieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_dieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_dotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_dotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_dotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_dotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_eru-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_eru-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_eru-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_eru-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_erudieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_erudieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_erudieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_erudieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_grave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_grave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_grave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_grave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_hookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_hookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_hookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_hookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_i-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_i-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_i-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_i-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_tilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_tilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_tilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_tilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Y_usbig-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Y_usbig-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Y_usbig-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Y_usbig-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_dotaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_dotaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_dotaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_dotaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_edescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_edescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_edescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_edescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_edieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_edieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_edieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_edieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_he-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_he-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_he-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_he-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_hebreve-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_hebreve-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_hebreve-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_hebreve-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_hedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_hedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_hedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_hedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/Z_hedieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/Z_hedieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/Z_hedieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/Z_hedieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/__descender-cy.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/__descender-cy.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/__descender-cy.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/__descender-cy.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/__descender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/__descender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/__descender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/__descender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/_notdef.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/_notdef.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/_notdef.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/a-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/a-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/a-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/a-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/a.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/a.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/a.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/a.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/aacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/aacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/aacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/aacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/abreve-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/abreve-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/abreve-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/abreve-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/abreve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/abreve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/abreve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/abreve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/abreveacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/abreveacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/abreveacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/abreveacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/abrevedotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/abrevedotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/abrevedotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/abrevedotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/abrevegrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/abrevegrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/abrevegrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/abrevegrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/abrevehookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/abrevehookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/abrevehookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/abrevehookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/abrevetilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/abrevetilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/abrevetilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/abrevetilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acircumflexacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflexacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acircumflexacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflexacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflexdotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acircumflexgrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflexgrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acircumflexgrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflexgrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acircumflexhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflexhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acircumflexhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflexhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acircumflextilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflextilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acircumflextilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acircumflextilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acutecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acutecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acutecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acutecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/acutecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/acutecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/acutecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/acutecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/adieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/adieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/adieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/adieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/adieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/adieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/adieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/adieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/adotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/adotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/adotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/adotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ae.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ae.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ae.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ae.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/agrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/agrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/agrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/agrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ahookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ahookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ahookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ahookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/aie-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/aie-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/aie-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/aie-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/amacron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/amacron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/amacron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/amacron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ampersand.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ampersand.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ampersand.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/angstrom.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/angstrom.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/angstrom.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/angstrom.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/aogonek.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/aogonek.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/aogonek.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/aogonek.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/apostrophemod.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/apostrophemod.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/apostrophemod.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/approxequal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/approxequal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/approxequal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/approxequal.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/approxequal.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/approxequal.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/approxequal.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/aring.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/aring.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/aring.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/aring.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/asciicircum.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/asciicircum.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/asciicircum.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/asciitilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/asciitilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/asciitilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/asterisk.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/asterisk.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/asterisk.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/at.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/at.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/at.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/at.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/atilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/atilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/atilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/atilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/b.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/b.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/b.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/b.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/backslash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/backslash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/backslash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/backslash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/bar.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/bar.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/bar.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/bar.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/be-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/be-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/be-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/be-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/be-cy.loclS_R_B_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/be-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/be-cy.loclS_R_B_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/be-cy.loclS_R_B_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/braceleft.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/braceleft.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/braceleft.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/braceright.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/braceright.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/braceright.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/braceright.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/bracketleft.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/bracketleft.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/bracketleft.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/bracketright.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/bracketright.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/bracketright.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/breve.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/breve.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/breve.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/breve.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/breve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/breve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/breve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/breve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb-cy.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb-cy.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb-cy.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb-cy.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb_acutecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_acutecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb_acutecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_acutecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb_acutecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_acutecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb_acutecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_acutecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb_gravecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_gravecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb_gravecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_gravecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb_gravecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_gravecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb_gravecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_gravecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb_hookabovecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb_hookabovecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_hookabovecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb_hookabovecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb_hookabovecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_hookabovecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb_tildecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_tildecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb_tildecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_tildecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brevecomb_tildecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_tildecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brevecomb_tildecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brevecomb_tildecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/brokenbar.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/brokenbar.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/brokenbar.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/brokenbar.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/bullet.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/bullet.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/bullet.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/bullet.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/bulletoperator.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/bulletoperator.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/bulletoperator.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/bulletoperator.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/c.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/c.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/c.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/c.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/cacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/cacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/cacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/cacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/caron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/caron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/caron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/caron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/caroncomb.alt.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/caroncomb.alt.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/caroncomb.alt.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/caroncomb.alt.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/caroncomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/caroncomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/caroncomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/caroncomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/caroncomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/caroncomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/caroncomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/caroncomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ccaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ccaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ccaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ccaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ccedilla.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ccedilla.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ccedilla.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ccedilla.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ccircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ccircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ccircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ccircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/cdotaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/cdotaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/cdotaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/cdotaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/cedilla.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/cedilla.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/cedilla.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/cedillacomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/cedillacomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/cedillacomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/cedillacomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/cedillacomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/cedillacomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/cedillacomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/cedillacomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/cent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/cent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/cent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/cent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/cent.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/cent.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/cent.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/cent.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/che-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/che-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/che-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/che-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/che-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/che-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/che-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/che-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/cheabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/cheabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/cheabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/cheabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/chedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/chedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/chedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/chedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/chedescenderabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/chedescenderabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/chedescenderabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/chedescenderabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/chedieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/chedieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/chedieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/chedieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/chekhakassian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/chekhakassian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/chekhakassian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/chekhakassian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/cheverticalstroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/cheverticalstroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/cheverticalstroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/cheverticalstroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflex.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflex.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflex.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflex.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb.case.i.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb.case.i.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb.case.i.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb.case.i.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_acutecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_acutecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_acutecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_acutecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_acutecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_acutecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_acutecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_acutecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_gravecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_gravecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_gravecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_gravecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_gravecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_gravecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_gravecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_gravecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_hookabovecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_hookabovecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_hookabovecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_tildecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_tildecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_tildecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_tildecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_tildecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_tildecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/circumflexcomb_tildecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/circumflexcomb_tildecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/colon.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/colon.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/colon.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/colon.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/colon.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/colon.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/colon.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/colon.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/colon.tf.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/colon.tf.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/colon.tf.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/colon.tf.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/colon.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/colon.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/colon.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/colon.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/comma.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/comma.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/comma.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/comma.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/comma.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/comma.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/comma.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/comma.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/commaaccentcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/commaaccentcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/commaaccentcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/commaaccentcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/commaturnedmod.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/commaturnedmod.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/commaturnedmod.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/commercialM_inusS_ign.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/commercialM_inusS_ign.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/commercialM_inusS_ign.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/commercialM_inusS_ign.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/contents.plist b/sources/archive/Lora-BoldItalic.ufo/glyphs/contents.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/contents.plist rename to sources/archive/Lora-BoldItalic.ufo/glyphs/contents.plist diff --git a/sources/Lora-BoldItalic.ufo/glyphs/copyright.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/copyright.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/copyright.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/copyright.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/currency.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/currency.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/currency.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/currency.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/currency.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/currency.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/currency.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/currency.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/d.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/d.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/d.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/d.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dagger.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dagger.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dagger.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dagger.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/daggerdbl.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/daggerdbl.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/daggerdbl.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dcroat.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dcroat.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dcroat.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dcroat.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/de-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/de-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/de-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/de-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/de-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/de-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/de-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/de-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/de-cy.loclS_R_B_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/de-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/de-cy.loclS_R_B_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/de-cy.loclS_R_B_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/degree.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/degree.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/degree.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/degree.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dieresiscomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dieresiscomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dieresiscomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dieresiscomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dieresiscomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dieresiscomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dieresiscomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dieresiscomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/divide.alt.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/divide.alt.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/divide.alt.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/divide.alt.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/divide.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/divide.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/divide.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/divide.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/divide.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/divide.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/divide.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/divide.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/divisionslash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/divisionslash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/divisionslash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/divisionslash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dje-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dje-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dje-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dje-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dollar.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dollar.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dollar.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dollar.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dollar.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dollar.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dollar.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dollar.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dotaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dotaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dotaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dotaccentcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dotaccentcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dotaccentcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dotaccentcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dotbelowcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dotbelowcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dotbelowcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dotbelowcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dze-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dze-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dze-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dze-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dzeabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dzeabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dzeabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/dzhe-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/dzhe-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/dzhe-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/dzhe-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/e-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/e-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/e-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/e-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/e.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/e.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/e.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/e.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/eacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/eacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/eacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/eacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ebreve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ebreve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ebreve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ebreve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ecaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ecaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ecaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ecaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ecircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ecircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ecircumflexacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflexacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ecircumflexacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflexacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflexdotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ecircumflexgrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflexgrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ecircumflexgrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflexgrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflexhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ecircumflextilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflextilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ecircumflextilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ecircumflextilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/edieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/edieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/edieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/edieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/edieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/edieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/edieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/edieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/edotaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/edotaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/edotaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/edotaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/edotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/edotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/edotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/edotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ef-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ef-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ef-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ef-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/egrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/egrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/egrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/egrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ehookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ehookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ehookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ehookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/eight.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/eight.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/eight.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/eight.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/eight.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/eight.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/eight.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/eight.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/el-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/el-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/el-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/el-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/el-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/el-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/el-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/el-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/eldescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/eldescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/eldescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/eldescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/elhook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/elhook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/elhook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/elhook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ellipsis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ellipsis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ellipsis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/eltail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/eltail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/eltail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/eltail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/em-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/em-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/em-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/em-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/emacron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/emacron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/emacron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/emacron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/emdash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/emdash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/emdash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/emdash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/emtail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/emtail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/emtail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/emtail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/en-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/en-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/en-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/en-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/endash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/endash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/endash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/endash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/endescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/endescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/endescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/endescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/eng.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/eng.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/eng.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/eng.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/enghe-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/enghe-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/enghe-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/enghe-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/enhook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/enhook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/enhook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/enhook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/enlefthook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/enlefthook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/enlefthook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/enlefthook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/entail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/entail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/entail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/entail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/eogonek.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/eogonek.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/eogonek.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/eogonek.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/equal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/equal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/equal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/equal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/equal.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/equal.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/equal.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/equal.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/er-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/er-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/er-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/er-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ereversed-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ereversed-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ereversed-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ereversed-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ertick-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ertick-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ertick-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ertick-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/es-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/es-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/es-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/es-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/esdescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/esdescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/esdescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/esdescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/esdescender-cy.loclB_S_H_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/esdescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/esdescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/esdescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/esdescender-cy.loclC_H_U_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/esdescender-cy.loclC_H_U_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/esdescender-cy.loclC_H_U_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/esdescender-cy.loclC_H_U_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/estimated.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/estimated.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/estimated.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/estimated.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/eth.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/eth.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/eth.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/eth.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/etilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/etilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/etilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/etilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/euro.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/euro.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/euro.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/euro.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/euro.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/euro.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/euro.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/euro.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/exclam.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/exclam.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/exclam.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/exclam.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/exclamdown.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/exclamdown.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/exclamdown.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ezh.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ezh.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ezh.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ezh.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ezhcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ezhcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ezhcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ezhcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/f.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/f.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/f.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/f.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/fi.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/fi.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/fi.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/fi.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/firsttonechinese.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/firsttonechinese.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/firsttonechinese.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/firsttonechinese.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/fita-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/fita-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/fita-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/fita-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/five.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/five.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/five.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/five.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/five.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/five.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/five.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/five.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/fl.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/fl.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/fl.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/fl.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/florin.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/florin.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/florin.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/florin.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/florin.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/florin.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/florin.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/florin.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/foundry.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/foundry.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/foundry.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/foundry.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/four.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/four.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/four.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/four.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/four.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/four.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/four.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/four.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/foursuperior.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/foursuperior.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/foursuperior.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/foursuperior.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/fraction.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/fraction.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/fraction.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/fraction.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/g.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/g.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/g.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/g.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gbreve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gbreve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gbreve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gbreve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gcircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gcircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gcircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gcircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gcommaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gcommaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gcommaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gcommaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ge-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ge-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ge-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ge-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ge-cy.loclS_R_B_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ge-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ge-cy.loclS_R_B_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ge-cy.loclS_R_B_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ge-cy.ss01.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ge-cy.ss01.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ge-cy.ss01.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ge-cy.ss01.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/germandbls.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/germandbls.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/germandbls.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/germandbls.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gestrokehook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gestrokehook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gestrokehook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gestrokehook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ghemiddlehook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ghemiddlehook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ghemiddlehook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ghemiddlehook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ghestroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ghestroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ghestroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ghestroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gheupturn-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gheupturn-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gheupturn-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gheupturn-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gje-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gje-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gje-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gje-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gje-cy.loclM_K_D_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gje-cy.loclM_K_D_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gje-cy.loclM_K_D_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gje-cy.loclM_K_D_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/grave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/grave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/grave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/grave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gravecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gravecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gravecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gravecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gravecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gravecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gravecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gravecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/greater.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/greater.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/greater.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/greater.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/greater.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/greater.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/greater.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/greater.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/greaterequal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/greaterequal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/greaterequal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/greaterequal.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/greaterequal.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/greaterequal.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/greaterequal.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/gstroke.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/gstroke.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/gstroke.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/gstroke.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/guillemetleft.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/guillemetleft.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/guillemetleft.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/guillemetright.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/guillemetright.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/guillemetright.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/guilsinglleft.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/guilsinglleft.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/guilsinglleft.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/guilsinglright.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/guilsinglright.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/guilsinglright.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/h.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/h.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/h.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/h.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ha-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ha-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ha-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ha-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/haabkhasian-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/haabkhasian-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/haabkhasian-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/haabkhasian-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hadescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hadescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hadescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hadescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hahook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hahook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hahook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hahook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hardsign-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hardsign-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hardsign-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hardsign-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hastroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hastroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hastroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hastroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hbar.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hbar.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hbar.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hbar.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hcircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hcircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hcircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hcircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hookabovecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hookabovecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hookabovecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hookabovecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/horncomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/horncomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/horncomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/horncomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hryvnia.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hryvnia.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hryvnia.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hryvnia.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hryvnia.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hryvnia.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hryvnia.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hryvnia.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hungarumlaut.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hungarumlaut.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hungarumlaut.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hungarumlaut.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hungarumlaut.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hungarumlaut.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hungarumlaut.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hungarumlautcomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hungarumlautcomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hungarumlautcomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hungarumlautcomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hungarumlautcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hungarumlautcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hungarumlautcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hungarumlautcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hyphen.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hyphen.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hyphen.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/hyphentwo.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/hyphentwo.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/hyphentwo.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/hyphentwo.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/i-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/i-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/i-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/i-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/i.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/i.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/i.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/i.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ia-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ia-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ia-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ia-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/iacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/iacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/iacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/iacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ibreve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ibreve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ibreve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ibreve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/icircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/icircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/icircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/icircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/idieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/idieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/idieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/idieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/idieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/idieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/idieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/idieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/idotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/idotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/idotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/idotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/idotless.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/idotless.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/idotless.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/idotless.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ie-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ie-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ie-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ie-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/iebreve-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/iebreve-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/iebreve-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/iebreve-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/iegrave-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/iegrave-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/iegrave-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/iegrave-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/igrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/igrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/igrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/igrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ihookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ihookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ihookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ihookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ii-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ii-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ii-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ii-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/iigrave-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/iigrave-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/iigrave-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/iigrave-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/iishort-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/iishort-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/iishort-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/iishort-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/iishorttail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/iishorttail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/iishorttail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/iishorttail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/imacron-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/imacron-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/imacron-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/imacron-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/imacron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/imacron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/imacron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/imacron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/increment.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/increment.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/increment.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/increment.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/infinity.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/infinity.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/infinity.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/infinity.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/integral.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/integral.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/integral.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/integral.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/io-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/io-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/io-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/io-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/iogonek.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/iogonek.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/iogonek.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/iogonek.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/itilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/itilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/itilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/itilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/iu-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/iu-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/iu-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/iu-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/iu-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/iu-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/iu-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/iu-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/izhitsa-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/izhitsa-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/izhitsa-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/izhitsa-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/j.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/j.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/j.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/j.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/jcircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/jcircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/jcircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/jcircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/jdotless.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/jdotless.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/jdotless.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/jdotless.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/je-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/je-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/je-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/je-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/k.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/k.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/k.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/k.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ka-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ka-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ka-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ka-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ka-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ka-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ka-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ka-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/kabashkir-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/kabashkir-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/kabashkir-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/kabashkir-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/kadescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/kadescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/kadescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/kadescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/kahook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/kahook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/kahook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/kahook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/kastroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/kastroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/kastroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/kastroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/kaverticalstroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/kaverticalstroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/kaverticalstroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/kaverticalstroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/kcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/kcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/kcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/kcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/kcommaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/kcommaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/kcommaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/kcommaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/kelvin.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/kelvin.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/kelvin.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/kelvin.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/kje-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/kje-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/kje-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/kje-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/l.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/l.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/l.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/l.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/lacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/lacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/lacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/lacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/layerinfo.plist b/sources/archive/Lora-BoldItalic.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/layerinfo.plist rename to sources/archive/Lora-BoldItalic.ufo/glyphs/layerinfo.plist diff --git a/sources/Lora-BoldItalic.ufo/glyphs/lcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/lcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/lcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/lcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/lcommaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/lcommaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/lcommaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/lcommaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ldot.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ldot.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ldot.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ldot.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/leftanglebracket-math.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/leftanglebracket-math.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/leftanglebracket-math.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/leftanglebracket-math.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/less.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/less.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/less.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/less.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/less.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/less.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/less.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/less.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/lessequal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/lessequal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/lessequal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/lessequal.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/lessequal.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/lessequal.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/lessequal.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/liraT_urkish.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/liraT_urkish.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/liraT_urkish.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/liraT_urkish.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/liraT_urkish.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/liraT_urkish.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/liraT_urkish.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/liraT_urkish.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/literS_ign.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/literS_ign.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/literS_ign.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/literS_ign.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/lje-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/lje-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/lje-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/lje-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/logicalnot.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/logicalnot.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/logicalnot.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/logicalnot.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/logicalnot.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/logicalnot.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/logicalnot.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/logicalnot.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/longs.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/longs.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/longs.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/longs.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/lozenge.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/lozenge.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/lozenge.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/lozenge.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/lslash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/lslash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/lslash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/lslash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/m.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/m.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/m.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/m.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/macron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/macron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/macron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/macron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/macroncomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/macroncomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/macroncomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/macroncomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/micro.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/micro.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/micro.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/micro.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/minus.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/minus.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/minus.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/minus.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/minus.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/minus.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/minus.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/minus.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/minute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/minute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/minute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/minute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/mu.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/mu.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/mu.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/mu.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/multiply.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/multiply.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/multiply.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/multiply.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/multiply.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/multiply.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/multiply.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/multiply.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/n.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/n.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/n.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/n.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/nacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/nacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/nacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/nacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/napostrophe.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/napostrophe.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/napostrophe.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/napostrophe.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/nbspace.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/nbspace.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/nbspace.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/nbspace.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ncaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ncaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ncaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ncaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ncommaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ncommaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ncommaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ncommaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/nine.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/nine.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/nine.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/nine.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/nine.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/nine.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/nine.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/nine.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/nje-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/nje-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/nje-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/nje-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/notequal.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/notequal.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/notequal.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/notequal.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/notequal.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/notequal.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/notequal.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/notequal.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ntilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ntilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ntilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ntilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/numbersign.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/numbersign.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/numbersign.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/numbersign.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/numbersign.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/numbersign.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/numbersign.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/numero.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/numero.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/numero.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/numero.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/o-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/o-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/o-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/o-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/o.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/o.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/o.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/o.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/oacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/oacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/oacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/oacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/obarred-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/obarred-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/obarred-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/obarred-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/obarreddieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/obarreddieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/obarreddieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/obarreddieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/obreve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/obreve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/obreve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/obreve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ocircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ocircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ocircumflexacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflexacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ocircumflexacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflexacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflexdotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ocircumflexgrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflexgrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ocircumflexgrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflexgrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflexhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ocircumflextilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflextilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ocircumflextilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ocircumflextilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/odieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/odieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/odieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/odieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/odieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/odieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/odieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/odieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/odotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/odotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/odotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/odotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/oe.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/oe.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/oe.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/oe.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ogonek.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ogonek.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ogonek.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ogonekcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ogonekcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ogonekcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ogonekcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ograve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ograve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ograve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ograve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ohookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ohookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ohookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ohookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ohorn.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ohorn.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ohorn.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ohorn.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ohornacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ohornacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ohornacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ohornacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ohorndotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ohorndotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ohorndotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ohorndotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ohorngrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ohorngrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ohorngrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ohorngrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ohornhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ohornhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ohornhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ohornhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ohorntilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ohorntilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ohorntilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ohorntilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ohungarumlaut.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ohungarumlaut.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ohungarumlaut.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ohungarumlaut.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/omacron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/omacron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/omacron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/omacron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/one.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/one.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/one.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/one.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/one.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/one.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/one.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/one.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/onehalf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/onehalf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/onehalf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/onequarter.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/onequarter.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/onequarter.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/onesuperior.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/onesuperior.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/onesuperior.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/onesuperior.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ordfeminine.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ordfeminine.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ordfeminine.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ordmasculine.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ordmasculine.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ordmasculine.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/oslash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/oslash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/oslash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/oslash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/oslashacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/oslashacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/oslashacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/oslashacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/otilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/otilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/otilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/otilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/p.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/p.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/p.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/p.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/palochka-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/palochka-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/palochka-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/palochka-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/paragraph.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/paragraph.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/paragraph.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/parenleft.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/parenleft.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/parenleft.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/parenright.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/parenright.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/parenright.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/parenright.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/partialdiff.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/partialdiff.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/partialdiff.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/partialdiff.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/pe-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/pe-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/pe-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/pe-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/pe-cy.loclS_R_B_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/pe-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/pe-cy.loclS_R_B_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/pe-cy.loclS_R_B_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/pedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/pedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/pedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/pedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/pemiddlehook-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/pemiddlehook-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/pemiddlehook-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/pemiddlehook-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/percent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/percent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/percent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/percent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/percent.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/percent.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/percent.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/percent.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/period.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/period.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/period.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/period.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/period.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/period.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/period.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/period.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/periodcentered.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/periodcentered.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/periodcentered.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/periodcentered.loclC_A_T_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/periodcentered.loclC_A_T_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/periodcentered.loclC_A_T_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/periodcentered.loclC_A_T_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/perthousand.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/perthousand.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/perthousand.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/perthousand.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/pi.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/pi.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/pi.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/pi.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/plus.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/plus.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/plus.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/plus.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/plus.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/plus.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/plus.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/plus.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/plusminus.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/plusminus.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/plusminus.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/plusminus.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/plusminus.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/plusminus.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/plusminus.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/product.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/product.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/product.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/product.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/q.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/q.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/q.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/q.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/qa-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/qa-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/qa-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/qa-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/question.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/question.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/question.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/question.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/questiondown.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/questiondown.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/questiondown.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/quotedbl.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/quotedbl.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/quotedbl.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/quotedblbase.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/quotedblbase.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/quotedblbase.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/quotedblleft.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/quotedblleft.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/quotedblleft.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/quotedblright.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/quotedblright.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/quotedblright.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/quoteleft.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/quoteleft.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/quoteleft.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/quoteright.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/quoteright.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/quoteright.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/quotesinglbase.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/quotesinglbase.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/quotesinglbase.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/quotesingle.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/quotesingle.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/quotesingle.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/r.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/r.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/r.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/r.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/racute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/racute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/racute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/racute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/radical.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/radical.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/radical.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/radical.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/rcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/rcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/rcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/rcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/rcommaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/rcommaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/rcommaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/rcommaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/registered.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/registered.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/registered.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/registered.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/reversedze-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/reversedze-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/reversedze-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/reversedze-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/rightanglebracket-math.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/rightanglebracket-math.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/rightanglebracket-math.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/rightanglebracket-math.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ring.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ring.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ring.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ring.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ringcomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ringcomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ringcomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ringcomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ringcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ringcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ringcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ringcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ruble.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ruble.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ruble.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ruble.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ruble.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ruble.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ruble.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ruble.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/s.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/s.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/s.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/s.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/sacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/sacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/sacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/sacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/scaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/scaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/scaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/scaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/scedilla.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/scedilla.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/scedilla.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/scedilla.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/schwa-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/schwa-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/schwa-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/schwa-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/schwa.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/schwa.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/schwa.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/schwa.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/schwadieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/schwadieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/schwadieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/schwadieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/scircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/scircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/scircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/scircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/scommaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/scommaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/scommaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/scommaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/second.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/second.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/second.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/second.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/section.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/section.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/section.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/section.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/section.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/section.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/section.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/section.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/semicolon.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/semicolon.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/semicolon.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/semicolon.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/semicolon.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/semicolon.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/semicolon.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/semisoftsign-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/semisoftsign-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/semisoftsign-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/semisoftsign-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/seven.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/seven.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/seven.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/seven.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/seven.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/seven.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/seven.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/seven.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/sha-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/sha-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/sha-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/sha-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/shcha-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/shcha-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/shcha-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/shcha-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/shha-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/shha-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/shha-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/shha-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/shhadescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/shhadescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/shhadescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/shhadescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/six.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/six.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/six.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/six.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/six.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/six.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/six.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/six.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/slash.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/slash.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/slash.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/slash.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/softhyphen.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/softhyphen.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/softhyphen.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/softhyphen.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/softsign-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/softsign-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/softsign-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/softsign-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/space.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/space.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/space.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/space.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/space.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/space.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/space.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/space.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/sterling.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/sterling.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/sterling.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/sterling.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/sterling.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/sterling.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/sterling.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/sterling.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/strokelongcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/strokelongcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/strokelongcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/strokelongcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/strokeshortcomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/strokeshortcomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/strokeshortcomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/strokeshortcomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/summation.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/summation.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/summation.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/summation.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/t.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/t.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/t.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/t.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tail-cy.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tail-cy.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tail-cy.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tail-cy.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tail-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tail-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tail-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tail-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tbar.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tbar.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tbar.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tbar.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tcedilla.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tcedilla.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tcedilla.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tcedilla.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tcommaaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tcommaaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tcommaaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tcommaaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/te-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/te-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/te-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/te-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/te-cy.loclS_R_B_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/te-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/te-cy.loclS_R_B_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/te-cy.loclS_R_B_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tenge.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tenge.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tenge.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tenge.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tenge.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tenge.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tenge.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tenge.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tetse-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tetse-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tetse-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tetse-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/thorn.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/thorn.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/thorn.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/thorn.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/three.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/three.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/three.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/three.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/three.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/three.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/three.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/three.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/threequarters.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/threequarters.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/threequarters.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/threesuperior.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/threesuperior.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/threesuperior.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/threesuperior.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tildecomb.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tildecomb.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tildecomb.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tildecomb.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tildecomb.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tildecomb.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tildecomb.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tildecomb.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/trademark.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/trademark.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/trademark.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/trademark.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tse-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tse-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tse-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tse-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tshe-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tshe-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tshe-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tshe-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tugrik.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tugrik.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tugrik.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tugrik.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/tugrik.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/tugrik.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/tugrik.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/tugrik.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/two.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/two.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/two.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/two.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/two.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/two.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/two.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/two.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/twosuperior.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/twosuperior.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/twosuperior.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/twosuperior.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/u-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/u-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/u-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/u-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/u.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/u.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/u.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/u.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ubreve.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ubreve.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ubreve.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ubreve.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ucaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ucaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ucaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ucaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ucircumflex.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ucircumflex.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ucircumflex.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ucircumflex.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/udieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/udieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/udieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/udieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/udieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/udieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/udieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/udieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/udotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/udotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/udotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/udotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ugrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ugrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ugrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ugrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uhorn.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uhorn.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uhorn.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uhorn.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uhornacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uhornacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uhornacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uhornacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uhorndotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uhorndotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uhorndotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uhorndotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uhorngrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uhorngrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uhorngrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uhorngrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uhornhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uhornhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uhornhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uhornhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uhorntilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uhorntilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uhorntilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uhorntilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uhungarumlaut-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uhungarumlaut-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uhungarumlaut-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uhungarumlaut-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uhungarumlaut.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uhungarumlaut.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uhungarumlaut.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uhungarumlaut.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/umacron-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/umacron-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/umacron-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/umacron-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/umacron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/umacron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/umacron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/umacron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/underscore.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/underscore.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/underscore.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/underscore.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uni0000.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uni0000.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uni0000.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uni0000.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uni1C_81.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uni1C_81.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uni1C_81.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uni1C_81.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uni1C_85.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uni1C_85.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uni1C_85.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uni1C_85.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uniE_F_F_D_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uniE_F_F_D_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uniE_F_F_D_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uniE_F_F_D_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uogonek.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uogonek.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uogonek.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uogonek.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/uring.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/uring.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/uring.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/uring.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ushort-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ushort-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ushort-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ushort-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ustraight-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ustraight-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ustraight-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ustraight-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ustraightstroke-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ustraightstroke-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ustraightstroke-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ustraightstroke-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/utilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/utilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/utilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/utilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/v.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/v.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/v.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/v.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ve-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ve-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ve-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ve-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ve-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ve-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ve-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ve-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/verticalbar-cy.case.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/verticalbar-cy.case.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/verticalbar-cy.case.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/verticalbar-cy.case.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/verticalbar-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/verticalbar-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/verticalbar-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/verticalbar-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/w.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/w.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/w.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/w.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/we-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/we-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/we-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/we-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/x.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/x.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/x.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/x.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/y.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/y.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/y.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/y.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/yacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/yacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/yacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/yacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/yat-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/yat-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/yat-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/yat-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ydieresis.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ydieresis.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ydieresis.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ydieresis.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ydotbelow.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ydotbelow.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ydotbelow.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ydotbelow.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/yen.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/yen.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/yen.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/yen.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/yen.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/yen.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/yen.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/yen.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/yeru-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/yeru-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/yeru-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/yeru-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/yerudieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/yerudieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/yerudieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/yerudieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ygrave.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ygrave.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ygrave.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ygrave.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/yhookabove.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/yhookabove.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/yhookabove.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/yhookabove.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/yi-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/yi-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/yi-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/yi-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ytilde.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ytilde.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ytilde.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ytilde.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/yusbig-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/yusbig-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/yusbig-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/yusbig-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/z.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/z.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/z.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/z.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zacute.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zacute.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zacute.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zacute.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zcaron.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zcaron.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zcaron.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zcaron.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zdotaccent.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zdotaccent.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zdotaccent.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zdotaccent.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ze-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ze-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ze-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ze-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/ze-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/ze-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/ze-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/ze-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zedescender-cy.loclB_S_H_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zedescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zedescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zedescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zedieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zedieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zedieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zedieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zero.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zero.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zero.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zero.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zero.tf.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zero.tf.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zero.tf.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zero.tf.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zhe-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zhe-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zhe-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zhe-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zhe-cy.loclB_G_R_.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zhe-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zhe-cy.loclB_G_R_.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zhe-cy.loclB_G_R_.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zhebreve-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zhebreve-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zhebreve-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zhebreve-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zhedescender-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zhedescender-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zhedescender-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zhedescender-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/glyphs/zhedieresis-cy.glif b/sources/archive/Lora-BoldItalic.ufo/glyphs/zhedieresis-cy.glif similarity index 100% rename from sources/Lora-BoldItalic.ufo/glyphs/zhedieresis-cy.glif rename to sources/archive/Lora-BoldItalic.ufo/glyphs/zhedieresis-cy.glif diff --git a/sources/Lora-BoldItalic.ufo/groups.plist b/sources/archive/Lora-BoldItalic.ufo/groups.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/groups.plist rename to sources/archive/Lora-BoldItalic.ufo/groups.plist diff --git a/sources/Lora-BoldItalic.ufo/kerning.plist b/sources/archive/Lora-BoldItalic.ufo/kerning.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/kerning.plist rename to sources/archive/Lora-BoldItalic.ufo/kerning.plist diff --git a/sources/Lora-BoldItalic.ufo/layercontents.plist b/sources/archive/Lora-BoldItalic.ufo/layercontents.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/layercontents.plist rename to sources/archive/Lora-BoldItalic.ufo/layercontents.plist diff --git a/sources/Lora-BoldItalic.ufo/lib.plist b/sources/archive/Lora-BoldItalic.ufo/lib.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/lib.plist rename to sources/archive/Lora-BoldItalic.ufo/lib.plist diff --git a/sources/Lora-BoldItalic.ufo/metainfo.plist b/sources/archive/Lora-BoldItalic.ufo/metainfo.plist similarity index 100% rename from sources/Lora-BoldItalic.ufo/metainfo.plist rename to sources/archive/Lora-BoldItalic.ufo/metainfo.plist diff --git a/sources/Lora-Italic.designspace b/sources/archive/Lora-Italic.designspace similarity index 100% rename from sources/Lora-Italic.designspace rename to sources/archive/Lora-Italic.designspace diff --git a/sources/Lora-Italic.ufo/features.fea b/sources/archive/Lora-Italic.ufo/features.fea similarity index 100% rename from sources/Lora-Italic.ufo/features.fea rename to sources/archive/Lora-Italic.ufo/features.fea diff --git a/sources/Lora-Italic.ufo/fontinfo.plist b/sources/archive/Lora-Italic.ufo/fontinfo.plist similarity index 100% rename from sources/Lora-Italic.ufo/fontinfo.plist rename to sources/archive/Lora-Italic.ufo/fontinfo.plist diff --git a/sources/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/contents.plist b/sources/archive/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/contents.plist similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/contents.plist rename to sources/archive/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/contents.plist diff --git a/sources/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/layerinfo.plist b/sources/archive/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/layerinfo.plist similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/layerinfo.plist rename to sources/archive/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/layerinfo.plist diff --git a/sources/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/leftanglebracket-math.glif b/sources/archive/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/leftanglebracket-math.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/leftanglebracket-math.glif rename to sources/archive/Lora-Italic.ufo/glyphs.O_ct 27 17, 20_19/leftanglebracket-math.glif diff --git a/sources/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/contents.plist b/sources/archive/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/contents.plist similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/contents.plist rename to sources/archive/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/contents.plist diff --git a/sources/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/enghe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/enghe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/enghe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/enghe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/layerinfo.plist b/sources/archive/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/layerinfo.plist similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/layerinfo.plist rename to sources/archive/Lora-Italic.ufo/glyphs.S_ep 13 16, 17_31/layerinfo.plist diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/C_cedilla.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/C_cedilla.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/C_cedilla.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/C_cedilla.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/C_hekhakassian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/C_hekhakassian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/C_hekhakassian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/C_hekhakassian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.699.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.699.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.699.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.699.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/E_f-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/E_f-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/E_f-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/E_f-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/E_lhook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/E_lhook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/E_lhook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/E_lhook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/E_nL_eftH_ook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/E_nL_eftH_ook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/E_nL_eftH_ook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/E_nL_eftH_ook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/E_ng.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/E_ng.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/E_ng.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/E_ng.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/E_nhook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/E_nhook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/E_nhook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/E_nhook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/E_reversed-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/E_reversed-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/E_reversed-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/E_reversed-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/E_th.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/E_th.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/E_th.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/E_th.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/E_zh.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/E_zh.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/E_zh.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/E_zh.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/F_ita-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/F_ita-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/F_ita-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/F_ita-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/G_estrokehook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/G_estrokehook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/G_estrokehook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/G_estrokehook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/G_hemiddlehook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/G_hemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/G_hemiddlehook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/G_hemiddlehook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/H_aabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/H_aabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/H_aabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/H_aabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/H_adescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/H_adescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/H_adescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/H_adescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/H_ahook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/H_ahook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/H_ahook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/H_ahook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/H_bar.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/H_bar.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/H_bar.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/H_bar.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/I_a-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/I_a-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/I_a-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/I_a-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/I_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/I_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/I_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/I_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/I_zhitsa-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/I_zhitsa-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/I_zhitsa-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/I_zhitsa-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/K_.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/K_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/K_.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/K_.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/K_adescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/K_adescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/K_adescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/K_adescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/K_ahook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/K_ahook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/K_ahook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/K_ahook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/K_averticalstroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/K_averticalstroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/K_averticalstroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/K_averticalstroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/L_slash.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/L_slash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/L_slash.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/L_slash.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/Y_at-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/Y_at-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/Y_at-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/Y_at-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/Y_usbig-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/Y_usbig-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/Y_usbig-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/Y_usbig-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/Z_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/Z_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/Z_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/Z_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/Z_hedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/Z_hedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/Z_hedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/Z_hedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/breve.case.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/breve.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/breve.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/breve.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/brevecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/brevecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/brevecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/brevecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/brevecomb_hookabovecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/cheabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/cheabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/cheabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/cheabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/chedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/chedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/chedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/chedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/circumflexcomb.case.i.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/circumflexcomb.case.i.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/circumflexcomb.case.i.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/circumflexcomb.case.i.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/circumflexcomb_hookabovecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/commercialM_inusS_ign.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/commercialM_inusS_ign.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/commercialM_inusS_ign.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/commercialM_inusS_ign.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/contents.plist b/sources/archive/Lora-Italic.ufo/glyphs.public.background/contents.plist similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/contents.plist rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/contents.plist diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/divide.alt.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/divide.alt.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/divide.alt.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/divide.alt.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/divide.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/divide.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/divide.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/divide.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/dje-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/dje-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/dje-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/dje-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/elhook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/elhook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/elhook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/elhook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/emdash.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/emdash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/emdash.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/emdash.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/eng.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/eng.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/eng.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/eng.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/enghe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/enghe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/enghe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/enghe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/enhook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/enhook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/enhook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/enhook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/enlefthook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/enlefthook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/enlefthook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/enlefthook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/equal.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/equal.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/equal.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/equal.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/eth.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/eth.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/eth.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/eth.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/ezh.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/ezh.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/ezh.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/ezh.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/fita-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/fita-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/fita-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/fita-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/ge-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/ge-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/ge-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/ge-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/gedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/gedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/gedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/gedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/gestrokehook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/gestrokehook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/gestrokehook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/gestrokehook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/haabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/haabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/haabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/haabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/hadescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/hadescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/hadescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/hadescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/hookabovecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/hookabovecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/hookabovecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/hookabovecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/hryvnia.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/hryvnia.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/hryvnia.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/hryvnia.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/hungarumlaut.case.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/hungarumlaut.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/hungarumlaut.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/hungarumlaut.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/iu-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/iu-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/iu-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/iu-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/izhitsa-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/izhitsa-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/izhitsa-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/izhitsa-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/jdotless.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/jdotless.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/jdotless.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/jdotless.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/kahook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/kahook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/kahook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/kahook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/layerinfo.plist b/sources/archive/Lora-Italic.ufo/glyphs.public.background/layerinfo.plist similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/layerinfo.plist rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/layerinfo.plist diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/leftanglebracket-math.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/leftanglebracket-math.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/leftanglebracket-math.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/leftanglebracket-math.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/liraT_urkish.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/liraT_urkish.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/liraT_urkish.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/liraT_urkish.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/lslash.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/lslash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/lslash.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/lslash.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/minute.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/minute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/minute.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/minute.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/n.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/n.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/n.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/n.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/notequal.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/notequal.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/notequal.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/notequal.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/pedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/pedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/pedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/pedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/plusminus.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/plusminus.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/plusminus.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/plusminus.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/reversedze-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/reversedze-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/reversedze-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/reversedze-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/schwa-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/schwa-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/schwa-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/schwa-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/schwa.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/schwa.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/schwa.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/schwa.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/semisoftsign-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/semisoftsign-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/semisoftsign-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/semisoftsign-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/shhadescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/shhadescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/shhadescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/shhadescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/tail-cy.case.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/tail-cy.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/tail-cy.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/tail-cy.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/tedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/tedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/tedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/tedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/tenge.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/tenge.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/tenge.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/tenge.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/tshe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/tshe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/tshe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/tshe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/ustraightstroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/ustraightstroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/ustraightstroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/ustraightstroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs.public.background/zhedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs.public.background/zhedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs.public.background/zhedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs.public.background/zhedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_E_.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_E_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_E_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_breve-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_breve-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_breve-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_breve-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_breve.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_breve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_breve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_breveacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_breveacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_breveacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_brevedotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_brevedotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_brevegrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_brevegrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_brevegrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_brevehookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_brevehookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_brevetilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_brevetilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_brevetilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_circumflexacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_circumflexacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_circumflexdotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_circumflexgrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_circumflexgrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_circumflexhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_circumflexhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_circumflextilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_circumflextilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_dieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_dieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_dieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_dieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_dieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_dieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_dieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_dotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_dotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_dotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_grave.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_grave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_grave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_hookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_hookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_hookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_ie-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_ie-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_ie-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_ie-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_macron.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_macron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_macron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_ogonek.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_ogonek.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_ogonek.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_ring.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_ring.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_ring.glif diff --git a/sources/Lora-Italic.ufo/glyphs/A_tilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/A_tilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/A_tilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/B_.glif b/sources/archive/Lora-Italic.ufo/glyphs/B_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/B_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/B_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/B_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/B_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/B_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/B_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_cedilla.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_cedilla.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_cedilla.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_dotaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_dotaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_dotaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_he-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_he-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_he-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_he-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_heabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_heabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_heabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_heabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_hedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_hedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_hedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_hedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_hedescenderabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_hedescenderabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_hedescenderabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_hedescenderabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_hedieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_hedieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_hedieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_hedieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_hekhakassian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_hekhakassian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_hekhakassian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_hekhakassian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/C_heverticalstroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/C_heverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/C_heverticalstroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/C_heverticalstroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_croat.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_croat.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_croat.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_e-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_e-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_e-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_e-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_elta.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_elta.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_elta.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_elta.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.699.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.699.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.699.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.699.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_je-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_je-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_je-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_je-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_ze-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_ze-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_ze-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_ze-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_zeabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_zeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_zeabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_zeabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/D_zhe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/D_zhe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/D_zhe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/D_zhe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_breve.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_breve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_breve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_circumflexacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_circumflexacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_circumflexdotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_circumflexgrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_circumflexgrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_circumflexhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_circumflexhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_circumflextilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_circumflextilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_dieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_dieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_dieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_dieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_dieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_dieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_dieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_dotaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_dotaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_dotaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_dotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_dotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_dotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_f-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_f-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_f-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_f-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_f-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_f-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_f-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_f-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_grave.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_grave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_grave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_hookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_hookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_hookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_l-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_l-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_l-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_l-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_l-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_l-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_l-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_l-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_ldescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_ldescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_ldescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_ldescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_lhook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_lhook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_lhook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_lhook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_ltail-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_ltail-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_ltail-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_ltail-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_m-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_m-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_m-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_m-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_macron.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_macron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_macron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_mtail-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_mtail-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_mtail-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_mtail-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_n-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_n-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_n-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_n-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_nL_eftH_ook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_nL_eftH_ook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_nL_eftH_ook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_nL_eftH_ook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_ndescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_ndescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_ndescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_ndescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_ng.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_ng.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_ng.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_nghe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_nghe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_nghe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_nghe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_nhook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_nhook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_nhook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_nhook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_ntail-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_ntail-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_ntail-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_ntail-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_ogonek.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_ogonek.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_ogonek.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_r-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_r-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_r-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_r-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_reversed-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_reversed-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_reversed-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_reversed-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_rtick-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_rtick-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_rtick-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_rtick-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_s-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_s-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_s-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_s-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_sdescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_sdescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_sdescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_sdescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_th.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_th.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_th.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_th.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_tilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_tilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_tilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_zh.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_zh.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_zh.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_zh.glif diff --git a/sources/Lora-Italic.ufo/glyphs/E_zhcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/E_zhcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/E_zhcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/E_zhcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/F_.glif b/sources/archive/Lora-Italic.ufo/glyphs/F_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/F_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/F_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/F_ita-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/F_ita-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/F_ita-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/F_ita-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_amma.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_amma.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_amma.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_amma.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_breve.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_breve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_breve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_commaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_commaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_commaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_edescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_edescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_edescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_edescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_ermandbls.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_ermandbls.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_ermandbls.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_ermandbls.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_estrokehook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_estrokehook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_estrokehook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_estrokehook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_hemiddlehook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_hemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_hemiddlehook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_hemiddlehook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_hestroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_hestroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_hestroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_hestroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_heupturn-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_heupturn-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_heupturn-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_heupturn-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_je-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_je-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_je-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_je-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/G_stroke.glif b/sources/archive/Lora-Italic.ufo/glyphs/G_stroke.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/G_stroke.glif rename to sources/archive/Lora-Italic.ufo/glyphs/G_stroke.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_a-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_a-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_a-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_a-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_aabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_aabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_aabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_aabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_adescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_adescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_adescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_adescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_ahook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_ahook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_ahook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_ahook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_ardsign-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_ardsign-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_ardsign-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_ardsign-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_astroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_astroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_astroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_astroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_bar.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_bar.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_bar.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/H_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/H_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/H_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_a-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_a-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_a-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_a-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_breve.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_breve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_breve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_dieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_dieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_dieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_dieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_dieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_dieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_dieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_dotaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_dotaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_dotaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_dotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_dotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_dotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_ebreve-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_ebreve-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_ebreve-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_ebreve-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_egrave-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_egrave-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_egrave-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_egrave-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_grave.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_grave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_grave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_hookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_hookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_hookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_i-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_i-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_i-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_i-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_igrave-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_igrave-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_igrave-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_igrave-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_ishort-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_ishort-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_ishort-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_ishort-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_ishorttail-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_ishorttail-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_ishorttail-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_ishorttail-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_macron-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_macron-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_macron-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_macron-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_macron.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_macron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_macron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_o-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_o-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_o-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_o-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_ogonek.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_ogonek.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_ogonek.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_tilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_tilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_tilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_u-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_u-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_u-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_u-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/I_zhitsa-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/I_zhitsa-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/I_zhitsa-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/I_zhitsa-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/J_.glif b/sources/archive/Lora-Italic.ufo/glyphs/J_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/J_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/J_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/J_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/J_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/J_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/J_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/J_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/J_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/J_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_a-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_a-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_a-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_a-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_abashkir-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_abashkir-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_abashkir-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_abashkir-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_adescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_adescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_adescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_adescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_ahook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_ahook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_ahook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_ahook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_astroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_astroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_astroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_astroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_averticalstroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_averticalstroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_averticalstroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_averticalstroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_commaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_commaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_commaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/K_je-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/K_je-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/K_je-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/K_je-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/L_.glif b/sources/archive/Lora-Italic.ufo/glyphs/L_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/L_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/L_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/L_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/L_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/L_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/L_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/L_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/L_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/L_commaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/L_commaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/L_commaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/L_dot.glif b/sources/archive/Lora-Italic.ufo/glyphs/L_dot.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/L_dot.glif rename to sources/archive/Lora-Italic.ufo/glyphs/L_dot.glif diff --git a/sources/Lora-Italic.ufo/glyphs/L_je-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/L_je-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/L_je-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/L_je-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/L_slash.glif b/sources/archive/Lora-Italic.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/L_slash.glif rename to sources/archive/Lora-Italic.ufo/glyphs/L_slash.glif diff --git a/sources/Lora-Italic.ufo/glyphs/M_.glif b/sources/archive/Lora-Italic.ufo/glyphs/M_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/M_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/M_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/N_.glif b/sources/archive/Lora-Italic.ufo/glyphs/N_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/N_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/N_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/N_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/N_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/N_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/N_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/N_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/N_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/N_commaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/N_commaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/N_commaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/N_je-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/N_je-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/N_je-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/N_je-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/N_tilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/N_tilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/N_tilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_E_.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_E_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_E_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_E_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_barred-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_barred-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_barred-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_barred-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_barreddieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_barreddieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_barreddieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_barreddieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_breve.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_breve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_breve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_breve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_circumflexacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_circumflexacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_circumflexacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_circumflexacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_circumflexdotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_circumflexdotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_circumflexdotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_circumflexgrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_circumflexgrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_circumflexgrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_circumflexgrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_circumflexhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_circumflexhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_circumflexhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_circumflexhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_circumflextilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_circumflextilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_circumflextilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_circumflextilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_dieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_dieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_dieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_dieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_dieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_dieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_dieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_dieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_dotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_dotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_dotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_dotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_grave.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_grave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_grave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_hm.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_hm.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_hm.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_hm.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_hookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_hookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_hookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_hookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_horn.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_horn.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_horn.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_horn.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_hornacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_hornacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_hornacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_hornacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_horndotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_horndotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_horndotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_horndotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_horngrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_horngrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_horngrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_horngrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_hornhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_hornhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_hornhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_hornhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_horntilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_horntilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_horntilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_horntilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_hungarumlaut.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_hungarumlaut.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_macron.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_macron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_macron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_macron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_mega.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_mega.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_mega.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_mega.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_slash.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_slash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_slash.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_slash.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_slashacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_slashacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_slashacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_slashacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/O_tilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/O_tilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/O_tilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/O_tilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/P_.glif b/sources/archive/Lora-Italic.ufo/glyphs/P_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/P_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/P_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/P_alochka-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/P_alochka-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/P_alochka-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/P_alochka-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/P_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/P_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/P_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/P_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/P_edescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/P_edescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/P_edescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/P_edescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/P_emiddlehook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/P_emiddlehook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/P_emiddlehook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/P_emiddlehook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/P_i.glif b/sources/archive/Lora-Italic.ufo/glyphs/P_i.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/P_i.glif rename to sources/archive/Lora-Italic.ufo/glyphs/P_i.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Q_.glif b/sources/archive/Lora-Italic.ufo/glyphs/Q_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Q_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Q_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Q_a-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Q_a-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Q_a-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Q_a-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/R_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/R_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/R_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/R_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/R_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/R_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/R_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/R_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/R_commaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/R_commaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/R_commaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/R_commaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/R_eversedze-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/R_eversedze-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/R_eversedze-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/R_eversedze-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_cedilla.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_cedilla.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_cedilla.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_cedilla.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_chwa-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_chwa-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_chwa-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_chwa-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_chwa.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_chwa.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_chwa.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_chwa.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_chwadieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_chwadieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_chwadieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_chwadieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_commaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_commaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_commaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_commaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_emisoftsign-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_emisoftsign-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_emisoftsign-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_emisoftsign-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_ha-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_ha-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_ha-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_ha-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_hcha-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_hcha-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_hcha-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_hcha-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_hha-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_hha-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_hha-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_hha-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_hhadescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_hhadescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_hhadescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_hhadescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/S_oftsign-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/S_oftsign-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/S_oftsign-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/S_oftsign-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_bar.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_bar.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_bar.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_cedilla.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_cedilla.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_cedilla.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_cedilla.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_commaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_commaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_commaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_commaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_edescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_edescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_edescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_edescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_etse-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_etse-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_etse-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_etse-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_horn.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_horn.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_horn.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_horn.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_se-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_se-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_se-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_se-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/T_she-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/T_she-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/T_she-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/T_she-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_breve.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_breve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_breve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_breve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_dieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_dieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_dieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_dieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_dieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_dieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_dieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_dieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_dotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_dotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_dotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_dotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_grave.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_grave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_grave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_grave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_hookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_hookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_hookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_hookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_horn.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_horn.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_horn.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_horn.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_hornacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_hornacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_hornacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_hornacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_horndotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_horndotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_horndotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_horndotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_horngrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_horngrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_horngrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_horngrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_hornhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_hornhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_hornhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_hornhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_horntilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_horntilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_horntilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_horntilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_hungarumlaut-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_hungarumlaut-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_hungarumlaut-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_hungarumlaut-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_hungarumlaut.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_hungarumlaut.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_hungarumlaut.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_hungarumlaut.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_macron-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_macron-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_macron-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_macron-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_macron.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_macron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_macron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_macron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_ogonek.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_ogonek.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_ogonek.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_ogonek.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_ring.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_ring.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_ring.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_ring.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_short-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_short-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_short-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_short-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_straight-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_straight-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_straight-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_straight-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_straightstroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_straightstroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_straightstroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_straightstroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/U_tilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/U_tilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/U_tilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/U_tilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/V_.glif b/sources/archive/Lora-Italic.ufo/glyphs/V_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/V_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/V_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/V_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/V_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/V_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/V_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/W_.glif b/sources/archive/Lora-Italic.ufo/glyphs/W_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/W_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/W_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/W_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/W_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/W_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/W_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/X_.glif b/sources/archive/Lora-Italic.ufo/glyphs/X_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/X_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/X_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_at-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_at-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_at-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_at-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_dieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_dieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_dieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_dieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_dotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_dotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_dotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_dotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_eru-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_eru-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_eru-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_eru-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_erudieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_erudieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_erudieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_erudieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_grave.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_grave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_grave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_grave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_hookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_hookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_hookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_hookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_i-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_i-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_i-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_i-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_tilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_tilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_tilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_tilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Y_usbig-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Y_usbig-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Y_usbig-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Y_usbig-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_dotaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_dotaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_dotaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_dotaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_edescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_edescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_edescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_edescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_edieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_edieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_edieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_edieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_he-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_he-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_he-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_he-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_hebreve-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_hebreve-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_hebreve-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_hebreve-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_hedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_hedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_hedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_hedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/Z_hedieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/Z_hedieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/Z_hedieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/Z_hedieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/__descender-cy.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/__descender-cy.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/__descender-cy.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/__descender-cy.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/__descender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/__descender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/__descender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/__descender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/_notdef.glif b/sources/archive/Lora-Italic.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/_notdef.glif rename to sources/archive/Lora-Italic.ufo/glyphs/_notdef.glif diff --git a/sources/Lora-Italic.ufo/glyphs/a-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/a-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/a-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/a-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/a.glif b/sources/archive/Lora-Italic.ufo/glyphs/a.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/a.glif rename to sources/archive/Lora-Italic.ufo/glyphs/a.glif diff --git a/sources/Lora-Italic.ufo/glyphs/aacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/aacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/aacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/aacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/abreve-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/abreve-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/abreve-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/abreve-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/abreve.glif b/sources/archive/Lora-Italic.ufo/glyphs/abreve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/abreve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/abreve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/abreveacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/abreveacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/abreveacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/abreveacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/abrevedotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/abrevedotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/abrevedotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/abrevedotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/abrevegrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/abrevegrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/abrevegrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/abrevegrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/abrevehookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/abrevehookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/abrevehookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/abrevehookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/abrevetilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/abrevetilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/abrevetilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/abrevetilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/acaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/acircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acircumflexacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/acircumflexacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acircumflexacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acircumflexacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acircumflexdotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/acircumflexdotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acircumflexdotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acircumflexdotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acircumflexgrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/acircumflexgrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acircumflexgrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acircumflexgrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acircumflexhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/acircumflexhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acircumflexhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acircumflexhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acircumflextilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/acircumflextilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acircumflextilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acircumflextilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acute.glif b/sources/archive/Lora-Italic.ufo/glyphs/acute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acutecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/acutecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acutecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acutecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/acutecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/acutecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/acutecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/acutecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/adieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/adieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/adieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/adieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/adieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/adieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/adieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/adieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/adotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/adotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/adotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/adotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ae.glif b/sources/archive/Lora-Italic.ufo/glyphs/ae.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ae.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ae.glif diff --git a/sources/Lora-Italic.ufo/glyphs/agrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/agrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/agrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/agrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ahookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/ahookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ahookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ahookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/aie-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/aie-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/aie-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/aie-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/amacron.glif b/sources/archive/Lora-Italic.ufo/glyphs/amacron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/amacron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/amacron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ampersand.glif b/sources/archive/Lora-Italic.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ampersand.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ampersand.glif diff --git a/sources/Lora-Italic.ufo/glyphs/angstrom.glif b/sources/archive/Lora-Italic.ufo/glyphs/angstrom.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/angstrom.glif rename to sources/archive/Lora-Italic.ufo/glyphs/angstrom.glif diff --git a/sources/Lora-Italic.ufo/glyphs/aogonek.glif b/sources/archive/Lora-Italic.ufo/glyphs/aogonek.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/aogonek.glif rename to sources/archive/Lora-Italic.ufo/glyphs/aogonek.glif diff --git a/sources/Lora-Italic.ufo/glyphs/apostrophemod.glif b/sources/archive/Lora-Italic.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/apostrophemod.glif rename to sources/archive/Lora-Italic.ufo/glyphs/apostrophemod.glif diff --git a/sources/Lora-Italic.ufo/glyphs/approxequal.glif b/sources/archive/Lora-Italic.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/approxequal.glif rename to sources/archive/Lora-Italic.ufo/glyphs/approxequal.glif diff --git a/sources/Lora-Italic.ufo/glyphs/approxequal.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/approxequal.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/approxequal.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/approxequal.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/aring.glif b/sources/archive/Lora-Italic.ufo/glyphs/aring.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/aring.glif rename to sources/archive/Lora-Italic.ufo/glyphs/aring.glif diff --git a/sources/Lora-Italic.ufo/glyphs/asciicircum.glif b/sources/archive/Lora-Italic.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/asciicircum.glif rename to sources/archive/Lora-Italic.ufo/glyphs/asciicircum.glif diff --git a/sources/Lora-Italic.ufo/glyphs/asciitilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/asciitilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/asciitilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/asterisk.glif b/sources/archive/Lora-Italic.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/asterisk.glif rename to sources/archive/Lora-Italic.ufo/glyphs/asterisk.glif diff --git a/sources/Lora-Italic.ufo/glyphs/at.glif b/sources/archive/Lora-Italic.ufo/glyphs/at.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/at.glif rename to sources/archive/Lora-Italic.ufo/glyphs/at.glif diff --git a/sources/Lora-Italic.ufo/glyphs/atilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/atilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/atilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/atilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/b.glif b/sources/archive/Lora-Italic.ufo/glyphs/b.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/b.glif rename to sources/archive/Lora-Italic.ufo/glyphs/b.glif diff --git a/sources/Lora-Italic.ufo/glyphs/backslash.glif b/sources/archive/Lora-Italic.ufo/glyphs/backslash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/backslash.glif rename to sources/archive/Lora-Italic.ufo/glyphs/backslash.glif diff --git a/sources/Lora-Italic.ufo/glyphs/bar.glif b/sources/archive/Lora-Italic.ufo/glyphs/bar.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/bar.glif rename to sources/archive/Lora-Italic.ufo/glyphs/bar.glif diff --git a/sources/Lora-Italic.ufo/glyphs/be-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/be-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/be-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/be-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/be-cy.loclS_R_B_.glif b/sources/archive/Lora-Italic.ufo/glyphs/be-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/be-cy.loclS_R_B_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/be-cy.loclS_R_B_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/braceleft.glif b/sources/archive/Lora-Italic.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/braceleft.glif rename to sources/archive/Lora-Italic.ufo/glyphs/braceleft.glif diff --git a/sources/Lora-Italic.ufo/glyphs/braceright.glif b/sources/archive/Lora-Italic.ufo/glyphs/braceright.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/braceright.glif rename to sources/archive/Lora-Italic.ufo/glyphs/braceright.glif diff --git a/sources/Lora-Italic.ufo/glyphs/bracketleft.glif b/sources/archive/Lora-Italic.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/bracketleft.glif rename to sources/archive/Lora-Italic.ufo/glyphs/bracketleft.glif diff --git a/sources/Lora-Italic.ufo/glyphs/bracketright.glif b/sources/archive/Lora-Italic.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/bracketright.glif rename to sources/archive/Lora-Italic.ufo/glyphs/bracketright.glif diff --git a/sources/Lora-Italic.ufo/glyphs/breve.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/breve.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/breve.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/breve.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/breve.glif b/sources/archive/Lora-Italic.ufo/glyphs/breve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/breve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/breve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb-cy.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb-cy.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb-cy.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb-cy.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb_acutecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb_acutecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb_acutecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb_acutecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb_acutecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb_acutecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb_acutecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb_acutecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb_gravecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb_gravecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb_gravecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb_gravecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb_gravecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb_gravecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb_gravecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb_gravecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb_hookabovecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb_hookabovecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb_hookabovecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb_hookabovecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb_hookabovecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb_hookabovecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb_tildecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb_tildecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb_tildecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb_tildecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brevecomb_tildecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/brevecomb_tildecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brevecomb_tildecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brevecomb_tildecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/brokenbar.glif b/sources/archive/Lora-Italic.ufo/glyphs/brokenbar.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/brokenbar.glif rename to sources/archive/Lora-Italic.ufo/glyphs/brokenbar.glif diff --git a/sources/Lora-Italic.ufo/glyphs/bullet.glif b/sources/archive/Lora-Italic.ufo/glyphs/bullet.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/bullet.glif rename to sources/archive/Lora-Italic.ufo/glyphs/bullet.glif diff --git a/sources/Lora-Italic.ufo/glyphs/bulletoperator.glif b/sources/archive/Lora-Italic.ufo/glyphs/bulletoperator.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/bulletoperator.glif rename to sources/archive/Lora-Italic.ufo/glyphs/bulletoperator.glif diff --git a/sources/Lora-Italic.ufo/glyphs/c.glif b/sources/archive/Lora-Italic.ufo/glyphs/c.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/c.glif rename to sources/archive/Lora-Italic.ufo/glyphs/c.glif diff --git a/sources/Lora-Italic.ufo/glyphs/cacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/cacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/cacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/cacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/caron.glif b/sources/archive/Lora-Italic.ufo/glyphs/caron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/caron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/caron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/caroncomb.alt.glif b/sources/archive/Lora-Italic.ufo/glyphs/caroncomb.alt.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/caroncomb.alt.glif rename to sources/archive/Lora-Italic.ufo/glyphs/caroncomb.alt.glif diff --git a/sources/Lora-Italic.ufo/glyphs/caroncomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/caroncomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/caroncomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/caroncomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/caroncomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/caroncomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/caroncomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/caroncomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ccaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/ccaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ccaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ccaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ccedilla.glif b/sources/archive/Lora-Italic.ufo/glyphs/ccedilla.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ccedilla.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ccedilla.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ccircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/ccircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ccircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ccircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/cdotaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/cdotaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/cdotaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/cdotaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/cedilla.glif b/sources/archive/Lora-Italic.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/cedilla.glif rename to sources/archive/Lora-Italic.ufo/glyphs/cedilla.glif diff --git a/sources/Lora-Italic.ufo/glyphs/cedillacomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/cedillacomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/cedillacomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/cedillacomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/cedillacomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/cedillacomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/cedillacomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/cedillacomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/cent.glif b/sources/archive/Lora-Italic.ufo/glyphs/cent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/cent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/cent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/cent.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/cent.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/cent.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/cent.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/che-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/che-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/che-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/che-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/che-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/che-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/che-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/che-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/cheabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/cheabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/cheabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/cheabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/chedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/chedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/chedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/chedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/chedescenderabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/chedescenderabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/chedescenderabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/chedescenderabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/chedieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/chedieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/chedieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/chedieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/chekhakassian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/chekhakassian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/chekhakassian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/chekhakassian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/cheverticalstroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/cheverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/cheverticalstroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/cheverticalstroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflex.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflex.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflex.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflex.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb.case.i.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb.case.i.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb.case.i.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb.case.i.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb_acutecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_acutecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb_acutecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_acutecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb_acutecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_acutecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb_acutecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_acutecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb_gravecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_gravecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb_gravecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_gravecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb_gravecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_gravecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb_gravecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_gravecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb_hookabovecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb_hookabovecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_hookabovecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb_tildecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_tildecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb_tildecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_tildecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/circumflexcomb_tildecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_tildecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/circumflexcomb_tildecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/circumflexcomb_tildecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/colon.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/colon.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/colon.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/colon.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/colon.glif b/sources/archive/Lora-Italic.ufo/glyphs/colon.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/colon.glif rename to sources/archive/Lora-Italic.ufo/glyphs/colon.glif diff --git a/sources/Lora-Italic.ufo/glyphs/colon.tf.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/colon.tf.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/colon.tf.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/colon.tf.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/colon.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/colon.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/colon.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/colon.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/comma.glif b/sources/archive/Lora-Italic.ufo/glyphs/comma.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/comma.glif rename to sources/archive/Lora-Italic.ufo/glyphs/comma.glif diff --git a/sources/Lora-Italic.ufo/glyphs/comma.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/comma.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/comma.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/comma.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/commaaccentcomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/commaaccentcomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/commaaccentcomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/commaaccentcomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/commaturnedmod.glif b/sources/archive/Lora-Italic.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/commaturnedmod.glif rename to sources/archive/Lora-Italic.ufo/glyphs/commaturnedmod.glif diff --git a/sources/Lora-Italic.ufo/glyphs/commercialM_inusS_ign.glif b/sources/archive/Lora-Italic.ufo/glyphs/commercialM_inusS_ign.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/commercialM_inusS_ign.glif rename to sources/archive/Lora-Italic.ufo/glyphs/commercialM_inusS_ign.glif diff --git a/sources/Lora-Italic.ufo/glyphs/contents.plist b/sources/archive/Lora-Italic.ufo/glyphs/contents.plist similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/contents.plist rename to sources/archive/Lora-Italic.ufo/glyphs/contents.plist diff --git a/sources/Lora-Italic.ufo/glyphs/copyright.glif b/sources/archive/Lora-Italic.ufo/glyphs/copyright.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/copyright.glif rename to sources/archive/Lora-Italic.ufo/glyphs/copyright.glif diff --git a/sources/Lora-Italic.ufo/glyphs/currency.glif b/sources/archive/Lora-Italic.ufo/glyphs/currency.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/currency.glif rename to sources/archive/Lora-Italic.ufo/glyphs/currency.glif diff --git a/sources/Lora-Italic.ufo/glyphs/currency.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/currency.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/currency.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/currency.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/d.glif b/sources/archive/Lora-Italic.ufo/glyphs/d.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/d.glif rename to sources/archive/Lora-Italic.ufo/glyphs/d.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dagger.glif b/sources/archive/Lora-Italic.ufo/glyphs/dagger.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dagger.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dagger.glif diff --git a/sources/Lora-Italic.ufo/glyphs/daggerdbl.glif b/sources/archive/Lora-Italic.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/daggerdbl.glif rename to sources/archive/Lora-Italic.ufo/glyphs/daggerdbl.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/dcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dcroat.glif b/sources/archive/Lora-Italic.ufo/glyphs/dcroat.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dcroat.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dcroat.glif diff --git a/sources/Lora-Italic.ufo/glyphs/de-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/de-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/de-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/de-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/de-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/de-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/de-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/de-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/de-cy.loclS_R_B_.glif b/sources/archive/Lora-Italic.ufo/glyphs/de-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/de-cy.loclS_R_B_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/de-cy.loclS_R_B_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/degree.glif b/sources/archive/Lora-Italic.ufo/glyphs/degree.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/degree.glif rename to sources/archive/Lora-Italic.ufo/glyphs/degree.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dieresiscomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/dieresiscomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dieresiscomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dieresiscomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dieresiscomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/dieresiscomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dieresiscomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dieresiscomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/divide.alt.glif b/sources/archive/Lora-Italic.ufo/glyphs/divide.alt.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/divide.alt.glif rename to sources/archive/Lora-Italic.ufo/glyphs/divide.alt.glif diff --git a/sources/Lora-Italic.ufo/glyphs/divide.glif b/sources/archive/Lora-Italic.ufo/glyphs/divide.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/divide.glif rename to sources/archive/Lora-Italic.ufo/glyphs/divide.glif diff --git a/sources/Lora-Italic.ufo/glyphs/divide.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/divide.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/divide.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/divide.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/divisionslash.glif b/sources/archive/Lora-Italic.ufo/glyphs/divisionslash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/divisionslash.glif rename to sources/archive/Lora-Italic.ufo/glyphs/divisionslash.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dje-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/dje-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dje-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dje-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dollar.glif b/sources/archive/Lora-Italic.ufo/glyphs/dollar.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dollar.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dollar.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dollar.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/dollar.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dollar.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dollar.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dotaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dotaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dotaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dotaccentcomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/dotaccentcomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dotaccentcomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dotaccentcomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dotbelowcomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/dotbelowcomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dotbelowcomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dotbelowcomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dze-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/dze-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dze-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dze-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dzeabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dzeabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dzeabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/dzhe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/dzhe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/dzhe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/dzhe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/e-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/e-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/e-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/e-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/e.glif b/sources/archive/Lora-Italic.ufo/glyphs/e.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/e.glif rename to sources/archive/Lora-Italic.ufo/glyphs/e.glif diff --git a/sources/Lora-Italic.ufo/glyphs/eacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/eacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/eacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/eacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ebreve.glif b/sources/archive/Lora-Italic.ufo/glyphs/ebreve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ebreve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ebreve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ecaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/ecaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ecaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ecaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ecircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/ecircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ecircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ecircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ecircumflexacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/ecircumflexacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ecircumflexacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ecircumflexacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ecircumflexdotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/ecircumflexdotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ecircumflexdotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ecircumflexdotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ecircumflexgrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/ecircumflexgrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ecircumflexgrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ecircumflexgrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ecircumflexhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/ecircumflexhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ecircumflexhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ecircumflexhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ecircumflextilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/ecircumflextilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ecircumflextilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ecircumflextilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/edieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/edieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/edieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/edieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/edieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/edieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/edieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/edieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/edotaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/edotaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/edotaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/edotaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/edotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/edotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/edotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/edotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ef-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ef-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ef-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ef-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/egrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/egrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/egrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/egrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ehookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/ehookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ehookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ehookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/eight.glif b/sources/archive/Lora-Italic.ufo/glyphs/eight.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/eight.glif rename to sources/archive/Lora-Italic.ufo/glyphs/eight.glif diff --git a/sources/Lora-Italic.ufo/glyphs/eight.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/eight.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/eight.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/eight.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/el-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/el-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/el-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/el-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/el-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/el-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/el-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/el-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/eldescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/eldescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/eldescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/eldescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/elhook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/elhook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/elhook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/elhook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ellipsis.glif b/sources/archive/Lora-Italic.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ellipsis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ellipsis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/eltail-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/eltail-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/eltail-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/eltail-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/em-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/em-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/em-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/em-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/emacron.glif b/sources/archive/Lora-Italic.ufo/glyphs/emacron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/emacron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/emacron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/emdash.glif b/sources/archive/Lora-Italic.ufo/glyphs/emdash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/emdash.glif rename to sources/archive/Lora-Italic.ufo/glyphs/emdash.glif diff --git a/sources/Lora-Italic.ufo/glyphs/emtail-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/emtail-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/emtail-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/emtail-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/en-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/en-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/en-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/en-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/endash.glif b/sources/archive/Lora-Italic.ufo/glyphs/endash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/endash.glif rename to sources/archive/Lora-Italic.ufo/glyphs/endash.glif diff --git a/sources/Lora-Italic.ufo/glyphs/endescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/endescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/endescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/endescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/eng.glif b/sources/archive/Lora-Italic.ufo/glyphs/eng.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/eng.glif rename to sources/archive/Lora-Italic.ufo/glyphs/eng.glif diff --git a/sources/Lora-Italic.ufo/glyphs/enghe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/enghe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/enghe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/enghe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/enhook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/enhook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/enhook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/enhook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/enlefthook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/enlefthook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/enlefthook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/enlefthook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/entail-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/entail-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/entail-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/entail-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/eogonek.glif b/sources/archive/Lora-Italic.ufo/glyphs/eogonek.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/eogonek.glif rename to sources/archive/Lora-Italic.ufo/glyphs/eogonek.glif diff --git a/sources/Lora-Italic.ufo/glyphs/equal.glif b/sources/archive/Lora-Italic.ufo/glyphs/equal.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/equal.glif rename to sources/archive/Lora-Italic.ufo/glyphs/equal.glif diff --git a/sources/Lora-Italic.ufo/glyphs/equal.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/equal.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/equal.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/equal.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/er-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/er-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/er-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/er-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ereversed-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ereversed-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ereversed-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ereversed-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ertick-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ertick-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ertick-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ertick-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/es-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/es-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/es-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/es-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/esdescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/esdescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/esdescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/esdescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/esdescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Italic.ufo/glyphs/esdescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/esdescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/esdescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/esdescender-cy.loclC_H_U_.glif b/sources/archive/Lora-Italic.ufo/glyphs/esdescender-cy.loclC_H_U_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/esdescender-cy.loclC_H_U_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/esdescender-cy.loclC_H_U_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/estimated.glif b/sources/archive/Lora-Italic.ufo/glyphs/estimated.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/estimated.glif rename to sources/archive/Lora-Italic.ufo/glyphs/estimated.glif diff --git a/sources/Lora-Italic.ufo/glyphs/eth.glif b/sources/archive/Lora-Italic.ufo/glyphs/eth.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/eth.glif rename to sources/archive/Lora-Italic.ufo/glyphs/eth.glif diff --git a/sources/Lora-Italic.ufo/glyphs/etilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/etilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/etilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/etilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/euro.glif b/sources/archive/Lora-Italic.ufo/glyphs/euro.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/euro.glif rename to sources/archive/Lora-Italic.ufo/glyphs/euro.glif diff --git a/sources/Lora-Italic.ufo/glyphs/euro.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/euro.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/euro.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/euro.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/exclam.glif b/sources/archive/Lora-Italic.ufo/glyphs/exclam.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/exclam.glif rename to sources/archive/Lora-Italic.ufo/glyphs/exclam.glif diff --git a/sources/Lora-Italic.ufo/glyphs/exclamdown.glif b/sources/archive/Lora-Italic.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/exclamdown.glif rename to sources/archive/Lora-Italic.ufo/glyphs/exclamdown.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ezh.glif b/sources/archive/Lora-Italic.ufo/glyphs/ezh.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ezh.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ezh.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ezhcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/ezhcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ezhcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ezhcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/f.glif b/sources/archive/Lora-Italic.ufo/glyphs/f.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/f.glif rename to sources/archive/Lora-Italic.ufo/glyphs/f.glif diff --git a/sources/Lora-Italic.ufo/glyphs/fi.glif b/sources/archive/Lora-Italic.ufo/glyphs/fi.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/fi.glif rename to sources/archive/Lora-Italic.ufo/glyphs/fi.glif diff --git a/sources/Lora-Italic.ufo/glyphs/firsttonechinese.glif b/sources/archive/Lora-Italic.ufo/glyphs/firsttonechinese.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/firsttonechinese.glif rename to sources/archive/Lora-Italic.ufo/glyphs/firsttonechinese.glif diff --git a/sources/Lora-Italic.ufo/glyphs/fita-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/fita-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/fita-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/fita-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/five.glif b/sources/archive/Lora-Italic.ufo/glyphs/five.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/five.glif rename to sources/archive/Lora-Italic.ufo/glyphs/five.glif diff --git a/sources/Lora-Italic.ufo/glyphs/five.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/five.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/five.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/five.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/fl.glif b/sources/archive/Lora-Italic.ufo/glyphs/fl.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/fl.glif rename to sources/archive/Lora-Italic.ufo/glyphs/fl.glif diff --git a/sources/Lora-Italic.ufo/glyphs/florin.glif b/sources/archive/Lora-Italic.ufo/glyphs/florin.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/florin.glif rename to sources/archive/Lora-Italic.ufo/glyphs/florin.glif diff --git a/sources/Lora-Italic.ufo/glyphs/florin.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/florin.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/florin.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/florin.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/foundry.glif b/sources/archive/Lora-Italic.ufo/glyphs/foundry.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/foundry.glif rename to sources/archive/Lora-Italic.ufo/glyphs/foundry.glif diff --git a/sources/Lora-Italic.ufo/glyphs/four.glif b/sources/archive/Lora-Italic.ufo/glyphs/four.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/four.glif rename to sources/archive/Lora-Italic.ufo/glyphs/four.glif diff --git a/sources/Lora-Italic.ufo/glyphs/four.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/four.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/four.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/four.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/foursuperior.glif b/sources/archive/Lora-Italic.ufo/glyphs/foursuperior.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/foursuperior.glif rename to sources/archive/Lora-Italic.ufo/glyphs/foursuperior.glif diff --git a/sources/Lora-Italic.ufo/glyphs/fraction.glif b/sources/archive/Lora-Italic.ufo/glyphs/fraction.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/fraction.glif rename to sources/archive/Lora-Italic.ufo/glyphs/fraction.glif diff --git a/sources/Lora-Italic.ufo/glyphs/g.glif b/sources/archive/Lora-Italic.ufo/glyphs/g.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/g.glif rename to sources/archive/Lora-Italic.ufo/glyphs/g.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gbreve.glif b/sources/archive/Lora-Italic.ufo/glyphs/gbreve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gbreve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gbreve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/gcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gcircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/gcircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gcircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gcircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gcommaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/gcommaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gcommaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gcommaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ge-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ge-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ge-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ge-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ge-cy.loclS_R_B_.glif b/sources/archive/Lora-Italic.ufo/glyphs/ge-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ge-cy.loclS_R_B_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ge-cy.loclS_R_B_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ge-cy.ss01.glif b/sources/archive/Lora-Italic.ufo/glyphs/ge-cy.ss01.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ge-cy.ss01.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ge-cy.ss01.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/gedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/germandbls.glif b/sources/archive/Lora-Italic.ufo/glyphs/germandbls.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/germandbls.glif rename to sources/archive/Lora-Italic.ufo/glyphs/germandbls.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gestrokehook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/gestrokehook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gestrokehook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gestrokehook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ghemiddlehook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ghemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ghemiddlehook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ghemiddlehook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ghestroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ghestroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ghestroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ghestroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-Italic.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gheupturn-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/gheupturn-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gheupturn-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gheupturn-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gje-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/gje-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gje-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gje-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gje-cy.loclM_K_D_.glif b/sources/archive/Lora-Italic.ufo/glyphs/gje-cy.loclM_K_D_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gje-cy.loclM_K_D_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gje-cy.loclM_K_D_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/grave.glif b/sources/archive/Lora-Italic.ufo/glyphs/grave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/grave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/grave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gravecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/gravecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gravecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gravecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gravecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/gravecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gravecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gravecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/greater.glif b/sources/archive/Lora-Italic.ufo/glyphs/greater.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/greater.glif rename to sources/archive/Lora-Italic.ufo/glyphs/greater.glif diff --git a/sources/Lora-Italic.ufo/glyphs/greater.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/greater.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/greater.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/greater.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/greaterequal.glif b/sources/archive/Lora-Italic.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/greaterequal.glif rename to sources/archive/Lora-Italic.ufo/glyphs/greaterequal.glif diff --git a/sources/Lora-Italic.ufo/glyphs/greaterequal.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/greaterequal.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/greaterequal.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/greaterequal.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/gstroke.glif b/sources/archive/Lora-Italic.ufo/glyphs/gstroke.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/gstroke.glif rename to sources/archive/Lora-Italic.ufo/glyphs/gstroke.glif diff --git a/sources/Lora-Italic.ufo/glyphs/guillemetleft.glif b/sources/archive/Lora-Italic.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/guillemetleft.glif rename to sources/archive/Lora-Italic.ufo/glyphs/guillemetleft.glif diff --git a/sources/Lora-Italic.ufo/glyphs/guillemetright.glif b/sources/archive/Lora-Italic.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/guillemetright.glif rename to sources/archive/Lora-Italic.ufo/glyphs/guillemetright.glif diff --git a/sources/Lora-Italic.ufo/glyphs/guilsinglleft.glif b/sources/archive/Lora-Italic.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/guilsinglleft.glif rename to sources/archive/Lora-Italic.ufo/glyphs/guilsinglleft.glif diff --git a/sources/Lora-Italic.ufo/glyphs/guilsinglright.glif b/sources/archive/Lora-Italic.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/guilsinglright.glif rename to sources/archive/Lora-Italic.ufo/glyphs/guilsinglright.glif diff --git a/sources/Lora-Italic.ufo/glyphs/h.glif b/sources/archive/Lora-Italic.ufo/glyphs/h.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/h.glif rename to sources/archive/Lora-Italic.ufo/glyphs/h.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ha-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ha-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ha-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ha-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/haabkhasian-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/haabkhasian-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/haabkhasian-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/haabkhasian-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hadescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/hadescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hadescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hadescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hahook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/hahook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hahook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hahook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hardsign-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/hardsign-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hardsign-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hardsign-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hastroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/hastroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hastroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hastroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hbar.glif b/sources/archive/Lora-Italic.ufo/glyphs/hbar.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hbar.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hbar.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/hcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hcircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/hcircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hcircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hcircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hookabovecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/hookabovecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hookabovecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hookabovecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/horncomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/horncomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/horncomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/horncomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hryvnia.glif b/sources/archive/Lora-Italic.ufo/glyphs/hryvnia.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hryvnia.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hryvnia.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hryvnia.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/hryvnia.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hryvnia.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hryvnia.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hungarumlaut.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/hungarumlaut.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hungarumlaut.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hungarumlaut.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hungarumlaut.glif b/sources/archive/Lora-Italic.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hungarumlaut.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hungarumlaut.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hungarumlautcomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/hungarumlautcomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hungarumlautcomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hungarumlautcomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hungarumlautcomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/hungarumlautcomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hungarumlautcomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hungarumlautcomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hyphen.glif b/sources/archive/Lora-Italic.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hyphen.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hyphen.glif diff --git a/sources/Lora-Italic.ufo/glyphs/hyphentwo.glif b/sources/archive/Lora-Italic.ufo/glyphs/hyphentwo.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/hyphentwo.glif rename to sources/archive/Lora-Italic.ufo/glyphs/hyphentwo.glif diff --git a/sources/Lora-Italic.ufo/glyphs/i-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/i-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/i-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/i-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/i.glif b/sources/archive/Lora-Italic.ufo/glyphs/i.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/i.glif rename to sources/archive/Lora-Italic.ufo/glyphs/i.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ia-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ia-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ia-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ia-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/iacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/iacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/iacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/iacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ibreve.glif b/sources/archive/Lora-Italic.ufo/glyphs/ibreve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ibreve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ibreve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/icircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/icircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/icircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/icircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/idieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/idieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/idieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/idieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/idieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/idieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/idieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/idieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/idotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/idotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/idotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/idotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/idotless.glif b/sources/archive/Lora-Italic.ufo/glyphs/idotless.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/idotless.glif rename to sources/archive/Lora-Italic.ufo/glyphs/idotless.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ie-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ie-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ie-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ie-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/iebreve-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/iebreve-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/iebreve-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/iebreve-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/iegrave-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/iegrave-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/iegrave-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/iegrave-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/igrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/igrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/igrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/igrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ihookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/ihookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ihookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ihookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ii-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ii-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ii-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ii-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/iigrave-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/iigrave-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/iigrave-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/iigrave-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/iishort-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/iishort-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/iishort-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/iishort-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/iishorttail-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/iishorttail-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/iishorttail-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/iishorttail-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/imacron-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/imacron-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/imacron-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/imacron-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/imacron.glif b/sources/archive/Lora-Italic.ufo/glyphs/imacron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/imacron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/imacron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/increment.glif b/sources/archive/Lora-Italic.ufo/glyphs/increment.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/increment.glif rename to sources/archive/Lora-Italic.ufo/glyphs/increment.glif diff --git a/sources/Lora-Italic.ufo/glyphs/infinity.glif b/sources/archive/Lora-Italic.ufo/glyphs/infinity.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/infinity.glif rename to sources/archive/Lora-Italic.ufo/glyphs/infinity.glif diff --git a/sources/Lora-Italic.ufo/glyphs/integral.glif b/sources/archive/Lora-Italic.ufo/glyphs/integral.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/integral.glif rename to sources/archive/Lora-Italic.ufo/glyphs/integral.glif diff --git a/sources/Lora-Italic.ufo/glyphs/io-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/io-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/io-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/io-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/iogonek.glif b/sources/archive/Lora-Italic.ufo/glyphs/iogonek.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/iogonek.glif rename to sources/archive/Lora-Italic.ufo/glyphs/iogonek.glif diff --git a/sources/Lora-Italic.ufo/glyphs/itilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/itilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/itilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/itilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/iu-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/iu-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/iu-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/iu-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/iu-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/iu-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/iu-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/iu-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/izhitsa-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/izhitsa-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/izhitsa-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/izhitsa-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/j.glif b/sources/archive/Lora-Italic.ufo/glyphs/j.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/j.glif rename to sources/archive/Lora-Italic.ufo/glyphs/j.glif diff --git a/sources/Lora-Italic.ufo/glyphs/jcircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/jcircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/jcircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/jcircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/jdotless.glif b/sources/archive/Lora-Italic.ufo/glyphs/jdotless.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/jdotless.glif rename to sources/archive/Lora-Italic.ufo/glyphs/jdotless.glif diff --git a/sources/Lora-Italic.ufo/glyphs/je-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/je-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/je-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/je-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/k.glif b/sources/archive/Lora-Italic.ufo/glyphs/k.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/k.glif rename to sources/archive/Lora-Italic.ufo/glyphs/k.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ka-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ka-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ka-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ka-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ka-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/ka-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ka-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ka-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/kabashkir-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/kabashkir-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/kabashkir-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/kabashkir-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/kadescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/kadescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/kadescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/kadescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/kahook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/kahook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/kahook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/kahook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/kastroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/kastroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/kastroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/kastroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/kaverticalstroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/kaverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/kaverticalstroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/kaverticalstroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/kcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/kcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/kcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/kcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/kcommaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/kcommaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/kcommaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/kcommaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/kelvin.glif b/sources/archive/Lora-Italic.ufo/glyphs/kelvin.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/kelvin.glif rename to sources/archive/Lora-Italic.ufo/glyphs/kelvin.glif diff --git a/sources/Lora-Italic.ufo/glyphs/kje-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/kje-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/kje-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/kje-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/l.glif b/sources/archive/Lora-Italic.ufo/glyphs/l.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/l.glif rename to sources/archive/Lora-Italic.ufo/glyphs/l.glif diff --git a/sources/Lora-Italic.ufo/glyphs/lacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/lacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/lacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/lacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/layerinfo.plist b/sources/archive/Lora-Italic.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/layerinfo.plist rename to sources/archive/Lora-Italic.ufo/glyphs/layerinfo.plist diff --git a/sources/Lora-Italic.ufo/glyphs/lcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/lcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/lcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/lcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/lcommaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/lcommaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/lcommaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/lcommaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ldot.glif b/sources/archive/Lora-Italic.ufo/glyphs/ldot.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ldot.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ldot.glif diff --git a/sources/Lora-Italic.ufo/glyphs/leftanglebracket-math.glif b/sources/archive/Lora-Italic.ufo/glyphs/leftanglebracket-math.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/leftanglebracket-math.glif rename to sources/archive/Lora-Italic.ufo/glyphs/leftanglebracket-math.glif diff --git a/sources/Lora-Italic.ufo/glyphs/less.glif b/sources/archive/Lora-Italic.ufo/glyphs/less.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/less.glif rename to sources/archive/Lora-Italic.ufo/glyphs/less.glif diff --git a/sources/Lora-Italic.ufo/glyphs/less.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/less.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/less.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/less.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/lessequal.glif b/sources/archive/Lora-Italic.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/lessequal.glif rename to sources/archive/Lora-Italic.ufo/glyphs/lessequal.glif diff --git a/sources/Lora-Italic.ufo/glyphs/lessequal.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/lessequal.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/lessequal.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/lessequal.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/liraT_urkish.glif b/sources/archive/Lora-Italic.ufo/glyphs/liraT_urkish.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/liraT_urkish.glif rename to sources/archive/Lora-Italic.ufo/glyphs/liraT_urkish.glif diff --git a/sources/Lora-Italic.ufo/glyphs/liraT_urkish.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/liraT_urkish.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/liraT_urkish.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/liraT_urkish.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/literS_ign.glif b/sources/archive/Lora-Italic.ufo/glyphs/literS_ign.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/literS_ign.glif rename to sources/archive/Lora-Italic.ufo/glyphs/literS_ign.glif diff --git a/sources/Lora-Italic.ufo/glyphs/lje-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/lje-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/lje-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/lje-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/logicalnot.glif b/sources/archive/Lora-Italic.ufo/glyphs/logicalnot.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/logicalnot.glif rename to sources/archive/Lora-Italic.ufo/glyphs/logicalnot.glif diff --git a/sources/Lora-Italic.ufo/glyphs/logicalnot.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/logicalnot.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/logicalnot.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/logicalnot.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/longs.glif b/sources/archive/Lora-Italic.ufo/glyphs/longs.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/longs.glif rename to sources/archive/Lora-Italic.ufo/glyphs/longs.glif diff --git a/sources/Lora-Italic.ufo/glyphs/lozenge.glif b/sources/archive/Lora-Italic.ufo/glyphs/lozenge.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/lozenge.glif rename to sources/archive/Lora-Italic.ufo/glyphs/lozenge.glif diff --git a/sources/Lora-Italic.ufo/glyphs/lslash.glif b/sources/archive/Lora-Italic.ufo/glyphs/lslash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/lslash.glif rename to sources/archive/Lora-Italic.ufo/glyphs/lslash.glif diff --git a/sources/Lora-Italic.ufo/glyphs/m.glif b/sources/archive/Lora-Italic.ufo/glyphs/m.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/m.glif rename to sources/archive/Lora-Italic.ufo/glyphs/m.glif diff --git a/sources/Lora-Italic.ufo/glyphs/macron.glif b/sources/archive/Lora-Italic.ufo/glyphs/macron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/macron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/macron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/macroncomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/macroncomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/macroncomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/macroncomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/micro.glif b/sources/archive/Lora-Italic.ufo/glyphs/micro.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/micro.glif rename to sources/archive/Lora-Italic.ufo/glyphs/micro.glif diff --git a/sources/Lora-Italic.ufo/glyphs/minus.glif b/sources/archive/Lora-Italic.ufo/glyphs/minus.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/minus.glif rename to sources/archive/Lora-Italic.ufo/glyphs/minus.glif diff --git a/sources/Lora-Italic.ufo/glyphs/minus.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/minus.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/minus.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/minus.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/minute.glif b/sources/archive/Lora-Italic.ufo/glyphs/minute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/minute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/minute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/mu.glif b/sources/archive/Lora-Italic.ufo/glyphs/mu.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/mu.glif rename to sources/archive/Lora-Italic.ufo/glyphs/mu.glif diff --git a/sources/Lora-Italic.ufo/glyphs/multiply.glif b/sources/archive/Lora-Italic.ufo/glyphs/multiply.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/multiply.glif rename to sources/archive/Lora-Italic.ufo/glyphs/multiply.glif diff --git a/sources/Lora-Italic.ufo/glyphs/multiply.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/multiply.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/multiply.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/multiply.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/n.glif b/sources/archive/Lora-Italic.ufo/glyphs/n.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/n.glif rename to sources/archive/Lora-Italic.ufo/glyphs/n.glif diff --git a/sources/Lora-Italic.ufo/glyphs/nacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/nacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/nacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/nacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/napostrophe.glif b/sources/archive/Lora-Italic.ufo/glyphs/napostrophe.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/napostrophe.glif rename to sources/archive/Lora-Italic.ufo/glyphs/napostrophe.glif diff --git a/sources/Lora-Italic.ufo/glyphs/nbspace.glif b/sources/archive/Lora-Italic.ufo/glyphs/nbspace.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/nbspace.glif rename to sources/archive/Lora-Italic.ufo/glyphs/nbspace.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ncaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/ncaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ncaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ncaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ncommaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/ncommaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ncommaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ncommaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/nine.glif b/sources/archive/Lora-Italic.ufo/glyphs/nine.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/nine.glif rename to sources/archive/Lora-Italic.ufo/glyphs/nine.glif diff --git a/sources/Lora-Italic.ufo/glyphs/nine.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/nine.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/nine.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/nine.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/nje-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/nje-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/nje-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/nje-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/notequal.glif b/sources/archive/Lora-Italic.ufo/glyphs/notequal.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/notequal.glif rename to sources/archive/Lora-Italic.ufo/glyphs/notequal.glif diff --git a/sources/Lora-Italic.ufo/glyphs/notequal.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/notequal.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/notequal.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/notequal.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ntilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/ntilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ntilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ntilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/numbersign.glif b/sources/archive/Lora-Italic.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/numbersign.glif rename to sources/archive/Lora-Italic.ufo/glyphs/numbersign.glif diff --git a/sources/Lora-Italic.ufo/glyphs/numbersign.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/numbersign.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/numbersign.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/numbersign.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/numero.glif b/sources/archive/Lora-Italic.ufo/glyphs/numero.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/numero.glif rename to sources/archive/Lora-Italic.ufo/glyphs/numero.glif diff --git a/sources/Lora-Italic.ufo/glyphs/o-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/o-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/o-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/o-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/o.glif b/sources/archive/Lora-Italic.ufo/glyphs/o.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/o.glif rename to sources/archive/Lora-Italic.ufo/glyphs/o.glif diff --git a/sources/Lora-Italic.ufo/glyphs/oacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/oacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/oacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/oacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/obarred-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/obarred-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/obarred-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/obarred-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/obarreddieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/obarreddieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/obarreddieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/obarreddieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/obreve.glif b/sources/archive/Lora-Italic.ufo/glyphs/obreve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/obreve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/obreve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ocircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/ocircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ocircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ocircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ocircumflexacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/ocircumflexacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ocircumflexacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ocircumflexacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ocircumflexdotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/ocircumflexdotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ocircumflexdotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ocircumflexdotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ocircumflexgrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/ocircumflexgrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ocircumflexgrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ocircumflexgrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ocircumflexhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/ocircumflexhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ocircumflexhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ocircumflexhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ocircumflextilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/ocircumflextilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ocircumflextilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ocircumflextilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/odieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/odieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/odieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/odieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/odieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/odieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/odieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/odieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/odotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/odotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/odotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/odotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/oe.glif b/sources/archive/Lora-Italic.ufo/glyphs/oe.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/oe.glif rename to sources/archive/Lora-Italic.ufo/glyphs/oe.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ogonek.glif b/sources/archive/Lora-Italic.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ogonek.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ogonek.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ogonekcomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/ogonekcomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ogonekcomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ogonekcomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ograve.glif b/sources/archive/Lora-Italic.ufo/glyphs/ograve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ograve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ograve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ohookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/ohookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ohookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ohookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ohorn.glif b/sources/archive/Lora-Italic.ufo/glyphs/ohorn.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ohorn.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ohorn.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ohornacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/ohornacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ohornacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ohornacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ohorndotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/ohorndotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ohorndotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ohorndotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ohorngrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/ohorngrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ohorngrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ohorngrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ohornhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/ohornhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ohornhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ohornhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ohorntilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/ohorntilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ohorntilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ohorntilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ohungarumlaut.glif b/sources/archive/Lora-Italic.ufo/glyphs/ohungarumlaut.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ohungarumlaut.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ohungarumlaut.glif diff --git a/sources/Lora-Italic.ufo/glyphs/omacron.glif b/sources/archive/Lora-Italic.ufo/glyphs/omacron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/omacron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/omacron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/one.glif b/sources/archive/Lora-Italic.ufo/glyphs/one.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/one.glif rename to sources/archive/Lora-Italic.ufo/glyphs/one.glif diff --git a/sources/Lora-Italic.ufo/glyphs/one.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/one.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/one.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/one.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/onehalf.glif b/sources/archive/Lora-Italic.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/onehalf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/onehalf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/onequarter.glif b/sources/archive/Lora-Italic.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/onequarter.glif rename to sources/archive/Lora-Italic.ufo/glyphs/onequarter.glif diff --git a/sources/Lora-Italic.ufo/glyphs/onesuperior.glif b/sources/archive/Lora-Italic.ufo/glyphs/onesuperior.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/onesuperior.glif rename to sources/archive/Lora-Italic.ufo/glyphs/onesuperior.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ordfeminine.glif b/sources/archive/Lora-Italic.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ordfeminine.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ordfeminine.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ordmasculine.glif b/sources/archive/Lora-Italic.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ordmasculine.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ordmasculine.glif diff --git a/sources/Lora-Italic.ufo/glyphs/oslash.glif b/sources/archive/Lora-Italic.ufo/glyphs/oslash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/oslash.glif rename to sources/archive/Lora-Italic.ufo/glyphs/oslash.glif diff --git a/sources/Lora-Italic.ufo/glyphs/oslashacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/oslashacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/oslashacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/oslashacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/otilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/otilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/otilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/otilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/p.glif b/sources/archive/Lora-Italic.ufo/glyphs/p.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/p.glif rename to sources/archive/Lora-Italic.ufo/glyphs/p.glif diff --git a/sources/Lora-Italic.ufo/glyphs/palochka-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/palochka-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/palochka-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/palochka-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/paragraph.glif b/sources/archive/Lora-Italic.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/paragraph.glif rename to sources/archive/Lora-Italic.ufo/glyphs/paragraph.glif diff --git a/sources/Lora-Italic.ufo/glyphs/parenleft.glif b/sources/archive/Lora-Italic.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/parenleft.glif rename to sources/archive/Lora-Italic.ufo/glyphs/parenleft.glif diff --git a/sources/Lora-Italic.ufo/glyphs/parenright.glif b/sources/archive/Lora-Italic.ufo/glyphs/parenright.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/parenright.glif rename to sources/archive/Lora-Italic.ufo/glyphs/parenright.glif diff --git a/sources/Lora-Italic.ufo/glyphs/partialdiff.glif b/sources/archive/Lora-Italic.ufo/glyphs/partialdiff.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/partialdiff.glif rename to sources/archive/Lora-Italic.ufo/glyphs/partialdiff.glif diff --git a/sources/Lora-Italic.ufo/glyphs/pe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/pe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/pe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/pe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/pe-cy.loclS_R_B_.glif b/sources/archive/Lora-Italic.ufo/glyphs/pe-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/pe-cy.loclS_R_B_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/pe-cy.loclS_R_B_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/pedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/pedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/pedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/pedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/pemiddlehook-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/pemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/pemiddlehook-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/pemiddlehook-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/percent.glif b/sources/archive/Lora-Italic.ufo/glyphs/percent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/percent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/percent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/percent.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/percent.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/percent.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/percent.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/period.glif b/sources/archive/Lora-Italic.ufo/glyphs/period.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/period.glif rename to sources/archive/Lora-Italic.ufo/glyphs/period.glif diff --git a/sources/Lora-Italic.ufo/glyphs/period.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/period.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/period.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/period.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/periodcentered.glif b/sources/archive/Lora-Italic.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/periodcentered.glif rename to sources/archive/Lora-Italic.ufo/glyphs/periodcentered.glif diff --git a/sources/Lora-Italic.ufo/glyphs/periodcentered.loclC_A_T_.glif b/sources/archive/Lora-Italic.ufo/glyphs/periodcentered.loclC_A_T_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/periodcentered.loclC_A_T_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/periodcentered.loclC_A_T_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/perthousand.glif b/sources/archive/Lora-Italic.ufo/glyphs/perthousand.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/perthousand.glif rename to sources/archive/Lora-Italic.ufo/glyphs/perthousand.glif diff --git a/sources/Lora-Italic.ufo/glyphs/pi.glif b/sources/archive/Lora-Italic.ufo/glyphs/pi.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/pi.glif rename to sources/archive/Lora-Italic.ufo/glyphs/pi.glif diff --git a/sources/Lora-Italic.ufo/glyphs/plus.glif b/sources/archive/Lora-Italic.ufo/glyphs/plus.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/plus.glif rename to sources/archive/Lora-Italic.ufo/glyphs/plus.glif diff --git a/sources/Lora-Italic.ufo/glyphs/plus.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/plus.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/plus.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/plus.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/plusminus.glif b/sources/archive/Lora-Italic.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/plusminus.glif rename to sources/archive/Lora-Italic.ufo/glyphs/plusminus.glif diff --git a/sources/Lora-Italic.ufo/glyphs/plusminus.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/plusminus.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/plusminus.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/plusminus.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/product.glif b/sources/archive/Lora-Italic.ufo/glyphs/product.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/product.glif rename to sources/archive/Lora-Italic.ufo/glyphs/product.glif diff --git a/sources/Lora-Italic.ufo/glyphs/q.glif b/sources/archive/Lora-Italic.ufo/glyphs/q.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/q.glif rename to sources/archive/Lora-Italic.ufo/glyphs/q.glif diff --git a/sources/Lora-Italic.ufo/glyphs/qa-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/qa-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/qa-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/qa-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/question.glif b/sources/archive/Lora-Italic.ufo/glyphs/question.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/question.glif rename to sources/archive/Lora-Italic.ufo/glyphs/question.glif diff --git a/sources/Lora-Italic.ufo/glyphs/questiondown.glif b/sources/archive/Lora-Italic.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/questiondown.glif rename to sources/archive/Lora-Italic.ufo/glyphs/questiondown.glif diff --git a/sources/Lora-Italic.ufo/glyphs/quotedbl.glif b/sources/archive/Lora-Italic.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/quotedbl.glif rename to sources/archive/Lora-Italic.ufo/glyphs/quotedbl.glif diff --git a/sources/Lora-Italic.ufo/glyphs/quotedblbase.glif b/sources/archive/Lora-Italic.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/quotedblbase.glif rename to sources/archive/Lora-Italic.ufo/glyphs/quotedblbase.glif diff --git a/sources/Lora-Italic.ufo/glyphs/quotedblleft.glif b/sources/archive/Lora-Italic.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/quotedblleft.glif rename to sources/archive/Lora-Italic.ufo/glyphs/quotedblleft.glif diff --git a/sources/Lora-Italic.ufo/glyphs/quotedblright.glif b/sources/archive/Lora-Italic.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/quotedblright.glif rename to sources/archive/Lora-Italic.ufo/glyphs/quotedblright.glif diff --git a/sources/Lora-Italic.ufo/glyphs/quoteleft.glif b/sources/archive/Lora-Italic.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/quoteleft.glif rename to sources/archive/Lora-Italic.ufo/glyphs/quoteleft.glif diff --git a/sources/Lora-Italic.ufo/glyphs/quoteright.glif b/sources/archive/Lora-Italic.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/quoteright.glif rename to sources/archive/Lora-Italic.ufo/glyphs/quoteright.glif diff --git a/sources/Lora-Italic.ufo/glyphs/quotesinglbase.glif b/sources/archive/Lora-Italic.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/quotesinglbase.glif rename to sources/archive/Lora-Italic.ufo/glyphs/quotesinglbase.glif diff --git a/sources/Lora-Italic.ufo/glyphs/quotesingle.glif b/sources/archive/Lora-Italic.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/quotesingle.glif rename to sources/archive/Lora-Italic.ufo/glyphs/quotesingle.glif diff --git a/sources/Lora-Italic.ufo/glyphs/r.glif b/sources/archive/Lora-Italic.ufo/glyphs/r.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/r.glif rename to sources/archive/Lora-Italic.ufo/glyphs/r.glif diff --git a/sources/Lora-Italic.ufo/glyphs/racute.glif b/sources/archive/Lora-Italic.ufo/glyphs/racute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/racute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/racute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/radical.glif b/sources/archive/Lora-Italic.ufo/glyphs/radical.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/radical.glif rename to sources/archive/Lora-Italic.ufo/glyphs/radical.glif diff --git a/sources/Lora-Italic.ufo/glyphs/rcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/rcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/rcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/rcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/rcommaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/rcommaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/rcommaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/rcommaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/registered.glif b/sources/archive/Lora-Italic.ufo/glyphs/registered.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/registered.glif rename to sources/archive/Lora-Italic.ufo/glyphs/registered.glif diff --git a/sources/Lora-Italic.ufo/glyphs/reversedze-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/reversedze-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/reversedze-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/reversedze-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/rightanglebracket-math.glif b/sources/archive/Lora-Italic.ufo/glyphs/rightanglebracket-math.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/rightanglebracket-math.glif rename to sources/archive/Lora-Italic.ufo/glyphs/rightanglebracket-math.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ring.glif b/sources/archive/Lora-Italic.ufo/glyphs/ring.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ring.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ring.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ringcomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/ringcomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ringcomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ringcomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ringcomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/ringcomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ringcomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ringcomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ruble.glif b/sources/archive/Lora-Italic.ufo/glyphs/ruble.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ruble.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ruble.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ruble.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/ruble.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ruble.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ruble.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/s.glif b/sources/archive/Lora-Italic.ufo/glyphs/s.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/s.glif rename to sources/archive/Lora-Italic.ufo/glyphs/s.glif diff --git a/sources/Lora-Italic.ufo/glyphs/sacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/sacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/sacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/sacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/scaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/scaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/scaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/scaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/scedilla.glif b/sources/archive/Lora-Italic.ufo/glyphs/scedilla.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/scedilla.glif rename to sources/archive/Lora-Italic.ufo/glyphs/scedilla.glif diff --git a/sources/Lora-Italic.ufo/glyphs/schwa-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/schwa-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/schwa-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/schwa-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/schwa.glif b/sources/archive/Lora-Italic.ufo/glyphs/schwa.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/schwa.glif rename to sources/archive/Lora-Italic.ufo/glyphs/schwa.glif diff --git a/sources/Lora-Italic.ufo/glyphs/schwadieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/schwadieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/schwadieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/schwadieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/scircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/scircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/scircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/scircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/scommaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/scommaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/scommaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/scommaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/second.glif b/sources/archive/Lora-Italic.ufo/glyphs/second.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/second.glif rename to sources/archive/Lora-Italic.ufo/glyphs/second.glif diff --git a/sources/Lora-Italic.ufo/glyphs/section.glif b/sources/archive/Lora-Italic.ufo/glyphs/section.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/section.glif rename to sources/archive/Lora-Italic.ufo/glyphs/section.glif diff --git a/sources/Lora-Italic.ufo/glyphs/section.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/section.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/section.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/section.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/semicolon.glif b/sources/archive/Lora-Italic.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/semicolon.glif rename to sources/archive/Lora-Italic.ufo/glyphs/semicolon.glif diff --git a/sources/Lora-Italic.ufo/glyphs/semicolon.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/semicolon.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/semicolon.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/semicolon.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/semisoftsign-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/semisoftsign-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/semisoftsign-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/semisoftsign-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/seven.glif b/sources/archive/Lora-Italic.ufo/glyphs/seven.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/seven.glif rename to sources/archive/Lora-Italic.ufo/glyphs/seven.glif diff --git a/sources/Lora-Italic.ufo/glyphs/seven.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/seven.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/seven.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/seven.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/sha-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/sha-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/sha-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/sha-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/shcha-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/shcha-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/shcha-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/shcha-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/shha-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/shha-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/shha-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/shha-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/shhadescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/shhadescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/shhadescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/shhadescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/six.glif b/sources/archive/Lora-Italic.ufo/glyphs/six.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/six.glif rename to sources/archive/Lora-Italic.ufo/glyphs/six.glif diff --git a/sources/Lora-Italic.ufo/glyphs/six.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/six.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/six.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/six.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/slash.glif b/sources/archive/Lora-Italic.ufo/glyphs/slash.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/slash.glif rename to sources/archive/Lora-Italic.ufo/glyphs/slash.glif diff --git a/sources/Lora-Italic.ufo/glyphs/softhyphen.glif b/sources/archive/Lora-Italic.ufo/glyphs/softhyphen.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/softhyphen.glif rename to sources/archive/Lora-Italic.ufo/glyphs/softhyphen.glif diff --git a/sources/Lora-Italic.ufo/glyphs/softsign-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/softsign-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/softsign-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/softsign-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/space.glif b/sources/archive/Lora-Italic.ufo/glyphs/space.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/space.glif rename to sources/archive/Lora-Italic.ufo/glyphs/space.glif diff --git a/sources/Lora-Italic.ufo/glyphs/space.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/space.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/space.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/space.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/sterling.glif b/sources/archive/Lora-Italic.ufo/glyphs/sterling.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/sterling.glif rename to sources/archive/Lora-Italic.ufo/glyphs/sterling.glif diff --git a/sources/Lora-Italic.ufo/glyphs/sterling.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/sterling.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/sterling.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/sterling.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/strokelongcomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/strokelongcomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/strokelongcomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/strokelongcomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/strokeshortcomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/strokeshortcomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/strokeshortcomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/strokeshortcomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/summation.glif b/sources/archive/Lora-Italic.ufo/glyphs/summation.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/summation.glif rename to sources/archive/Lora-Italic.ufo/glyphs/summation.glif diff --git a/sources/Lora-Italic.ufo/glyphs/t.glif b/sources/archive/Lora-Italic.ufo/glyphs/t.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/t.glif rename to sources/archive/Lora-Italic.ufo/glyphs/t.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tail-cy.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/tail-cy.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tail-cy.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tail-cy.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tail-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/tail-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tail-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tail-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tbar.glif b/sources/archive/Lora-Italic.ufo/glyphs/tbar.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tbar.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tbar.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/tcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tcedilla.glif b/sources/archive/Lora-Italic.ufo/glyphs/tcedilla.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tcedilla.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tcedilla.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tcommaaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/tcommaaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tcommaaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tcommaaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/te-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/te-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/te-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/te-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/te-cy.loclS_R_B_.glif b/sources/archive/Lora-Italic.ufo/glyphs/te-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/te-cy.loclS_R_B_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/te-cy.loclS_R_B_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/tedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tenge.glif b/sources/archive/Lora-Italic.ufo/glyphs/tenge.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tenge.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tenge.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tenge.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/tenge.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tenge.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tenge.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tetse-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/tetse-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tetse-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tetse-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/thorn.glif b/sources/archive/Lora-Italic.ufo/glyphs/thorn.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/thorn.glif rename to sources/archive/Lora-Italic.ufo/glyphs/thorn.glif diff --git a/sources/Lora-Italic.ufo/glyphs/three.glif b/sources/archive/Lora-Italic.ufo/glyphs/three.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/three.glif rename to sources/archive/Lora-Italic.ufo/glyphs/three.glif diff --git a/sources/Lora-Italic.ufo/glyphs/three.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/three.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/three.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/three.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/threequarters.glif b/sources/archive/Lora-Italic.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/threequarters.glif rename to sources/archive/Lora-Italic.ufo/glyphs/threequarters.glif diff --git a/sources/Lora-Italic.ufo/glyphs/threesuperior.glif b/sources/archive/Lora-Italic.ufo/glyphs/threesuperior.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/threesuperior.glif rename to sources/archive/Lora-Italic.ufo/glyphs/threesuperior.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/tilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tildecomb.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/tildecomb.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tildecomb.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tildecomb.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tildecomb.glif b/sources/archive/Lora-Italic.ufo/glyphs/tildecomb.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tildecomb.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tildecomb.glif diff --git a/sources/Lora-Italic.ufo/glyphs/trademark.glif b/sources/archive/Lora-Italic.ufo/glyphs/trademark.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/trademark.glif rename to sources/archive/Lora-Italic.ufo/glyphs/trademark.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tse-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/tse-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tse-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tse-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tshe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/tshe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tshe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tshe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tugrik.glif b/sources/archive/Lora-Italic.ufo/glyphs/tugrik.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tugrik.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tugrik.glif diff --git a/sources/Lora-Italic.ufo/glyphs/tugrik.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/tugrik.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/tugrik.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/tugrik.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/two.glif b/sources/archive/Lora-Italic.ufo/glyphs/two.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/two.glif rename to sources/archive/Lora-Italic.ufo/glyphs/two.glif diff --git a/sources/Lora-Italic.ufo/glyphs/two.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/two.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/two.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/two.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/twosuperior.glif b/sources/archive/Lora-Italic.ufo/glyphs/twosuperior.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/twosuperior.glif rename to sources/archive/Lora-Italic.ufo/glyphs/twosuperior.glif diff --git a/sources/Lora-Italic.ufo/glyphs/u-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/u-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/u-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/u-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/u.glif b/sources/archive/Lora-Italic.ufo/glyphs/u.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/u.glif rename to sources/archive/Lora-Italic.ufo/glyphs/u.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/uacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ubreve.glif b/sources/archive/Lora-Italic.ufo/glyphs/ubreve.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ubreve.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ubreve.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ucaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/ucaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ucaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ucaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ucircumflex.glif b/sources/archive/Lora-Italic.ufo/glyphs/ucircumflex.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ucircumflex.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ucircumflex.glif diff --git a/sources/Lora-Italic.ufo/glyphs/udieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/udieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/udieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/udieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/udieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/udieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/udieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/udieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/udotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/udotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/udotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/udotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ugrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/ugrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ugrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ugrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/uhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uhorn.glif b/sources/archive/Lora-Italic.ufo/glyphs/uhorn.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uhorn.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uhorn.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uhornacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/uhornacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uhornacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uhornacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uhorndotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/uhorndotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uhorndotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uhorndotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uhorngrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/uhorngrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uhorngrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uhorngrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uhornhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/uhornhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uhornhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uhornhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uhorntilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/uhorntilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uhorntilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uhorntilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uhungarumlaut-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/uhungarumlaut-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uhungarumlaut-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uhungarumlaut-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uhungarumlaut.glif b/sources/archive/Lora-Italic.ufo/glyphs/uhungarumlaut.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uhungarumlaut.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uhungarumlaut.glif diff --git a/sources/Lora-Italic.ufo/glyphs/umacron-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/umacron-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/umacron-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/umacron-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/umacron.glif b/sources/archive/Lora-Italic.ufo/glyphs/umacron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/umacron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/umacron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/underscore.glif b/sources/archive/Lora-Italic.ufo/glyphs/underscore.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/underscore.glif rename to sources/archive/Lora-Italic.ufo/glyphs/underscore.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uni0000.glif b/sources/archive/Lora-Italic.ufo/glyphs/uni0000.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uni0000.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uni0000.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uni1C_81.glif b/sources/archive/Lora-Italic.ufo/glyphs/uni1C_81.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uni1C_81.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uni1C_81.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uni1C_85.glif b/sources/archive/Lora-Italic.ufo/glyphs/uni1C_85.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uni1C_85.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uni1C_85.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uniE_F_F_D_.glif b/sources/archive/Lora-Italic.ufo/glyphs/uniE_F_F_D_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uniE_F_F_D_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uniE_F_F_D_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uogonek.glif b/sources/archive/Lora-Italic.ufo/glyphs/uogonek.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uogonek.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uogonek.glif diff --git a/sources/Lora-Italic.ufo/glyphs/uring.glif b/sources/archive/Lora-Italic.ufo/glyphs/uring.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/uring.glif rename to sources/archive/Lora-Italic.ufo/glyphs/uring.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ushort-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ushort-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ushort-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ushort-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ustraight-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ustraight-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ustraight-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ustraight-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ustraightstroke-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ustraightstroke-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ustraightstroke-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ustraightstroke-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/utilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/utilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/utilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/utilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/v.glif b/sources/archive/Lora-Italic.ufo/glyphs/v.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/v.glif rename to sources/archive/Lora-Italic.ufo/glyphs/v.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ve-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ve-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ve-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ve-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ve-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/ve-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ve-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ve-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/verticalbar-cy.case.glif b/sources/archive/Lora-Italic.ufo/glyphs/verticalbar-cy.case.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/verticalbar-cy.case.glif rename to sources/archive/Lora-Italic.ufo/glyphs/verticalbar-cy.case.glif diff --git a/sources/Lora-Italic.ufo/glyphs/verticalbar-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/verticalbar-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/verticalbar-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/verticalbar-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/w.glif b/sources/archive/Lora-Italic.ufo/glyphs/w.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/w.glif rename to sources/archive/Lora-Italic.ufo/glyphs/w.glif diff --git a/sources/Lora-Italic.ufo/glyphs/we-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/we-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/we-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/we-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/x.glif b/sources/archive/Lora-Italic.ufo/glyphs/x.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/x.glif rename to sources/archive/Lora-Italic.ufo/glyphs/x.glif diff --git a/sources/Lora-Italic.ufo/glyphs/y.glif b/sources/archive/Lora-Italic.ufo/glyphs/y.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/y.glif rename to sources/archive/Lora-Italic.ufo/glyphs/y.glif diff --git a/sources/Lora-Italic.ufo/glyphs/yacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/yacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/yacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/yacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/yat-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/yat-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/yat-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/yat-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ydieresis.glif b/sources/archive/Lora-Italic.ufo/glyphs/ydieresis.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ydieresis.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ydieresis.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ydotbelow.glif b/sources/archive/Lora-Italic.ufo/glyphs/ydotbelow.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ydotbelow.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ydotbelow.glif diff --git a/sources/Lora-Italic.ufo/glyphs/yen.glif b/sources/archive/Lora-Italic.ufo/glyphs/yen.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/yen.glif rename to sources/archive/Lora-Italic.ufo/glyphs/yen.glif diff --git a/sources/Lora-Italic.ufo/glyphs/yen.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/yen.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/yen.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/yen.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/yeru-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/yeru-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/yeru-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/yeru-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/yerudieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/yerudieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/yerudieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/yerudieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ygrave.glif b/sources/archive/Lora-Italic.ufo/glyphs/ygrave.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ygrave.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ygrave.glif diff --git a/sources/Lora-Italic.ufo/glyphs/yhookabove.glif b/sources/archive/Lora-Italic.ufo/glyphs/yhookabove.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/yhookabove.glif rename to sources/archive/Lora-Italic.ufo/glyphs/yhookabove.glif diff --git a/sources/Lora-Italic.ufo/glyphs/yi-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/yi-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/yi-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/yi-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ytilde.glif b/sources/archive/Lora-Italic.ufo/glyphs/ytilde.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ytilde.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ytilde.glif diff --git a/sources/Lora-Italic.ufo/glyphs/yusbig-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/yusbig-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/yusbig-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/yusbig-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/z.glif b/sources/archive/Lora-Italic.ufo/glyphs/z.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/z.glif rename to sources/archive/Lora-Italic.ufo/glyphs/z.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zacute.glif b/sources/archive/Lora-Italic.ufo/glyphs/zacute.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zacute.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zacute.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zcaron.glif b/sources/archive/Lora-Italic.ufo/glyphs/zcaron.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zcaron.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zcaron.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zdotaccent.glif b/sources/archive/Lora-Italic.ufo/glyphs/zdotaccent.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zdotaccent.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zdotaccent.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ze-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/ze-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ze-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ze-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/ze-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/ze-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/ze-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/ze-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/zedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zedescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Italic.ufo/glyphs/zedescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zedescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zedescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zedieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/zedieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zedieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zedieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zero.glif b/sources/archive/Lora-Italic.ufo/glyphs/zero.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zero.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zero.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zero.tf.glif b/sources/archive/Lora-Italic.ufo/glyphs/zero.tf.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zero.tf.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zero.tf.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zhe-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/zhe-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zhe-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zhe-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zhe-cy.loclB_G_R_.glif b/sources/archive/Lora-Italic.ufo/glyphs/zhe-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zhe-cy.loclB_G_R_.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zhe-cy.loclB_G_R_.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zhebreve-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/zhebreve-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zhebreve-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zhebreve-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zhedescender-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/zhedescender-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zhedescender-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zhedescender-cy.glif diff --git a/sources/Lora-Italic.ufo/glyphs/zhedieresis-cy.glif b/sources/archive/Lora-Italic.ufo/glyphs/zhedieresis-cy.glif similarity index 100% rename from sources/Lora-Italic.ufo/glyphs/zhedieresis-cy.glif rename to sources/archive/Lora-Italic.ufo/glyphs/zhedieresis-cy.glif diff --git a/sources/Lora-Italic.ufo/groups.plist b/sources/archive/Lora-Italic.ufo/groups.plist similarity index 100% rename from sources/Lora-Italic.ufo/groups.plist rename to sources/archive/Lora-Italic.ufo/groups.plist diff --git a/sources/Lora-Italic.ufo/kerning.plist b/sources/archive/Lora-Italic.ufo/kerning.plist similarity index 100% rename from sources/Lora-Italic.ufo/kerning.plist rename to sources/archive/Lora-Italic.ufo/kerning.plist diff --git a/sources/Lora-Italic.ufo/layercontents.plist b/sources/archive/Lora-Italic.ufo/layercontents.plist similarity index 100% rename from sources/Lora-Italic.ufo/layercontents.plist rename to sources/archive/Lora-Italic.ufo/layercontents.plist diff --git a/sources/Lora-Italic.ufo/lib.plist b/sources/archive/Lora-Italic.ufo/lib.plist similarity index 100% rename from sources/Lora-Italic.ufo/lib.plist rename to sources/archive/Lora-Italic.ufo/lib.plist diff --git a/sources/Lora-Italic.ufo/metainfo.plist b/sources/archive/Lora-Italic.ufo/metainfo.plist similarity index 100% rename from sources/Lora-Italic.ufo/metainfo.plist rename to sources/archive/Lora-Italic.ufo/metainfo.plist diff --git a/sources/Lora-Regular.ufo/features.fea b/sources/archive/Lora-Regular.ufo/features.fea similarity index 100% rename from sources/Lora-Regular.ufo/features.fea rename to sources/archive/Lora-Regular.ufo/features.fea diff --git a/sources/Lora-Regular.ufo/fontinfo.plist b/sources/archive/Lora-Regular.ufo/fontinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/fontinfo.plist rename to sources/archive/Lora-Regular.ufo/fontinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/dzeabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/dzeabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/dzeabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01.background/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/dzeabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/dzeabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/dzeabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.D_ec 19 17, 17_01/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/leftanglebracket-math.glif b/sources/archive/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/leftanglebracket-math.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/leftanglebracket-math.glif rename to sources/archive/Lora-Regular.ufo/glyphs.O_ct 27 17, 20_19/leftanglebracket-math.glif diff --git a/sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/schwa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/schwa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/schwa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42.background/schwa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/schwa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/schwa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/schwa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.O_ct 30 17, 12_42/schwa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.O_lga.background/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_lga.background/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_lga.background/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_lga.background/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_lga.background/ge-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.O_lga.background/ge-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_lga.background/ge-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.O_lga.background/ge-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.O_lga.background/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_lga.background/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_lga.background/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_lga.background/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_lga/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_lga/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_lga/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_lga/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.O_lga/ge-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.O_lga/ge-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_lga/ge-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.O_lga/ge-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.O_lga/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.O_lga/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.O_lga/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.O_lga/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.fix.background/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.fix.background/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.fix.background/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.fix.background/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.fix.background/ge-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.fix.background/ge-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.fix.background/ge-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.fix.background/ge-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.fix.background/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.fix.background/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.fix.background/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.fix.background/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.fix/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.fix/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.fix/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.fix/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.fix/ge-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.fix/ge-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.fix/ge-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.fix/ge-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.fix/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.fix/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.fix/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.fix/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.old.background/D_zeabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.old.background/D_zeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.old.background/D_zeabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.old.background/D_zeabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.old.background/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.old.background/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.old.background/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.old.background/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.old.background/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.old.background/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.old.background/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.old.background/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.old/D_zeabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.old/D_zeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.old/D_zeabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.old/D_zeabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.old/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.old/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.old/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.old/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.old/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.old/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.old/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.old/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/A_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/A_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/A_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/A_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/A_E_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/A_E_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/A_E_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/A_E_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/C_heabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/C_heabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/C_heabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/C_heabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/C_hekhakassian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/C_hekhakassian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/C_hekhakassian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/C_hekhakassian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/D_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/D_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/D_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/D_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/D_elta.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/D_elta.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/D_elta.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/D_elta.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.600.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.600.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.600.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/D_je-cy.B_R_A_C_K_E_T_.600.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/D_zeabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/D_zeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/D_zeabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/D_zeabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/E_ltail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/E_ltail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/E_ltail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/E_ltail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/E_nL_eftH_ook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/E_nL_eftH_ook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/E_nL_eftH_ook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/E_nL_eftH_ook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/E_ng.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/E_ng.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/E_ng.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/E_ng.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/E_ntail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/E_ntail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/E_ntail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/E_ntail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/E_reversed-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/E_reversed-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/E_reversed-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/E_reversed-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/E_th.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/E_th.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/E_th.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/E_th.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/E_zh.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/E_zh.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/E_zh.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/E_zh.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/G_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/G_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/G_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/G_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/G_ermandbls.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/G_ermandbls.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/G_ermandbls.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/G_ermandbls.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/G_estrokehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/G_estrokehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/G_estrokehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/G_estrokehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/G_hemiddlehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/G_hemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/G_hemiddlehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/G_hemiddlehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/H_aabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/H_aabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/H_aabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/H_aabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/I_a-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/I_a-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/I_a-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/I_a-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/I_ishorttail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/I_ishorttail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/I_ishorttail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/I_ishorttail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/I_zhitsa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/I_zhitsa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/I_zhitsa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/I_zhitsa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/K_adescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/K_adescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/K_adescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/K_adescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/K_ahook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/K_ahook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/K_ahook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/K_ahook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/K_averticalstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/K_averticalstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/K_averticalstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/K_averticalstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/L_slash.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/L_slash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/L_slash.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/L_slash.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/P_edescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/P_edescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/P_edescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/P_edescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/R_eversedze-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/R_eversedze-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/R_eversedze-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/R_eversedze-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/S_ha-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/S_ha-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/S_ha-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/S_ha-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/S_hcha-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/S_hcha-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/S_hcha-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/S_hcha-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/Y_usbig-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/Y_usbig-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/Y_usbig-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/Y_usbig-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/Z_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/Z_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/Z_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/Z_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/Z_edescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/Z_edescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/Z_edescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/Z_edescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/Z_hedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/Z_hedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/Z_hedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/Z_hedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/__descender-cy.case.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/__descender-cy.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/__descender-cy.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/__descender-cy.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/__verticalbar-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/__verticalbar-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/__verticalbar-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/__verticalbar-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/aacute.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/aacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/aacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/aacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/be-cy.loclS_R_B_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/brevecomb_hookabovecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/che-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/che-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/che-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/che-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/che-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/che-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/che-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/che-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/cheabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/cheabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/cheabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/cheabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/cheverticalstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/cheverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/cheverticalstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/cheverticalstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/circumflexcomb.case.i.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/circumflexcomb.case.i.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/circumflexcomb.case.i.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/circumflexcomb.case.i.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/circumflexcomb.i.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/circumflexcomb.i.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/circumflexcomb.i.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/circumflexcomb.i.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/commercialM_inusS_ign.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/commercialM_inusS_ign.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/commercialM_inusS_ign.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/commercialM_inusS_ign.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs.public.background/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/dcroat.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/dcroat.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/dcroat.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/dcroat.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/divide.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/divide.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/divide.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/divide.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/dzeabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/dzeabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/dzeabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/emdash.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/emdash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/emdash.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/emdash.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/en-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/en-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/en-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/en-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/eng.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/eng.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/eng.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/eng.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/enlefthook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/enlefthook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/enlefthook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/enlefthook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/equal.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/equal.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/equal.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/equal.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ereversed-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ereversed-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ereversed-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ereversed-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/estimated.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/estimated.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/estimated.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/estimated.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/euro.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/euro.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/euro.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/euro.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ezh.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ezh.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ezh.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ezh.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ge-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ge-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ge-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ge-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/germandbls.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/germandbls.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/germandbls.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/germandbls.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/gestrokehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/gestrokehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/gestrokehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/gestrokehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ghemiddlehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ghemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ghemiddlehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ghemiddlehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ghestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ghestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ghestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ghestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/gstroke.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/gstroke.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/gstroke.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/gstroke.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/haabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/haabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/haabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/haabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/hahook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/hahook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/hahook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/hahook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/hookabovecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/hookabovecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/hookabovecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/hookabovecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/hryvnia.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/hryvnia.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/hryvnia.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/hryvnia.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/icircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/icircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/icircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/icircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/izhitsa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/izhitsa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/izhitsa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/izhitsa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/j.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/j.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/j.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/j.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ka-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ka-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ka-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ka-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/kadescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/kadescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/kadescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/kadescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/kahook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/kahook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/kahook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/kahook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/kastroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/kastroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/kastroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/kastroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/kaverticalstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/kaverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/kaverticalstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/kaverticalstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs.public.background/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/leftanglebracket-math.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/leftanglebracket-math.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/leftanglebracket-math.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/leftanglebracket-math.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/liraT_urkish.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/liraT_urkish.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/liraT_urkish.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/liraT_urkish.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/micro.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/micro.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/micro.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/micro.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/minute.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/minute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/minute.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/minute.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/mu.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/mu.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/mu.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/mu.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/napostrophe.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/napostrophe.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/napostrophe.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/napostrophe.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/notequal.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/notequal.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/notequal.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/notequal.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/numero.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/numero.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/numero.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/numero.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/oe.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/oe.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/oe.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/oe.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/pedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/pedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/pedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/pedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/plusminus.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/plusminus.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/plusminus.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/plusminus.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/product.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/product.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/product.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/product.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/schwa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/schwa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/schwa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/schwa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/schwa.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/schwa.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/schwa.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/schwa.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/sha-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/sha-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/sha-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/sha-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/shcha-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/shcha-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/shcha-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/shcha-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/softsign-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/softsign-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/softsign-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/softsign-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/summation.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/summation.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/summation.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/summation.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/tail-cy.case.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/tail-cy.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/tail-cy.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/tail-cy.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/tail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/tail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/tail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/tail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/tshe-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/tshe-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/tshe-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/tshe-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/u.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/u.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/u.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/u.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ustraight-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ustraight-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ustraight-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ustraight-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ustraightstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ustraightstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ustraightstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ustraightstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ve-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/y.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/y.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/y.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/y.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/yusbig-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/yusbig-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/yusbig-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/yusbig-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/ze-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/ze-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/ze-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/ze-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs.public.background/zhedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs.public.background/zhedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs.public.background/zhedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs.public.background/zhedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_E_.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_E_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_E_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_E_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_breve-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_breve-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_breve-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_breve-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_breve.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_breve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_breve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_breve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_breveacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_breveacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_breveacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_breveacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_brevedotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_brevedotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_brevedotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_brevedotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_brevegrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_brevegrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_brevegrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_brevegrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_brevehookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_brevehookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_brevehookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_brevehookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_brevetilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_brevetilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_brevetilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_brevetilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_circumflexacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_circumflexacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_circumflexacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_circumflexacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_circumflexdotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_circumflexdotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_circumflexdotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_circumflexgrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_circumflexgrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_circumflexgrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_circumflexgrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_circumflexhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_circumflexhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_circumflexhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_circumflexhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_circumflextilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_circumflextilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_circumflextilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_circumflextilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_dieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_dieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_dieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_dieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_dieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_dieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_dieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_dieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_dotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_dotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_dotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_dotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_grave.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_grave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_grave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_grave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_hookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_hookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_hookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_hookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_ie-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_ie-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_ie-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_ie-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_macron.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_macron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_macron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_macron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_ogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_ogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_ogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_ogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_ring.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_ring.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_ring.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_ring.glif diff --git a/sources/Lora-Regular.ufo/glyphs/A_tilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/A_tilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/A_tilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/A_tilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/B_.glif b/sources/archive/Lora-Regular.ufo/glyphs/B_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/B_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/B_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/B_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/B_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/B_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/B_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_cedilla.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_cedilla.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_cedilla.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_cedilla.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_dotaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_dotaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_dotaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_dotaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_he-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_he-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_he-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_he-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_heabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_heabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_heabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_heabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_hedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_hedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_hedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_hedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_hedescenderabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_hedescenderabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_hedescenderabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_hedescenderabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_hedieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_hedieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_hedieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_hedieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_hekhakassian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_hekhakassian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_hekhakassian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_hekhakassian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/C_heverticalstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/C_heverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/C_heverticalstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/C_heverticalstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_croat.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_croat.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_croat.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_croat.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_e-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_e-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_e-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_e-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_elta.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_elta.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_elta.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_elta.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.600.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.600.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.600.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_je-cy.B_R_A_C_K_E_T_.600.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_je-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_je-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_je-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_je-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_ze-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_ze-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_ze-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_ze-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_zeabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_zeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_zeabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_zeabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/D_zhe-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/D_zhe-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/D_zhe-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/D_zhe-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_breve.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_breve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_breve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_breve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_circumflexacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_circumflexacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_circumflexacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_circumflexacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_circumflexdotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_circumflexdotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_circumflexdotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_circumflexgrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_circumflexgrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_circumflexgrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_circumflexgrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_circumflexhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_circumflexhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_circumflexhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_circumflexhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_circumflextilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_circumflextilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_circumflextilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_circumflextilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_dieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_dieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_dieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_dieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_dieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_dieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_dieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_dieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_dotaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_dotaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_dotaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_dotaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_dotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_dotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_dotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_dotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_f-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_f-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_f-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_f-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_f-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_f-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_f-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_f-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_grave.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_grave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_grave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_grave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_hookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_hookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_hookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_hookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_l-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_l-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_l-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_l-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_l-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_l-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_l-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_l-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_ldescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_ldescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_ldescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_ldescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_lhook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_lhook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_lhook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_lhook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_ltail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_ltail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_ltail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_ltail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_m-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_m-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_m-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_m-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_macron.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_macron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_macron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_macron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_mtail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_mtail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_mtail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_mtail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_n-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_n-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_n-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_n-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_nL_eftH_ook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_nL_eftH_ook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_nL_eftH_ook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_nL_eftH_ook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_ndescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_ndescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_ndescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_ndescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_ng.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_ng.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_ng.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_ng.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_nghe-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_nghe-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_nghe-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_nghe-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_nhook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_nhook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_nhook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_nhook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_ntail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_ntail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_ntail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_ntail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_ogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_ogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_ogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_ogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_r-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_r-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_r-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_r-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_reversed-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_reversed-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_reversed-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_reversed-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_rtick-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_rtick-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_rtick-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_rtick-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_s-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_s-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_s-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_s-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_sdescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_sdescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_sdescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_sdescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_sdescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_sdescender-cy.loclC_H_U_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_th.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_th.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_th.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_th.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_tilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_tilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_tilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_tilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_zh.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_zh.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_zh.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_zh.glif diff --git a/sources/Lora-Regular.ufo/glyphs/E_zhcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/E_zhcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/E_zhcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/E_zhcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/F_.glif b/sources/archive/Lora-Regular.ufo/glyphs/F_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/F_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/F_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/F_ita-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/F_ita-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/F_ita-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/F_ita-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_amma.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_amma.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_amma.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_amma.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_breve.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_breve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_breve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_breve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_commaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_commaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_commaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_commaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_edescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_edescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_edescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_edescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_ermandbls.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_ermandbls.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_ermandbls.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_ermandbls.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_estrokehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_estrokehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_estrokehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_estrokehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_hemiddlehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_hemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_hemiddlehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_hemiddlehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_hestroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_hestroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_hestroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_hestroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_hestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_heupturn-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_heupturn-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_heupturn-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_heupturn-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_je-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_je-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_je-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_je-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/G_stroke.glif b/sources/archive/Lora-Regular.ufo/glyphs/G_stroke.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/G_stroke.glif rename to sources/archive/Lora-Regular.ufo/glyphs/G_stroke.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_a-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_a-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_a-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_a-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_aabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_aabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_aabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_aabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_adescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_adescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_adescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_adescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_ahook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_ahook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_ahook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_ahook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_ardsign-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_ardsign-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_ardsign-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_ardsign-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_astroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_astroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_astroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_astroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_bar.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_bar.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_bar.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_bar.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/H_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/H_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/H_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/H_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_a-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_a-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_a-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_a-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_breve.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_breve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_breve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_breve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_dieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_dieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_dieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_dieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_dieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_dieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_dieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_dieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_dotaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_dotaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_dotaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_dotaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_dotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_dotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_dotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_dotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_ebreve-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_ebreve-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_ebreve-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_ebreve-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_egrave-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_egrave-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_egrave-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_egrave-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_grave.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_grave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_grave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_grave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_hookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_hookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_hookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_hookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_i-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_i-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_i-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_i-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_igrave-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_igrave-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_igrave-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_igrave-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_ishort-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_ishort-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_ishort-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_ishort-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_ishorttail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_ishorttail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_ishorttail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_ishorttail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_macron-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_macron-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_macron-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_macron-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_macron.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_macron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_macron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_macron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_o-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_o-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_o-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_o-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_ogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_ogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_ogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_ogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_tilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_tilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_tilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_tilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_u-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_u-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_u-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_u-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/I_zhitsa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/I_zhitsa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/I_zhitsa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/I_zhitsa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/J_.glif b/sources/archive/Lora-Regular.ufo/glyphs/J_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/J_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/J_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/J_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/J_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/J_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/J_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/J_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/J_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/J_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/J_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_a-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_a-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_a-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_a-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_abashkir-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_abashkir-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_abashkir-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_abashkir-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_adescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_adescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_adescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_adescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_ahook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_ahook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_ahook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_ahook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_astroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_astroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_astroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_astroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_averticalstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_averticalstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_averticalstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_averticalstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_commaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_commaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_commaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_commaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/K_je-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/K_je-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/K_je-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/K_je-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/L_.glif b/sources/archive/Lora-Regular.ufo/glyphs/L_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/L_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/L_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/L_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/L_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/L_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/L_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/L_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/L_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/L_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/L_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/L_commaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/L_commaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/L_commaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/L_commaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/L_dot.glif b/sources/archive/Lora-Regular.ufo/glyphs/L_dot.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/L_dot.glif rename to sources/archive/Lora-Regular.ufo/glyphs/L_dot.glif diff --git a/sources/Lora-Regular.ufo/glyphs/L_je-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/L_je-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/L_je-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/L_je-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/L_slash.glif b/sources/archive/Lora-Regular.ufo/glyphs/L_slash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/L_slash.glif rename to sources/archive/Lora-Regular.ufo/glyphs/L_slash.glif diff --git a/sources/Lora-Regular.ufo/glyphs/M_.glif b/sources/archive/Lora-Regular.ufo/glyphs/M_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/M_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/M_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/N_.glif b/sources/archive/Lora-Regular.ufo/glyphs/N_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/N_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/N_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/N_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/N_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/N_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/N_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/N_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/N_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/N_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/N_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/N_commaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/N_commaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/N_commaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/N_commaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/N_je-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/N_je-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/N_je-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/N_je-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/N_tilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/N_tilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/N_tilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/N_tilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_E_.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_E_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_E_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_E_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_barred-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_barred-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_barred-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_barred-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_barreddieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_barreddieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_barreddieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_barreddieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_breve.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_breve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_breve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_breve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_circumflexacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_circumflexacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_circumflexacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_circumflexacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_circumflexdotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_circumflexdotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_circumflexdotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_circumflexdotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_circumflexgrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_circumflexgrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_circumflexgrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_circumflexgrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_circumflexhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_circumflexhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_circumflexhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_circumflexhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_circumflextilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_circumflextilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_circumflextilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_circumflextilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_dieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_dieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_dieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_dieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_dieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_dieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_dieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_dieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_dotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_dotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_dotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_dotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_grave.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_grave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_grave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_grave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_hm.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_hm.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_hm.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_hm.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_hookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_hookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_hookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_hookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_horn.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_horn.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_horn.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_horn.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_hornacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_hornacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_hornacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_hornacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_horndotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_horndotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_horndotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_horndotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_horngrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_horngrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_horngrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_horngrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_hornhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_hornhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_hornhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_hornhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_horntilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_horntilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_horntilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_horntilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_hungarumlaut.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_hungarumlaut.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_hungarumlaut.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_hungarumlaut.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_macron.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_macron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_macron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_macron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_mega.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_mega.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_mega.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_mega.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_slash.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_slash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_slash.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_slash.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_slashacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_slashacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_slashacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_slashacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/O_tilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/O_tilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/O_tilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/O_tilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/P_.glif b/sources/archive/Lora-Regular.ufo/glyphs/P_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/P_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/P_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/P_alochka-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/P_alochka-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/P_alochka-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/P_alochka-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/P_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/P_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/P_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/P_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/P_edescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/P_edescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/P_edescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/P_edescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/P_emiddlehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/P_emiddlehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/P_emiddlehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/P_emiddlehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/P_i.glif b/sources/archive/Lora-Regular.ufo/glyphs/P_i.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/P_i.glif rename to sources/archive/Lora-Regular.ufo/glyphs/P_i.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Q_.glif b/sources/archive/Lora-Regular.ufo/glyphs/Q_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Q_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Q_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Q_a-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Q_a-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Q_a-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Q_a-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/R_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/R_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/R_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/R_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/R_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/R_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/R_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/R_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/R_commaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/R_commaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/R_commaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/R_commaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/R_eversedze-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/R_eversedze-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/R_eversedze-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/R_eversedze-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_cedilla.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_cedilla.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_cedilla.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_cedilla.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_chwa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_chwa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_chwa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_chwa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_chwa.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_chwa.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_chwa.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_chwa.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_chwadieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_chwadieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_chwadieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_chwadieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_commaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_commaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_commaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_commaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_emisoftsign-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_emisoftsign-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_emisoftsign-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_emisoftsign-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_ha-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_ha-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_ha-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_ha-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_hcha-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_hcha-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_hcha-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_hcha-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_hha-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_hha-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_hha-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_hha-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_hhadescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_hhadescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_hhadescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_hhadescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/S_oftsign-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/S_oftsign-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/S_oftsign-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/S_oftsign-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_bar.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_bar.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_bar.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_bar.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_cedilla.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_cedilla.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_cedilla.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_cedilla.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_commaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_commaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_commaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_commaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_edescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_edescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_edescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_edescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_etse-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_etse-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_etse-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_etse-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_horn.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_horn.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_horn.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_horn.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_se-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_se-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_se-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_se-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/T_she-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/T_she-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/T_she-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/T_she-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_breve.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_breve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_breve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_breve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_dieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_dieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_dieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_dieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_dieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_dieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_dieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_dieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_dotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_dotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_dotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_dotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_grave.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_grave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_grave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_grave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_hookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_hookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_hookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_hookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_horn.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_horn.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_horn.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_horn.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_hornacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_hornacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_hornacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_hornacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_horndotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_horndotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_horndotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_horndotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_horngrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_horngrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_horngrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_horngrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_hornhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_hornhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_hornhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_hornhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_horntilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_horntilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_horntilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_horntilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_hungarumlaut-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_hungarumlaut-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_hungarumlaut-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_hungarumlaut-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_hungarumlaut.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_hungarumlaut.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_hungarumlaut.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_hungarumlaut.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_macron-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_macron-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_macron-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_macron-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_macron.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_macron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_macron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_macron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_ogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_ogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_ogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_ogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_ring.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_ring.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_ring.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_ring.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_short-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_short-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_short-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_short-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_straight-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_straight-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_straight-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_straight-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_straightstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_straightstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_straightstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_straightstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/U_tilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/U_tilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/U_tilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/U_tilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/V_.glif b/sources/archive/Lora-Regular.ufo/glyphs/V_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/V_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/V_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/V_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/V_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/V_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/V_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/W_.glif b/sources/archive/Lora-Regular.ufo/glyphs/W_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/W_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/W_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/W_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/W_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/W_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/W_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/X_.glif b/sources/archive/Lora-Regular.ufo/glyphs/X_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/X_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/X_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_at-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_at-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_at-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_at-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_dieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_dieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_dieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_dieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_dotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_dotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_dotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_dotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_eru-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_eru-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_eru-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_eru-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_erudieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_erudieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_erudieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_erudieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_grave.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_grave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_grave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_grave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_hookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_hookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_hookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_hookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_i-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_i-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_i-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_i-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_tilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_tilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_tilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_tilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Y_usbig-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Y_usbig-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Y_usbig-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Y_usbig-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_dotaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_dotaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_dotaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_dotaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_edescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_edescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_edescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_edescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_edescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_edieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_edieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_edieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_edieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_he-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_he-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_he-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_he-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_hebreve-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_hebreve-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_hebreve-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_hebreve-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_hedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_hedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_hedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_hedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/Z_hedieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/Z_hedieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/Z_hedieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/Z_hedieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/__descender-cy.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/__descender-cy.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/__descender-cy.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/__descender-cy.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/__descender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/__descender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/__descender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/__descender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/__verticalbar-cy.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/__verticalbar-cy.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/__verticalbar-cy.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/__verticalbar-cy.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/__verticalbar-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/__verticalbar-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/__verticalbar-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/__verticalbar-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/_notdef.glif b/sources/archive/Lora-Regular.ufo/glyphs/_notdef.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/_notdef.glif rename to sources/archive/Lora-Regular.ufo/glyphs/_notdef.glif diff --git a/sources/Lora-Regular.ufo/glyphs/a-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/a-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/a-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/a-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/a.glif b/sources/archive/Lora-Regular.ufo/glyphs/a.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/a.glif rename to sources/archive/Lora-Regular.ufo/glyphs/a.glif diff --git a/sources/Lora-Regular.ufo/glyphs/aacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/aacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/aacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/aacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/abreve-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/abreve-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/abreve-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/abreve-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/abreve.glif b/sources/archive/Lora-Regular.ufo/glyphs/abreve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/abreve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/abreve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/abreveacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/abreveacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/abreveacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/abreveacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/abrevedotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/abrevedotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/abrevedotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/abrevedotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/abrevegrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/abrevegrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/abrevegrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/abrevegrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/abrevehookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/abrevehookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/abrevehookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/abrevehookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/abrevetilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/abrevetilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/abrevetilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/abrevetilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/acaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/acircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acircumflexacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/acircumflexacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acircumflexacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acircumflexacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acircumflexdotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/acircumflexdotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acircumflexdotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acircumflexdotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acircumflexgrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/acircumflexgrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acircumflexgrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acircumflexgrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acircumflexhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/acircumflexhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acircumflexhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acircumflexhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acircumflextilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/acircumflextilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acircumflextilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acircumflextilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acute.glif b/sources/archive/Lora-Regular.ufo/glyphs/acute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acutecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/acutecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acutecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acutecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/acutecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/acutecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/acutecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/acutecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/adieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/adieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/adieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/adieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/adieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/adieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/adieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/adieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/adotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/adotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/adotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/adotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ae.glif b/sources/archive/Lora-Regular.ufo/glyphs/ae.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ae.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ae.glif diff --git a/sources/Lora-Regular.ufo/glyphs/agrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/agrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/agrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/agrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ahookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/ahookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ahookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ahookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/aie-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/aie-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/aie-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/aie-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/amacron.glif b/sources/archive/Lora-Regular.ufo/glyphs/amacron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/amacron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/amacron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ampersand.glif b/sources/archive/Lora-Regular.ufo/glyphs/ampersand.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ampersand.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ampersand.glif diff --git a/sources/Lora-Regular.ufo/glyphs/angstrom.glif b/sources/archive/Lora-Regular.ufo/glyphs/angstrom.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/angstrom.glif rename to sources/archive/Lora-Regular.ufo/glyphs/angstrom.glif diff --git a/sources/Lora-Regular.ufo/glyphs/aogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs/aogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/aogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs/aogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs/apostrophemod.glif b/sources/archive/Lora-Regular.ufo/glyphs/apostrophemod.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/apostrophemod.glif rename to sources/archive/Lora-Regular.ufo/glyphs/apostrophemod.glif diff --git a/sources/Lora-Regular.ufo/glyphs/approxequal.glif b/sources/archive/Lora-Regular.ufo/glyphs/approxequal.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/approxequal.glif rename to sources/archive/Lora-Regular.ufo/glyphs/approxequal.glif diff --git a/sources/Lora-Regular.ufo/glyphs/approxequal.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/approxequal.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/approxequal.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/approxequal.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/aring.glif b/sources/archive/Lora-Regular.ufo/glyphs/aring.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/aring.glif rename to sources/archive/Lora-Regular.ufo/glyphs/aring.glif diff --git a/sources/Lora-Regular.ufo/glyphs/asciicircum.glif b/sources/archive/Lora-Regular.ufo/glyphs/asciicircum.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/asciicircum.glif rename to sources/archive/Lora-Regular.ufo/glyphs/asciicircum.glif diff --git a/sources/Lora-Regular.ufo/glyphs/asciitilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/asciitilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/asciitilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/asciitilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/asterisk.glif b/sources/archive/Lora-Regular.ufo/glyphs/asterisk.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/asterisk.glif rename to sources/archive/Lora-Regular.ufo/glyphs/asterisk.glif diff --git a/sources/Lora-Regular.ufo/glyphs/at.glif b/sources/archive/Lora-Regular.ufo/glyphs/at.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/at.glif rename to sources/archive/Lora-Regular.ufo/glyphs/at.glif diff --git a/sources/Lora-Regular.ufo/glyphs/atilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/atilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/atilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/atilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/b.glif b/sources/archive/Lora-Regular.ufo/glyphs/b.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/b.glif rename to sources/archive/Lora-Regular.ufo/glyphs/b.glif diff --git a/sources/Lora-Regular.ufo/glyphs/backslash.glif b/sources/archive/Lora-Regular.ufo/glyphs/backslash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/backslash.glif rename to sources/archive/Lora-Regular.ufo/glyphs/backslash.glif diff --git a/sources/Lora-Regular.ufo/glyphs/bar.glif b/sources/archive/Lora-Regular.ufo/glyphs/bar.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/bar.glif rename to sources/archive/Lora-Regular.ufo/glyphs/bar.glif diff --git a/sources/Lora-Regular.ufo/glyphs/be-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/be-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/be-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/be-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/be-cy.loclS_R_B_.glif b/sources/archive/Lora-Regular.ufo/glyphs/be-cy.loclS_R_B_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/be-cy.loclS_R_B_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/be-cy.loclS_R_B_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/braceleft.glif b/sources/archive/Lora-Regular.ufo/glyphs/braceleft.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/braceleft.glif rename to sources/archive/Lora-Regular.ufo/glyphs/braceleft.glif diff --git a/sources/Lora-Regular.ufo/glyphs/braceright.glif b/sources/archive/Lora-Regular.ufo/glyphs/braceright.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/braceright.glif rename to sources/archive/Lora-Regular.ufo/glyphs/braceright.glif diff --git a/sources/Lora-Regular.ufo/glyphs/bracketleft.glif b/sources/archive/Lora-Regular.ufo/glyphs/bracketleft.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/bracketleft.glif rename to sources/archive/Lora-Regular.ufo/glyphs/bracketleft.glif diff --git a/sources/Lora-Regular.ufo/glyphs/bracketright.glif b/sources/archive/Lora-Regular.ufo/glyphs/bracketright.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/bracketright.glif rename to sources/archive/Lora-Regular.ufo/glyphs/bracketright.glif diff --git a/sources/Lora-Regular.ufo/glyphs/breve.glif b/sources/archive/Lora-Regular.ufo/glyphs/breve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/breve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/breve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb-cy.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb-cy.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb-cy.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb-cy.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb_acutecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb_acutecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb_acutecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb_acutecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb_acutecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb_acutecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb_acutecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb_acutecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb_gravecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb_gravecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb_gravecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb_gravecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb_gravecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb_gravecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb_gravecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb_gravecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb_hookabovecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb_hookabovecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb_hookabovecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb_hookabovecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb_hookabovecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb_hookabovecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb_tildecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb_tildecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb_tildecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb_tildecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brevecomb_tildecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/brevecomb_tildecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brevecomb_tildecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brevecomb_tildecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/brokenbar.glif b/sources/archive/Lora-Regular.ufo/glyphs/brokenbar.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/brokenbar.glif rename to sources/archive/Lora-Regular.ufo/glyphs/brokenbar.glif diff --git a/sources/Lora-Regular.ufo/glyphs/bullet.glif b/sources/archive/Lora-Regular.ufo/glyphs/bullet.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/bullet.glif rename to sources/archive/Lora-Regular.ufo/glyphs/bullet.glif diff --git a/sources/Lora-Regular.ufo/glyphs/bulletoperator.glif b/sources/archive/Lora-Regular.ufo/glyphs/bulletoperator.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/bulletoperator.glif rename to sources/archive/Lora-Regular.ufo/glyphs/bulletoperator.glif diff --git a/sources/Lora-Regular.ufo/glyphs/c.glif b/sources/archive/Lora-Regular.ufo/glyphs/c.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/c.glif rename to sources/archive/Lora-Regular.ufo/glyphs/c.glif diff --git a/sources/Lora-Regular.ufo/glyphs/cacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/cacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/cacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/cacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/caron.glif b/sources/archive/Lora-Regular.ufo/glyphs/caron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/caron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/caron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/caroncomb.alt.glif b/sources/archive/Lora-Regular.ufo/glyphs/caroncomb.alt.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/caroncomb.alt.glif rename to sources/archive/Lora-Regular.ufo/glyphs/caroncomb.alt.glif diff --git a/sources/Lora-Regular.ufo/glyphs/caroncomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/caroncomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/caroncomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/caroncomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/caroncomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/caroncomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/caroncomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/caroncomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ccaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/ccaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ccaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ccaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ccedilla.glif b/sources/archive/Lora-Regular.ufo/glyphs/ccedilla.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ccedilla.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ccedilla.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ccircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/ccircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ccircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ccircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/cdotaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/cdotaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/cdotaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/cdotaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/cedilla.glif b/sources/archive/Lora-Regular.ufo/glyphs/cedilla.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/cedilla.glif rename to sources/archive/Lora-Regular.ufo/glyphs/cedilla.glif diff --git a/sources/Lora-Regular.ufo/glyphs/cedillacomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/cedillacomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/cedillacomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/cedillacomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/cedillacomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/cedillacomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/cedillacomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/cedillacomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/cent.glif b/sources/archive/Lora-Regular.ufo/glyphs/cent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/cent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/cent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/cent.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/cent.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/cent.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/cent.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/che-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/che-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/che-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/che-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/che-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/che-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/che-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/che-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/cheabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/cheabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/cheabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/cheabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/chedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/chedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/chedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/chedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/chedescenderabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/chedescenderabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/chedescenderabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/chedescenderabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/chedieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/chedieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/chedieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/chedieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/chekhakassian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/chekhakassian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/chekhakassian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/chekhakassian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/cheverticalstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/cheverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/cheverticalstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/cheverticalstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb.case.i.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb.case.i.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb.case.i.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb.case.i.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb.i.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb.i.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb.i.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb.i.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb_acutecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_acutecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb_acutecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_acutecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb_acutecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_acutecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb_acutecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_acutecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb_gravecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_gravecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb_gravecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_gravecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb_gravecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_gravecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb_gravecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_gravecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_hookabovecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb_hookabovecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_hookabovecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb_hookabovecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_hookabovecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb_tildecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_tildecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb_tildecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_tildecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/circumflexcomb_tildecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_tildecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/circumflexcomb_tildecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/circumflexcomb_tildecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/colon.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/colon.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/colon.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/colon.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/colon.glif b/sources/archive/Lora-Regular.ufo/glyphs/colon.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/colon.glif rename to sources/archive/Lora-Regular.ufo/glyphs/colon.glif diff --git a/sources/Lora-Regular.ufo/glyphs/colon.tf.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/colon.tf.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/colon.tf.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/colon.tf.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/colon.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/colon.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/colon.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/colon.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/comma.glif b/sources/archive/Lora-Regular.ufo/glyphs/comma.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/comma.glif rename to sources/archive/Lora-Regular.ufo/glyphs/comma.glif diff --git a/sources/Lora-Regular.ufo/glyphs/comma.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/comma.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/comma.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/comma.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/commaaccentcomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/commaaccentcomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/commaaccentcomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/commaaccentcomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/commaturnedmod.glif b/sources/archive/Lora-Regular.ufo/glyphs/commaturnedmod.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/commaturnedmod.glif rename to sources/archive/Lora-Regular.ufo/glyphs/commaturnedmod.glif diff --git a/sources/Lora-Regular.ufo/glyphs/commercialM_inusS_ign.glif b/sources/archive/Lora-Regular.ufo/glyphs/commercialM_inusS_ign.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/commercialM_inusS_ign.glif rename to sources/archive/Lora-Regular.ufo/glyphs/commercialM_inusS_ign.glif diff --git a/sources/Lora-Regular.ufo/glyphs/contents.plist b/sources/archive/Lora-Regular.ufo/glyphs/contents.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/contents.plist rename to sources/archive/Lora-Regular.ufo/glyphs/contents.plist diff --git a/sources/Lora-Regular.ufo/glyphs/copyright.glif b/sources/archive/Lora-Regular.ufo/glyphs/copyright.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/copyright.glif rename to sources/archive/Lora-Regular.ufo/glyphs/copyright.glif diff --git a/sources/Lora-Regular.ufo/glyphs/currency.glif b/sources/archive/Lora-Regular.ufo/glyphs/currency.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/currency.glif rename to sources/archive/Lora-Regular.ufo/glyphs/currency.glif diff --git a/sources/Lora-Regular.ufo/glyphs/currency.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/currency.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/currency.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/currency.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/d.glif b/sources/archive/Lora-Regular.ufo/glyphs/d.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/d.glif rename to sources/archive/Lora-Regular.ufo/glyphs/d.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dagger.glif b/sources/archive/Lora-Regular.ufo/glyphs/dagger.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dagger.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dagger.glif diff --git a/sources/Lora-Regular.ufo/glyphs/daggerdbl.glif b/sources/archive/Lora-Regular.ufo/glyphs/daggerdbl.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/daggerdbl.glif rename to sources/archive/Lora-Regular.ufo/glyphs/daggerdbl.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/dcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dcroat.glif b/sources/archive/Lora-Regular.ufo/glyphs/dcroat.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dcroat.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dcroat.glif diff --git a/sources/Lora-Regular.ufo/glyphs/de-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/de-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/de-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/de-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/de-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/de-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/de-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/de-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/degree.glif b/sources/archive/Lora-Regular.ufo/glyphs/degree.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/degree.glif rename to sources/archive/Lora-Regular.ufo/glyphs/degree.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/dieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dieresiscomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/dieresiscomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dieresiscomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dieresiscomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dieresiscomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/dieresiscomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dieresiscomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dieresiscomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/divide.alt.glif b/sources/archive/Lora-Regular.ufo/glyphs/divide.alt.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/divide.alt.glif rename to sources/archive/Lora-Regular.ufo/glyphs/divide.alt.glif diff --git a/sources/Lora-Regular.ufo/glyphs/divide.glif b/sources/archive/Lora-Regular.ufo/glyphs/divide.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/divide.glif rename to sources/archive/Lora-Regular.ufo/glyphs/divide.glif diff --git a/sources/Lora-Regular.ufo/glyphs/divide.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/divide.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/divide.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/divide.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/divisionslash.glif b/sources/archive/Lora-Regular.ufo/glyphs/divisionslash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/divisionslash.glif rename to sources/archive/Lora-Regular.ufo/glyphs/divisionslash.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dje-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/dje-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dje-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dje-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dollar.glif b/sources/archive/Lora-Regular.ufo/glyphs/dollar.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dollar.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dollar.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dollar.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/dollar.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dollar.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dollar.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dotaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/dotaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dotaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dotaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dotaccentcomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/dotaccentcomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dotaccentcomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dotaccentcomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dotbelowcomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/dotbelowcomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dotbelowcomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dotbelowcomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dze-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/dze-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dze-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dze-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dzeabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/dzeabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dzeabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dzeabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/dzhe-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/dzhe-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/dzhe-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/dzhe-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/e-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/e-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/e-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/e-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/e.glif b/sources/archive/Lora-Regular.ufo/glyphs/e.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/e.glif rename to sources/archive/Lora-Regular.ufo/glyphs/e.glif diff --git a/sources/Lora-Regular.ufo/glyphs/eacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/eacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/eacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/eacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ebreve.glif b/sources/archive/Lora-Regular.ufo/glyphs/ebreve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ebreve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ebreve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ecaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/ecaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ecaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ecaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ecircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/ecircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ecircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ecircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ecircumflexacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/ecircumflexacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ecircumflexacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ecircumflexacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ecircumflexdotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/ecircumflexdotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ecircumflexdotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ecircumflexdotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ecircumflexgrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/ecircumflexgrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ecircumflexgrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ecircumflexgrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ecircumflexhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/ecircumflexhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ecircumflexhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ecircumflexhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ecircumflextilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/ecircumflextilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ecircumflextilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ecircumflextilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/edieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/edieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/edieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/edieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/edieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/edieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/edieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/edieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/edotaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/edotaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/edotaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/edotaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/edotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/edotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/edotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/edotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ef-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ef-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ef-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ef-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/egrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/egrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/egrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/egrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ehookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/ehookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ehookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ehookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/eight.glif b/sources/archive/Lora-Regular.ufo/glyphs/eight.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/eight.glif rename to sources/archive/Lora-Regular.ufo/glyphs/eight.glif diff --git a/sources/Lora-Regular.ufo/glyphs/eight.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/eight.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/eight.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/eight.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/el-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/el-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/el-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/el-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/el-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/el-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/el-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/el-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/eldescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/eldescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/eldescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/eldescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/elhook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/elhook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/elhook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/elhook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ellipsis.glif b/sources/archive/Lora-Regular.ufo/glyphs/ellipsis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ellipsis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ellipsis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/eltail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/eltail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/eltail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/eltail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/em-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/em-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/em-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/em-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/emacron.glif b/sources/archive/Lora-Regular.ufo/glyphs/emacron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/emacron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/emacron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/emdash.glif b/sources/archive/Lora-Regular.ufo/glyphs/emdash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/emdash.glif rename to sources/archive/Lora-Regular.ufo/glyphs/emdash.glif diff --git a/sources/Lora-Regular.ufo/glyphs/emtail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/emtail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/emtail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/emtail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/en-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/en-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/en-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/en-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/en-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/en-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/en-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/en-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/endash.glif b/sources/archive/Lora-Regular.ufo/glyphs/endash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/endash.glif rename to sources/archive/Lora-Regular.ufo/glyphs/endash.glif diff --git a/sources/Lora-Regular.ufo/glyphs/endescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/endescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/endescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/endescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/eng.glif b/sources/archive/Lora-Regular.ufo/glyphs/eng.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/eng.glif rename to sources/archive/Lora-Regular.ufo/glyphs/eng.glif diff --git a/sources/Lora-Regular.ufo/glyphs/enghe-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/enghe-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/enghe-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/enghe-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/enhook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/enhook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/enhook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/enhook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/enlefthook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/enlefthook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/enlefthook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/enlefthook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/entail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/entail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/entail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/entail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/eogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs/eogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/eogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs/eogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs/equal.glif b/sources/archive/Lora-Regular.ufo/glyphs/equal.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/equal.glif rename to sources/archive/Lora-Regular.ufo/glyphs/equal.glif diff --git a/sources/Lora-Regular.ufo/glyphs/equal.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/equal.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/equal.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/equal.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/er-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/er-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/er-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/er-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ereversed-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ereversed-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ereversed-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ereversed-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ertick-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ertick-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ertick-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ertick-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/es-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/es-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/es-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/es-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/esdescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/esdescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/esdescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/esdescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/esdescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Regular.ufo/glyphs/esdescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/esdescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/esdescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/esdescender-cy.loclC_H_U_.glif b/sources/archive/Lora-Regular.ufo/glyphs/esdescender-cy.loclC_H_U_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/esdescender-cy.loclC_H_U_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/esdescender-cy.loclC_H_U_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/estimated.glif b/sources/archive/Lora-Regular.ufo/glyphs/estimated.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/estimated.glif rename to sources/archive/Lora-Regular.ufo/glyphs/estimated.glif diff --git a/sources/Lora-Regular.ufo/glyphs/eth.glif b/sources/archive/Lora-Regular.ufo/glyphs/eth.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/eth.glif rename to sources/archive/Lora-Regular.ufo/glyphs/eth.glif diff --git a/sources/Lora-Regular.ufo/glyphs/etilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/etilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/etilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/etilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/euro.glif b/sources/archive/Lora-Regular.ufo/glyphs/euro.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/euro.glif rename to sources/archive/Lora-Regular.ufo/glyphs/euro.glif diff --git a/sources/Lora-Regular.ufo/glyphs/euro.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/euro.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/euro.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/euro.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/exclam.glif b/sources/archive/Lora-Regular.ufo/glyphs/exclam.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/exclam.glif rename to sources/archive/Lora-Regular.ufo/glyphs/exclam.glif diff --git a/sources/Lora-Regular.ufo/glyphs/exclamdown.glif b/sources/archive/Lora-Regular.ufo/glyphs/exclamdown.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/exclamdown.glif rename to sources/archive/Lora-Regular.ufo/glyphs/exclamdown.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ezh.glif b/sources/archive/Lora-Regular.ufo/glyphs/ezh.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ezh.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ezh.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ezhcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/ezhcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ezhcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ezhcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/f.glif b/sources/archive/Lora-Regular.ufo/glyphs/f.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/f.glif rename to sources/archive/Lora-Regular.ufo/glyphs/f.glif diff --git a/sources/Lora-Regular.ufo/glyphs/fi.glif b/sources/archive/Lora-Regular.ufo/glyphs/fi.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/fi.glif rename to sources/archive/Lora-Regular.ufo/glyphs/fi.glif diff --git a/sources/Lora-Regular.ufo/glyphs/firsttonechinese.glif b/sources/archive/Lora-Regular.ufo/glyphs/firsttonechinese.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/firsttonechinese.glif rename to sources/archive/Lora-Regular.ufo/glyphs/firsttonechinese.glif diff --git a/sources/Lora-Regular.ufo/glyphs/fita-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/fita-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/fita-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/fita-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/five.glif b/sources/archive/Lora-Regular.ufo/glyphs/five.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/five.glif rename to sources/archive/Lora-Regular.ufo/glyphs/five.glif diff --git a/sources/Lora-Regular.ufo/glyphs/five.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/five.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/five.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/five.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/fl.glif b/sources/archive/Lora-Regular.ufo/glyphs/fl.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/fl.glif rename to sources/archive/Lora-Regular.ufo/glyphs/fl.glif diff --git a/sources/Lora-Regular.ufo/glyphs/florin.glif b/sources/archive/Lora-Regular.ufo/glyphs/florin.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/florin.glif rename to sources/archive/Lora-Regular.ufo/glyphs/florin.glif diff --git a/sources/Lora-Regular.ufo/glyphs/florin.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/florin.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/florin.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/florin.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/foundry.glif b/sources/archive/Lora-Regular.ufo/glyphs/foundry.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/foundry.glif rename to sources/archive/Lora-Regular.ufo/glyphs/foundry.glif diff --git a/sources/Lora-Regular.ufo/glyphs/four.glif b/sources/archive/Lora-Regular.ufo/glyphs/four.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/four.glif rename to sources/archive/Lora-Regular.ufo/glyphs/four.glif diff --git a/sources/Lora-Regular.ufo/glyphs/four.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/four.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/four.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/four.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/foursuperior.glif b/sources/archive/Lora-Regular.ufo/glyphs/foursuperior.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/foursuperior.glif rename to sources/archive/Lora-Regular.ufo/glyphs/foursuperior.glif diff --git a/sources/Lora-Regular.ufo/glyphs/fraction.glif b/sources/archive/Lora-Regular.ufo/glyphs/fraction.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/fraction.glif rename to sources/archive/Lora-Regular.ufo/glyphs/fraction.glif diff --git a/sources/Lora-Regular.ufo/glyphs/g.glif b/sources/archive/Lora-Regular.ufo/glyphs/g.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/g.glif rename to sources/archive/Lora-Regular.ufo/glyphs/g.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gbreve.glif b/sources/archive/Lora-Regular.ufo/glyphs/gbreve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gbreve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gbreve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/gcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gcircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/gcircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gcircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gcircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gcommaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/gcommaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gcommaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gcommaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ge-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ge-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ge-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ge-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ge-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/ge-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ge-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ge-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/gedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/germandbls.glif b/sources/archive/Lora-Regular.ufo/glyphs/germandbls.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/germandbls.glif rename to sources/archive/Lora-Regular.ufo/glyphs/germandbls.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gestrokehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/gestrokehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gestrokehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gestrokehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ghemiddlehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ghemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ghemiddlehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ghemiddlehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ghestroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ghestroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ghestroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ghestroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif b/sources/archive/Lora-Regular.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ghestroke-cy.loclB_S_H_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gheupturn-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/gheupturn-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gheupturn-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gheupturn-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gje-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/gje-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gje-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gje-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/grave.glif b/sources/archive/Lora-Regular.ufo/glyphs/grave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/grave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/grave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gravecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/gravecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gravecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gravecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gravecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/gravecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gravecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gravecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/greater.glif b/sources/archive/Lora-Regular.ufo/glyphs/greater.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/greater.glif rename to sources/archive/Lora-Regular.ufo/glyphs/greater.glif diff --git a/sources/Lora-Regular.ufo/glyphs/greater.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/greater.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/greater.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/greater.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/greaterequal.glif b/sources/archive/Lora-Regular.ufo/glyphs/greaterequal.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/greaterequal.glif rename to sources/archive/Lora-Regular.ufo/glyphs/greaterequal.glif diff --git a/sources/Lora-Regular.ufo/glyphs/greaterequal.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/greaterequal.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/greaterequal.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/greaterequal.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/gstroke.glif b/sources/archive/Lora-Regular.ufo/glyphs/gstroke.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/gstroke.glif rename to sources/archive/Lora-Regular.ufo/glyphs/gstroke.glif diff --git a/sources/Lora-Regular.ufo/glyphs/guillemetleft.glif b/sources/archive/Lora-Regular.ufo/glyphs/guillemetleft.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/guillemetleft.glif rename to sources/archive/Lora-Regular.ufo/glyphs/guillemetleft.glif diff --git a/sources/Lora-Regular.ufo/glyphs/guillemetright.glif b/sources/archive/Lora-Regular.ufo/glyphs/guillemetright.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/guillemetright.glif rename to sources/archive/Lora-Regular.ufo/glyphs/guillemetright.glif diff --git a/sources/Lora-Regular.ufo/glyphs/guilsinglleft.glif b/sources/archive/Lora-Regular.ufo/glyphs/guilsinglleft.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/guilsinglleft.glif rename to sources/archive/Lora-Regular.ufo/glyphs/guilsinglleft.glif diff --git a/sources/Lora-Regular.ufo/glyphs/guilsinglright.glif b/sources/archive/Lora-Regular.ufo/glyphs/guilsinglright.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/guilsinglright.glif rename to sources/archive/Lora-Regular.ufo/glyphs/guilsinglright.glif diff --git a/sources/Lora-Regular.ufo/glyphs/h.glif b/sources/archive/Lora-Regular.ufo/glyphs/h.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/h.glif rename to sources/archive/Lora-Regular.ufo/glyphs/h.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ha-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ha-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ha-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ha-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/haabkhasian-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/haabkhasian-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/haabkhasian-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/haabkhasian-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hadescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/hadescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hadescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hadescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hahook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/hahook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hahook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hahook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hardsign-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/hardsign-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hardsign-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hardsign-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hardsign-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/hardsign-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hardsign-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hardsign-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hastroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/hastroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hastroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hastroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hbar.glif b/sources/archive/Lora-Regular.ufo/glyphs/hbar.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hbar.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hbar.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/hcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hcircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/hcircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hcircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hcircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hookabovecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/hookabovecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hookabovecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hookabovecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/horncomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/horncomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/horncomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/horncomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hryvnia.glif b/sources/archive/Lora-Regular.ufo/glyphs/hryvnia.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hryvnia.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hryvnia.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hryvnia.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/hryvnia.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hryvnia.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hryvnia.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hungarumlaut.glif b/sources/archive/Lora-Regular.ufo/glyphs/hungarumlaut.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hungarumlaut.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hungarumlaut.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hungarumlautcomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/hungarumlautcomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hungarumlautcomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hungarumlautcomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hungarumlautcomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/hungarumlautcomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hungarumlautcomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hungarumlautcomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hyphen.glif b/sources/archive/Lora-Regular.ufo/glyphs/hyphen.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hyphen.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hyphen.glif diff --git a/sources/Lora-Regular.ufo/glyphs/hyphentwo.glif b/sources/archive/Lora-Regular.ufo/glyphs/hyphentwo.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/hyphentwo.glif rename to sources/archive/Lora-Regular.ufo/glyphs/hyphentwo.glif diff --git a/sources/Lora-Regular.ufo/glyphs/i-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/i-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/i-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/i-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/i.glif b/sources/archive/Lora-Regular.ufo/glyphs/i.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/i.glif rename to sources/archive/Lora-Regular.ufo/glyphs/i.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ia-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ia-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ia-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ia-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/iacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ibreve.glif b/sources/archive/Lora-Regular.ufo/glyphs/ibreve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ibreve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ibreve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/icircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/icircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/icircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/icircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/idieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/idieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/idieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/idieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/idieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/idieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/idieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/idieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/idotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/idotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/idotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/idotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/idotless.glif b/sources/archive/Lora-Regular.ufo/glyphs/idotless.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/idotless.glif rename to sources/archive/Lora-Regular.ufo/glyphs/idotless.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ie-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ie-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ie-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ie-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iebreve-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/iebreve-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iebreve-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iebreve-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iegrave-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/iegrave-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iegrave-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iegrave-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/igrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/igrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/igrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/igrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ihookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/ihookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ihookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ihookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ii-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ii-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ii-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ii-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ii-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/ii-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ii-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ii-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iigrave-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/iigrave-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iigrave-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iigrave-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iigrave-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/iigrave-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iigrave-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iigrave-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iishort-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/iishort-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iishort-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iishort-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iishort-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/iishort-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iishort-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iishort-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iishorttail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/iishorttail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iishorttail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iishorttail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/imacron-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/imacron-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/imacron-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/imacron-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/imacron.glif b/sources/archive/Lora-Regular.ufo/glyphs/imacron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/imacron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/imacron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/increment.glif b/sources/archive/Lora-Regular.ufo/glyphs/increment.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/increment.glif rename to sources/archive/Lora-Regular.ufo/glyphs/increment.glif diff --git a/sources/Lora-Regular.ufo/glyphs/infinity.glif b/sources/archive/Lora-Regular.ufo/glyphs/infinity.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/infinity.glif rename to sources/archive/Lora-Regular.ufo/glyphs/infinity.glif diff --git a/sources/Lora-Regular.ufo/glyphs/integral.glif b/sources/archive/Lora-Regular.ufo/glyphs/integral.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/integral.glif rename to sources/archive/Lora-Regular.ufo/glyphs/integral.glif diff --git a/sources/Lora-Regular.ufo/glyphs/io-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/io-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/io-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/io-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs/iogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs/itilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/itilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/itilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/itilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iu-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/iu-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iu-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iu-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/iu-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/iu-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/iu-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/iu-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/izhitsa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/izhitsa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/izhitsa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/izhitsa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/j.glif b/sources/archive/Lora-Regular.ufo/glyphs/j.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/j.glif rename to sources/archive/Lora-Regular.ufo/glyphs/j.glif diff --git a/sources/Lora-Regular.ufo/glyphs/jcircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/jcircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/jcircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/jcircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/jdotless.glif b/sources/archive/Lora-Regular.ufo/glyphs/jdotless.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/jdotless.glif rename to sources/archive/Lora-Regular.ufo/glyphs/jdotless.glif diff --git a/sources/Lora-Regular.ufo/glyphs/je-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/je-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/je-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/je-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/k.glif b/sources/archive/Lora-Regular.ufo/glyphs/k.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/k.glif rename to sources/archive/Lora-Regular.ufo/glyphs/k.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ka-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ka-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ka-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ka-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ka-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/ka-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ka-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ka-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/kabashkir-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/kabashkir-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/kabashkir-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/kabashkir-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/kadescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/kadescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/kadescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/kadescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/kahook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/kahook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/kahook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/kahook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/kastroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/kastroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/kastroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/kastroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/kaverticalstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/kaverticalstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/kaverticalstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/kaverticalstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/kcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/kcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/kcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/kcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/kcommaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/kcommaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/kcommaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/kcommaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/kelvin.glif b/sources/archive/Lora-Regular.ufo/glyphs/kelvin.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/kelvin.glif rename to sources/archive/Lora-Regular.ufo/glyphs/kelvin.glif diff --git a/sources/Lora-Regular.ufo/glyphs/kje-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/kje-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/kje-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/kje-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/l.glif b/sources/archive/Lora-Regular.ufo/glyphs/l.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/l.glif rename to sources/archive/Lora-Regular.ufo/glyphs/l.glif diff --git a/sources/Lora-Regular.ufo/glyphs/lacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/lacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/lacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/lacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/layerinfo.plist b/sources/archive/Lora-Regular.ufo/glyphs/layerinfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/layerinfo.plist rename to sources/archive/Lora-Regular.ufo/glyphs/layerinfo.plist diff --git a/sources/Lora-Regular.ufo/glyphs/lcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/lcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/lcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/lcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/lcommaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/lcommaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/lcommaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/lcommaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ldot.glif b/sources/archive/Lora-Regular.ufo/glyphs/ldot.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ldot.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ldot.glif diff --git a/sources/Lora-Regular.ufo/glyphs/leftanglebracket-math.glif b/sources/archive/Lora-Regular.ufo/glyphs/leftanglebracket-math.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/leftanglebracket-math.glif rename to sources/archive/Lora-Regular.ufo/glyphs/leftanglebracket-math.glif diff --git a/sources/Lora-Regular.ufo/glyphs/less.glif b/sources/archive/Lora-Regular.ufo/glyphs/less.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/less.glif rename to sources/archive/Lora-Regular.ufo/glyphs/less.glif diff --git a/sources/Lora-Regular.ufo/glyphs/less.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/less.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/less.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/less.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/lessequal.glif b/sources/archive/Lora-Regular.ufo/glyphs/lessequal.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/lessequal.glif rename to sources/archive/Lora-Regular.ufo/glyphs/lessequal.glif diff --git a/sources/Lora-Regular.ufo/glyphs/lessequal.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/lessequal.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/lessequal.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/lessequal.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/liraT_urkish.glif b/sources/archive/Lora-Regular.ufo/glyphs/liraT_urkish.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/liraT_urkish.glif rename to sources/archive/Lora-Regular.ufo/glyphs/liraT_urkish.glif diff --git a/sources/Lora-Regular.ufo/glyphs/liraT_urkish.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/liraT_urkish.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/liraT_urkish.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/liraT_urkish.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/literS_ign.glif b/sources/archive/Lora-Regular.ufo/glyphs/literS_ign.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/literS_ign.glif rename to sources/archive/Lora-Regular.ufo/glyphs/literS_ign.glif diff --git a/sources/Lora-Regular.ufo/glyphs/lje-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/lje-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/lje-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/lje-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/logicalnot.glif b/sources/archive/Lora-Regular.ufo/glyphs/logicalnot.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/logicalnot.glif rename to sources/archive/Lora-Regular.ufo/glyphs/logicalnot.glif diff --git a/sources/Lora-Regular.ufo/glyphs/logicalnot.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/logicalnot.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/logicalnot.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/logicalnot.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/longs.glif b/sources/archive/Lora-Regular.ufo/glyphs/longs.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/longs.glif rename to sources/archive/Lora-Regular.ufo/glyphs/longs.glif diff --git a/sources/Lora-Regular.ufo/glyphs/lozenge.glif b/sources/archive/Lora-Regular.ufo/glyphs/lozenge.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/lozenge.glif rename to sources/archive/Lora-Regular.ufo/glyphs/lozenge.glif diff --git a/sources/Lora-Regular.ufo/glyphs/lslash.glif b/sources/archive/Lora-Regular.ufo/glyphs/lslash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/lslash.glif rename to sources/archive/Lora-Regular.ufo/glyphs/lslash.glif diff --git a/sources/Lora-Regular.ufo/glyphs/m.glif b/sources/archive/Lora-Regular.ufo/glyphs/m.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/m.glif rename to sources/archive/Lora-Regular.ufo/glyphs/m.glif diff --git a/sources/Lora-Regular.ufo/glyphs/macron.glif b/sources/archive/Lora-Regular.ufo/glyphs/macron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/macron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/macron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/macroncomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/macroncomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/macroncomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/macroncomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/micro.glif b/sources/archive/Lora-Regular.ufo/glyphs/micro.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/micro.glif rename to sources/archive/Lora-Regular.ufo/glyphs/micro.glif diff --git a/sources/Lora-Regular.ufo/glyphs/minus.glif b/sources/archive/Lora-Regular.ufo/glyphs/minus.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/minus.glif rename to sources/archive/Lora-Regular.ufo/glyphs/minus.glif diff --git a/sources/Lora-Regular.ufo/glyphs/minus.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/minus.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/minus.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/minus.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/minute.glif b/sources/archive/Lora-Regular.ufo/glyphs/minute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/minute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/minute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/mu.glif b/sources/archive/Lora-Regular.ufo/glyphs/mu.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/mu.glif rename to sources/archive/Lora-Regular.ufo/glyphs/mu.glif diff --git a/sources/Lora-Regular.ufo/glyphs/multiply.glif b/sources/archive/Lora-Regular.ufo/glyphs/multiply.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/multiply.glif rename to sources/archive/Lora-Regular.ufo/glyphs/multiply.glif diff --git a/sources/Lora-Regular.ufo/glyphs/multiply.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/multiply.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/multiply.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/multiply.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/n.glif b/sources/archive/Lora-Regular.ufo/glyphs/n.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/n.glif rename to sources/archive/Lora-Regular.ufo/glyphs/n.glif diff --git a/sources/Lora-Regular.ufo/glyphs/nacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/nacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/nacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/nacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/napostrophe.glif b/sources/archive/Lora-Regular.ufo/glyphs/napostrophe.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/napostrophe.glif rename to sources/archive/Lora-Regular.ufo/glyphs/napostrophe.glif diff --git a/sources/Lora-Regular.ufo/glyphs/nbspace.glif b/sources/archive/Lora-Regular.ufo/glyphs/nbspace.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/nbspace.glif rename to sources/archive/Lora-Regular.ufo/glyphs/nbspace.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ncaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/ncaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ncaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ncaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ncommaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/ncommaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ncommaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ncommaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/nine.glif b/sources/archive/Lora-Regular.ufo/glyphs/nine.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/nine.glif rename to sources/archive/Lora-Regular.ufo/glyphs/nine.glif diff --git a/sources/Lora-Regular.ufo/glyphs/nine.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/nine.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/nine.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/nine.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/nje-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/nje-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/nje-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/nje-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/notequal.glif b/sources/archive/Lora-Regular.ufo/glyphs/notequal.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/notequal.glif rename to sources/archive/Lora-Regular.ufo/glyphs/notequal.glif diff --git a/sources/Lora-Regular.ufo/glyphs/notequal.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/notequal.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/notequal.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/notequal.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ntilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/ntilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ntilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ntilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/numbersign.glif b/sources/archive/Lora-Regular.ufo/glyphs/numbersign.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/numbersign.glif rename to sources/archive/Lora-Regular.ufo/glyphs/numbersign.glif diff --git a/sources/Lora-Regular.ufo/glyphs/numbersign.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/numbersign.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/numbersign.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/numbersign.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/numero.glif b/sources/archive/Lora-Regular.ufo/glyphs/numero.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/numero.glif rename to sources/archive/Lora-Regular.ufo/glyphs/numero.glif diff --git a/sources/Lora-Regular.ufo/glyphs/o-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/o-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/o-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/o-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/o.glif b/sources/archive/Lora-Regular.ufo/glyphs/o.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/o.glif rename to sources/archive/Lora-Regular.ufo/glyphs/o.glif diff --git a/sources/Lora-Regular.ufo/glyphs/oacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/oacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/oacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/oacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/obarred-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/obarred-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/obarred-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/obarred-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/obarreddieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/obarreddieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/obarreddieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/obarreddieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/obreve.glif b/sources/archive/Lora-Regular.ufo/glyphs/obreve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/obreve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/obreve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ocircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/ocircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ocircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ocircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ocircumflexacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/ocircumflexacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ocircumflexacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ocircumflexacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ocircumflexdotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/ocircumflexdotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ocircumflexdotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ocircumflexdotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ocircumflexgrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/ocircumflexgrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ocircumflexgrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ocircumflexgrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ocircumflexhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/ocircumflexhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ocircumflexhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ocircumflexhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ocircumflextilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/ocircumflextilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ocircumflextilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ocircumflextilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/odieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/odieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/odieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/odieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/odieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/odieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/odieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/odieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/odotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/odotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/odotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/odotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/oe.glif b/sources/archive/Lora-Regular.ufo/glyphs/oe.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/oe.glif rename to sources/archive/Lora-Regular.ufo/glyphs/oe.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs/ogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ogonekcomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/ogonekcomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ogonekcomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ogonekcomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ograve.glif b/sources/archive/Lora-Regular.ufo/glyphs/ograve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ograve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ograve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ohookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/ohookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ohookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ohookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ohorn.glif b/sources/archive/Lora-Regular.ufo/glyphs/ohorn.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ohorn.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ohorn.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ohornacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/ohornacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ohornacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ohornacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ohorndotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/ohorndotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ohorndotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ohorndotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ohorngrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/ohorngrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ohorngrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ohorngrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ohornhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/ohornhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ohornhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ohornhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ohorntilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/ohorntilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ohorntilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ohorntilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ohungarumlaut.glif b/sources/archive/Lora-Regular.ufo/glyphs/ohungarumlaut.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ohungarumlaut.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ohungarumlaut.glif diff --git a/sources/Lora-Regular.ufo/glyphs/omacron.glif b/sources/archive/Lora-Regular.ufo/glyphs/omacron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/omacron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/omacron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/one.glif b/sources/archive/Lora-Regular.ufo/glyphs/one.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/one.glif rename to sources/archive/Lora-Regular.ufo/glyphs/one.glif diff --git a/sources/Lora-Regular.ufo/glyphs/one.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/one.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/one.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/one.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/onehalf.glif b/sources/archive/Lora-Regular.ufo/glyphs/onehalf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/onehalf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/onehalf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/onequarter.glif b/sources/archive/Lora-Regular.ufo/glyphs/onequarter.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/onequarter.glif rename to sources/archive/Lora-Regular.ufo/glyphs/onequarter.glif diff --git a/sources/Lora-Regular.ufo/glyphs/onesuperior.glif b/sources/archive/Lora-Regular.ufo/glyphs/onesuperior.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/onesuperior.glif rename to sources/archive/Lora-Regular.ufo/glyphs/onesuperior.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ordfeminine.glif b/sources/archive/Lora-Regular.ufo/glyphs/ordfeminine.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ordfeminine.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ordfeminine.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ordmasculine.glif b/sources/archive/Lora-Regular.ufo/glyphs/ordmasculine.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ordmasculine.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ordmasculine.glif diff --git a/sources/Lora-Regular.ufo/glyphs/oslash.glif b/sources/archive/Lora-Regular.ufo/glyphs/oslash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/oslash.glif rename to sources/archive/Lora-Regular.ufo/glyphs/oslash.glif diff --git a/sources/Lora-Regular.ufo/glyphs/oslashacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/oslashacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/oslashacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/oslashacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/otilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/otilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/otilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/otilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/p.glif b/sources/archive/Lora-Regular.ufo/glyphs/p.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/p.glif rename to sources/archive/Lora-Regular.ufo/glyphs/p.glif diff --git a/sources/Lora-Regular.ufo/glyphs/palochka-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/palochka-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/palochka-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/palochka-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/paragraph.glif b/sources/archive/Lora-Regular.ufo/glyphs/paragraph.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/paragraph.glif rename to sources/archive/Lora-Regular.ufo/glyphs/paragraph.glif diff --git a/sources/Lora-Regular.ufo/glyphs/parenleft.glif b/sources/archive/Lora-Regular.ufo/glyphs/parenleft.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/parenleft.glif rename to sources/archive/Lora-Regular.ufo/glyphs/parenleft.glif diff --git a/sources/Lora-Regular.ufo/glyphs/parenright.glif b/sources/archive/Lora-Regular.ufo/glyphs/parenright.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/parenright.glif rename to sources/archive/Lora-Regular.ufo/glyphs/parenright.glif diff --git a/sources/Lora-Regular.ufo/glyphs/partialdiff.glif b/sources/archive/Lora-Regular.ufo/glyphs/partialdiff.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/partialdiff.glif rename to sources/archive/Lora-Regular.ufo/glyphs/partialdiff.glif diff --git a/sources/Lora-Regular.ufo/glyphs/pe-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/pe-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/pe-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/pe-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/pe-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/pe-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/pe-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/pe-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/pedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/pedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/pedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/pedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/pemiddlehook-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/pemiddlehook-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/pemiddlehook-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/pemiddlehook-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/percent.glif b/sources/archive/Lora-Regular.ufo/glyphs/percent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/percent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/percent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/percent.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/percent.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/percent.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/percent.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/period.glif b/sources/archive/Lora-Regular.ufo/glyphs/period.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/period.glif rename to sources/archive/Lora-Regular.ufo/glyphs/period.glif diff --git a/sources/Lora-Regular.ufo/glyphs/period.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/period.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/period.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/period.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/periodcentered.glif b/sources/archive/Lora-Regular.ufo/glyphs/periodcentered.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/periodcentered.glif rename to sources/archive/Lora-Regular.ufo/glyphs/periodcentered.glif diff --git a/sources/Lora-Regular.ufo/glyphs/periodcentered.loclC_A_T_.glif b/sources/archive/Lora-Regular.ufo/glyphs/periodcentered.loclC_A_T_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/periodcentered.loclC_A_T_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/periodcentered.loclC_A_T_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/perthousand.glif b/sources/archive/Lora-Regular.ufo/glyphs/perthousand.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/perthousand.glif rename to sources/archive/Lora-Regular.ufo/glyphs/perthousand.glif diff --git a/sources/Lora-Regular.ufo/glyphs/pi.glif b/sources/archive/Lora-Regular.ufo/glyphs/pi.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/pi.glif rename to sources/archive/Lora-Regular.ufo/glyphs/pi.glif diff --git a/sources/Lora-Regular.ufo/glyphs/plus.glif b/sources/archive/Lora-Regular.ufo/glyphs/plus.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/plus.glif rename to sources/archive/Lora-Regular.ufo/glyphs/plus.glif diff --git a/sources/Lora-Regular.ufo/glyphs/plus.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/plus.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/plus.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/plus.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/plusminus.glif b/sources/archive/Lora-Regular.ufo/glyphs/plusminus.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/plusminus.glif rename to sources/archive/Lora-Regular.ufo/glyphs/plusminus.glif diff --git a/sources/Lora-Regular.ufo/glyphs/plusminus.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/plusminus.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/plusminus.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/plusminus.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/product.glif b/sources/archive/Lora-Regular.ufo/glyphs/product.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/product.glif rename to sources/archive/Lora-Regular.ufo/glyphs/product.glif diff --git a/sources/Lora-Regular.ufo/glyphs/q.glif b/sources/archive/Lora-Regular.ufo/glyphs/q.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/q.glif rename to sources/archive/Lora-Regular.ufo/glyphs/q.glif diff --git a/sources/Lora-Regular.ufo/glyphs/qa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/qa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/qa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/qa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/question.glif b/sources/archive/Lora-Regular.ufo/glyphs/question.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/question.glif rename to sources/archive/Lora-Regular.ufo/glyphs/question.glif diff --git a/sources/Lora-Regular.ufo/glyphs/questiondown.glif b/sources/archive/Lora-Regular.ufo/glyphs/questiondown.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/questiondown.glif rename to sources/archive/Lora-Regular.ufo/glyphs/questiondown.glif diff --git a/sources/Lora-Regular.ufo/glyphs/quotedbl.glif b/sources/archive/Lora-Regular.ufo/glyphs/quotedbl.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/quotedbl.glif rename to sources/archive/Lora-Regular.ufo/glyphs/quotedbl.glif diff --git a/sources/Lora-Regular.ufo/glyphs/quotedblbase.glif b/sources/archive/Lora-Regular.ufo/glyphs/quotedblbase.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/quotedblbase.glif rename to sources/archive/Lora-Regular.ufo/glyphs/quotedblbase.glif diff --git a/sources/Lora-Regular.ufo/glyphs/quotedblleft.glif b/sources/archive/Lora-Regular.ufo/glyphs/quotedblleft.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/quotedblleft.glif rename to sources/archive/Lora-Regular.ufo/glyphs/quotedblleft.glif diff --git a/sources/Lora-Regular.ufo/glyphs/quotedblright.glif b/sources/archive/Lora-Regular.ufo/glyphs/quotedblright.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/quotedblright.glif rename to sources/archive/Lora-Regular.ufo/glyphs/quotedblright.glif diff --git a/sources/Lora-Regular.ufo/glyphs/quoteleft.glif b/sources/archive/Lora-Regular.ufo/glyphs/quoteleft.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/quoteleft.glif rename to sources/archive/Lora-Regular.ufo/glyphs/quoteleft.glif diff --git a/sources/Lora-Regular.ufo/glyphs/quoteright.glif b/sources/archive/Lora-Regular.ufo/glyphs/quoteright.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/quoteright.glif rename to sources/archive/Lora-Regular.ufo/glyphs/quoteright.glif diff --git a/sources/Lora-Regular.ufo/glyphs/quotesinglbase.glif b/sources/archive/Lora-Regular.ufo/glyphs/quotesinglbase.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/quotesinglbase.glif rename to sources/archive/Lora-Regular.ufo/glyphs/quotesinglbase.glif diff --git a/sources/Lora-Regular.ufo/glyphs/quotesingle.glif b/sources/archive/Lora-Regular.ufo/glyphs/quotesingle.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/quotesingle.glif rename to sources/archive/Lora-Regular.ufo/glyphs/quotesingle.glif diff --git a/sources/Lora-Regular.ufo/glyphs/r.glif b/sources/archive/Lora-Regular.ufo/glyphs/r.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/r.glif rename to sources/archive/Lora-Regular.ufo/glyphs/r.glif diff --git a/sources/Lora-Regular.ufo/glyphs/racute.glif b/sources/archive/Lora-Regular.ufo/glyphs/racute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/racute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/racute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/radical.glif b/sources/archive/Lora-Regular.ufo/glyphs/radical.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/radical.glif rename to sources/archive/Lora-Regular.ufo/glyphs/radical.glif diff --git a/sources/Lora-Regular.ufo/glyphs/rcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/rcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/rcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/rcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/rcommaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/rcommaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/rcommaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/rcommaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/registered.glif b/sources/archive/Lora-Regular.ufo/glyphs/registered.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/registered.glif rename to sources/archive/Lora-Regular.ufo/glyphs/registered.glif diff --git a/sources/Lora-Regular.ufo/glyphs/reversedze-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/reversedze-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/reversedze-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/reversedze-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/rightanglebracket-math.glif b/sources/archive/Lora-Regular.ufo/glyphs/rightanglebracket-math.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/rightanglebracket-math.glif rename to sources/archive/Lora-Regular.ufo/glyphs/rightanglebracket-math.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ring.glif b/sources/archive/Lora-Regular.ufo/glyphs/ring.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ring.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ring.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ringcomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/ringcomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ringcomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ringcomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ringcomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/ringcomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ringcomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ringcomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ruble.glif b/sources/archive/Lora-Regular.ufo/glyphs/ruble.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ruble.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ruble.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ruble.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/ruble.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ruble.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ruble.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/s.glif b/sources/archive/Lora-Regular.ufo/glyphs/s.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/s.glif rename to sources/archive/Lora-Regular.ufo/glyphs/s.glif diff --git a/sources/Lora-Regular.ufo/glyphs/sacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/sacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/sacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/sacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/scaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/scaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/scaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/scaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/scedilla.glif b/sources/archive/Lora-Regular.ufo/glyphs/scedilla.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/scedilla.glif rename to sources/archive/Lora-Regular.ufo/glyphs/scedilla.glif diff --git a/sources/Lora-Regular.ufo/glyphs/schwa-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/schwa-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/schwa-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/schwa-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/schwa.glif b/sources/archive/Lora-Regular.ufo/glyphs/schwa.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/schwa.glif rename to sources/archive/Lora-Regular.ufo/glyphs/schwa.glif diff --git a/sources/Lora-Regular.ufo/glyphs/schwadieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/schwadieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/schwadieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/schwadieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/scircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/scircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/scircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/scircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/scommaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/scommaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/scommaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/scommaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/second.glif b/sources/archive/Lora-Regular.ufo/glyphs/second.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/second.glif rename to sources/archive/Lora-Regular.ufo/glyphs/second.glif diff --git a/sources/Lora-Regular.ufo/glyphs/section.glif b/sources/archive/Lora-Regular.ufo/glyphs/section.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/section.glif rename to sources/archive/Lora-Regular.ufo/glyphs/section.glif diff --git a/sources/Lora-Regular.ufo/glyphs/section.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/section.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/section.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/section.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/semicolon.glif b/sources/archive/Lora-Regular.ufo/glyphs/semicolon.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/semicolon.glif rename to sources/archive/Lora-Regular.ufo/glyphs/semicolon.glif diff --git a/sources/Lora-Regular.ufo/glyphs/semicolon.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/semicolon.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/semicolon.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/semicolon.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/semisoftsign-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/semisoftsign-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/semisoftsign-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/semisoftsign-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/seven.glif b/sources/archive/Lora-Regular.ufo/glyphs/seven.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/seven.glif rename to sources/archive/Lora-Regular.ufo/glyphs/seven.glif diff --git a/sources/Lora-Regular.ufo/glyphs/seven.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/seven.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/seven.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/seven.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/sha-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/sha-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/sha-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/sha-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/sha-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/sha-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/sha-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/sha-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/shcha-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/shcha-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/shcha-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/shcha-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/shcha-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/shcha-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/shcha-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/shcha-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/shha-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/shha-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/shha-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/shha-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/shhadescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/shhadescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/shhadescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/shhadescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/six.glif b/sources/archive/Lora-Regular.ufo/glyphs/six.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/six.glif rename to sources/archive/Lora-Regular.ufo/glyphs/six.glif diff --git a/sources/Lora-Regular.ufo/glyphs/six.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/six.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/six.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/six.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/slash.glif b/sources/archive/Lora-Regular.ufo/glyphs/slash.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/slash.glif rename to sources/archive/Lora-Regular.ufo/glyphs/slash.glif diff --git a/sources/Lora-Regular.ufo/glyphs/softhyphen.glif b/sources/archive/Lora-Regular.ufo/glyphs/softhyphen.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/softhyphen.glif rename to sources/archive/Lora-Regular.ufo/glyphs/softhyphen.glif diff --git a/sources/Lora-Regular.ufo/glyphs/softsign-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/softsign-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/softsign-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/softsign-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/softsign-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/softsign-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/softsign-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/softsign-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/space.glif b/sources/archive/Lora-Regular.ufo/glyphs/space.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/space.glif rename to sources/archive/Lora-Regular.ufo/glyphs/space.glif diff --git a/sources/Lora-Regular.ufo/glyphs/space.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/space.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/space.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/space.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/sterling.glif b/sources/archive/Lora-Regular.ufo/glyphs/sterling.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/sterling.glif rename to sources/archive/Lora-Regular.ufo/glyphs/sterling.glif diff --git a/sources/Lora-Regular.ufo/glyphs/sterling.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/sterling.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/sterling.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/sterling.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/strokelongcomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/strokelongcomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/strokelongcomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/strokelongcomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/strokeshortcomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/strokeshortcomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/strokeshortcomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/strokeshortcomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/summation.glif b/sources/archive/Lora-Regular.ufo/glyphs/summation.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/summation.glif rename to sources/archive/Lora-Regular.ufo/glyphs/summation.glif diff --git a/sources/Lora-Regular.ufo/glyphs/t.glif b/sources/archive/Lora-Regular.ufo/glyphs/t.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/t.glif rename to sources/archive/Lora-Regular.ufo/glyphs/t.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tail-cy.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/tail-cy.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tail-cy.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tail-cy.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tail-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/tail-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tail-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tail-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tbar.glif b/sources/archive/Lora-Regular.ufo/glyphs/tbar.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tbar.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tbar.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/tcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tcedilla.glif b/sources/archive/Lora-Regular.ufo/glyphs/tcedilla.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tcedilla.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tcedilla.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tcommaaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/tcommaaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tcommaaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tcommaaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/te-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/te-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/te-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/te-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/te-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/te-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/te-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/te-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/tedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tenge.glif b/sources/archive/Lora-Regular.ufo/glyphs/tenge.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tenge.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tenge.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tenge.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/tenge.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tenge.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tenge.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tetse-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/tetse-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tetse-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tetse-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/thorn.glif b/sources/archive/Lora-Regular.ufo/glyphs/thorn.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/thorn.glif rename to sources/archive/Lora-Regular.ufo/glyphs/thorn.glif diff --git a/sources/Lora-Regular.ufo/glyphs/three.glif b/sources/archive/Lora-Regular.ufo/glyphs/three.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/three.glif rename to sources/archive/Lora-Regular.ufo/glyphs/three.glif diff --git a/sources/Lora-Regular.ufo/glyphs/three.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/three.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/three.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/three.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/threequarters.glif b/sources/archive/Lora-Regular.ufo/glyphs/threequarters.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/threequarters.glif rename to sources/archive/Lora-Regular.ufo/glyphs/threequarters.glif diff --git a/sources/Lora-Regular.ufo/glyphs/threesuperior.glif b/sources/archive/Lora-Regular.ufo/glyphs/threesuperior.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/threesuperior.glif rename to sources/archive/Lora-Regular.ufo/glyphs/threesuperior.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/tilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tildecomb.case.glif b/sources/archive/Lora-Regular.ufo/glyphs/tildecomb.case.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tildecomb.case.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tildecomb.case.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tildecomb.glif b/sources/archive/Lora-Regular.ufo/glyphs/tildecomb.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tildecomb.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tildecomb.glif diff --git a/sources/Lora-Regular.ufo/glyphs/trademark.glif b/sources/archive/Lora-Regular.ufo/glyphs/trademark.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/trademark.glif rename to sources/archive/Lora-Regular.ufo/glyphs/trademark.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tse-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/tse-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tse-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tse-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tse-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/tse-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tse-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tse-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tshe-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/tshe-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tshe-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tshe-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tugrik.glif b/sources/archive/Lora-Regular.ufo/glyphs/tugrik.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tugrik.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tugrik.glif diff --git a/sources/Lora-Regular.ufo/glyphs/tugrik.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/tugrik.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/tugrik.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/tugrik.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/two.glif b/sources/archive/Lora-Regular.ufo/glyphs/two.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/two.glif rename to sources/archive/Lora-Regular.ufo/glyphs/two.glif diff --git a/sources/Lora-Regular.ufo/glyphs/two.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/two.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/two.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/two.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/twosuperior.glif b/sources/archive/Lora-Regular.ufo/glyphs/twosuperior.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/twosuperior.glif rename to sources/archive/Lora-Regular.ufo/glyphs/twosuperior.glif diff --git a/sources/Lora-Regular.ufo/glyphs/u-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/u-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/u-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/u-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/u.glif b/sources/archive/Lora-Regular.ufo/glyphs/u.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/u.glif rename to sources/archive/Lora-Regular.ufo/glyphs/u.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/uacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ubreve.glif b/sources/archive/Lora-Regular.ufo/glyphs/ubreve.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ubreve.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ubreve.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ucaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/ucaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ucaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ucaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ucircumflex.glif b/sources/archive/Lora-Regular.ufo/glyphs/ucircumflex.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ucircumflex.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ucircumflex.glif diff --git a/sources/Lora-Regular.ufo/glyphs/udieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/udieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/udieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/udieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/udieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/udieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/udieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/udieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/udotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/udotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/udotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/udotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ugrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/ugrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ugrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ugrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/uhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uhorn.glif b/sources/archive/Lora-Regular.ufo/glyphs/uhorn.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uhorn.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uhorn.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uhornacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/uhornacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uhornacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uhornacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uhorndotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/uhorndotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uhorndotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uhorndotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uhorngrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/uhorngrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uhorngrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uhorngrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uhornhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/uhornhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uhornhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uhornhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uhorntilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/uhorntilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uhorntilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uhorntilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uhungarumlaut-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/uhungarumlaut-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uhungarumlaut-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uhungarumlaut-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uhungarumlaut.glif b/sources/archive/Lora-Regular.ufo/glyphs/uhungarumlaut.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uhungarumlaut.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uhungarumlaut.glif diff --git a/sources/Lora-Regular.ufo/glyphs/umacron-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/umacron-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/umacron-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/umacron-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/umacron.glif b/sources/archive/Lora-Regular.ufo/glyphs/umacron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/umacron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/umacron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/underscore.glif b/sources/archive/Lora-Regular.ufo/glyphs/underscore.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/underscore.glif rename to sources/archive/Lora-Regular.ufo/glyphs/underscore.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uni0000.glif b/sources/archive/Lora-Regular.ufo/glyphs/uni0000.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uni0000.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uni0000.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uni1C_81.glif b/sources/archive/Lora-Regular.ufo/glyphs/uni1C_81.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uni1C_81.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uni1C_81.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uni1C_85.glif b/sources/archive/Lora-Regular.ufo/glyphs/uni1C_85.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uni1C_85.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uni1C_85.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uniE_F_F_D_.glif b/sources/archive/Lora-Regular.ufo/glyphs/uniE_F_F_D_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uniE_F_F_D_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uniE_F_F_D_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uogonek.glif b/sources/archive/Lora-Regular.ufo/glyphs/uogonek.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uogonek.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uogonek.glif diff --git a/sources/Lora-Regular.ufo/glyphs/uring.glif b/sources/archive/Lora-Regular.ufo/glyphs/uring.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/uring.glif rename to sources/archive/Lora-Regular.ufo/glyphs/uring.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ushort-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ushort-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ushort-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ushort-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ustraight-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ustraight-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ustraight-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ustraight-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ustraightstroke-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ustraightstroke-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ustraightstroke-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ustraightstroke-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/utilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/utilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/utilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/utilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/v.glif b/sources/archive/Lora-Regular.ufo/glyphs/v.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/v.glif rename to sources/archive/Lora-Regular.ufo/glyphs/v.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ve-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ve-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ve-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ve-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ve-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/ve-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ve-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ve-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/w.glif b/sources/archive/Lora-Regular.ufo/glyphs/w.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/w.glif rename to sources/archive/Lora-Regular.ufo/glyphs/w.glif diff --git a/sources/Lora-Regular.ufo/glyphs/we-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/we-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/we-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/we-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/x.glif b/sources/archive/Lora-Regular.ufo/glyphs/x.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/x.glif rename to sources/archive/Lora-Regular.ufo/glyphs/x.glif diff --git a/sources/Lora-Regular.ufo/glyphs/y.glif b/sources/archive/Lora-Regular.ufo/glyphs/y.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/y.glif rename to sources/archive/Lora-Regular.ufo/glyphs/y.glif diff --git a/sources/Lora-Regular.ufo/glyphs/yacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/yacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/yacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/yacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/yat-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/yat-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/yat-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/yat-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ydieresis.glif b/sources/archive/Lora-Regular.ufo/glyphs/ydieresis.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ydieresis.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ydieresis.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ydotbelow.glif b/sources/archive/Lora-Regular.ufo/glyphs/ydotbelow.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ydotbelow.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ydotbelow.glif diff --git a/sources/Lora-Regular.ufo/glyphs/yen.glif b/sources/archive/Lora-Regular.ufo/glyphs/yen.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/yen.glif rename to sources/archive/Lora-Regular.ufo/glyphs/yen.glif diff --git a/sources/Lora-Regular.ufo/glyphs/yen.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/yen.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/yen.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/yen.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/yeru-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/yeru-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/yeru-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/yeru-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/yerudieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/yerudieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/yerudieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/yerudieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ygrave.glif b/sources/archive/Lora-Regular.ufo/glyphs/ygrave.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ygrave.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ygrave.glif diff --git a/sources/Lora-Regular.ufo/glyphs/yhookabove.glif b/sources/archive/Lora-Regular.ufo/glyphs/yhookabove.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/yhookabove.glif rename to sources/archive/Lora-Regular.ufo/glyphs/yhookabove.glif diff --git a/sources/Lora-Regular.ufo/glyphs/yi-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/yi-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/yi-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/yi-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ytilde.glif b/sources/archive/Lora-Regular.ufo/glyphs/ytilde.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ytilde.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ytilde.glif diff --git a/sources/Lora-Regular.ufo/glyphs/yusbig-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/yusbig-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/yusbig-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/yusbig-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/z.glif b/sources/archive/Lora-Regular.ufo/glyphs/z.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/z.glif rename to sources/archive/Lora-Regular.ufo/glyphs/z.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zacute.glif b/sources/archive/Lora-Regular.ufo/glyphs/zacute.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zacute.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zacute.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zcaron.glif b/sources/archive/Lora-Regular.ufo/glyphs/zcaron.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zcaron.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zcaron.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zdotaccent.glif b/sources/archive/Lora-Regular.ufo/glyphs/zdotaccent.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zdotaccent.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zdotaccent.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ze-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/ze-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ze-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ze-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/ze-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/ze-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/ze-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/ze-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/zedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zedescender-cy.loclB_S_H_.glif b/sources/archive/Lora-Regular.ufo/glyphs/zedescender-cy.loclB_S_H_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zedescender-cy.loclB_S_H_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zedescender-cy.loclB_S_H_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zedieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/zedieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zedieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zedieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zero.glif b/sources/archive/Lora-Regular.ufo/glyphs/zero.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zero.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zero.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zero.tf.glif b/sources/archive/Lora-Regular.ufo/glyphs/zero.tf.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zero.tf.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zero.tf.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zhe-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/zhe-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zhe-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zhe-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zhe-cy.loclB_G_R_.glif b/sources/archive/Lora-Regular.ufo/glyphs/zhe-cy.loclB_G_R_.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zhe-cy.loclB_G_R_.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zhe-cy.loclB_G_R_.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zhebreve-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/zhebreve-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zhebreve-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zhebreve-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zhedescender-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/zhedescender-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zhedescender-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zhedescender-cy.glif diff --git a/sources/Lora-Regular.ufo/glyphs/zhedieresis-cy.glif b/sources/archive/Lora-Regular.ufo/glyphs/zhedieresis-cy.glif similarity index 100% rename from sources/Lora-Regular.ufo/glyphs/zhedieresis-cy.glif rename to sources/archive/Lora-Regular.ufo/glyphs/zhedieresis-cy.glif diff --git a/sources/Lora-Regular.ufo/groups.plist b/sources/archive/Lora-Regular.ufo/groups.plist similarity index 100% rename from sources/Lora-Regular.ufo/groups.plist rename to sources/archive/Lora-Regular.ufo/groups.plist diff --git a/sources/Lora-Regular.ufo/kerning.plist b/sources/archive/Lora-Regular.ufo/kerning.plist similarity index 100% rename from sources/Lora-Regular.ufo/kerning.plist rename to sources/archive/Lora-Regular.ufo/kerning.plist diff --git a/sources/Lora-Regular.ufo/layercontents.plist b/sources/archive/Lora-Regular.ufo/layercontents.plist similarity index 100% rename from sources/Lora-Regular.ufo/layercontents.plist rename to sources/archive/Lora-Regular.ufo/layercontents.plist diff --git a/sources/Lora-Regular.ufo/lib.plist b/sources/archive/Lora-Regular.ufo/lib.plist similarity index 100% rename from sources/Lora-Regular.ufo/lib.plist rename to sources/archive/Lora-Regular.ufo/lib.plist diff --git a/sources/Lora-Regular.ufo/metainfo.plist b/sources/archive/Lora-Regular.ufo/metainfo.plist similarity index 100% rename from sources/Lora-Regular.ufo/metainfo.plist rename to sources/archive/Lora-Regular.ufo/metainfo.plist diff --git a/sources/Lora.designspace b/sources/archive/Lora.designspace similarity index 100% rename from sources/Lora.designspace rename to sources/archive/Lora.designspace diff --git a/sources/dev/Lora_bracket-hrivnia.glyphs b/sources/archive/dev/Lora_bracket-hrivnia.glyphs similarity index 100% rename from sources/dev/Lora_bracket-hrivnia.glyphs rename to sources/archive/dev/Lora_bracket-hrivnia.glyphs diff --git a/sources/dev/Lora_corner.glyphs b/sources/archive/dev/Lora_corner.glyphs similarity index 100% rename from sources/dev/Lora_corner.glyphs rename to sources/archive/dev/Lora_corner.glyphs diff --git a/sources/dev/fixBrackets.py b/sources/archive/dev/fixBrackets.py similarity index 100% rename from sources/dev/fixBrackets.py rename to sources/archive/dev/fixBrackets.py diff --git a/sources/dev/variable_ttf/Lora-VF.ttf b/sources/archive/dev/variable_ttf/Lora-VF.ttf similarity index 100% rename from sources/dev/variable_ttf/Lora-VF.ttf rename to sources/archive/dev/variable_ttf/Lora-VF.ttf diff --git a/sources/dev/verbose.txt b/sources/archive/dev/verbose.txt similarity index 100% rename from sources/dev/verbose.txt rename to sources/archive/dev/verbose.txt diff --git a/sources/build.sh b/sources/build.sh deleted file mode 100755 index fdb0953d..00000000 --- a/sources/build.sh +++ /dev/null @@ -1,71 +0,0 @@ -#!/bin/sh -set -e - -# Go the sources directory to run commands -SOURCE="${BASH_SOURCE[0]}" -DIR=$( cd -P "$( dirname "$SOURCE" )" >/dev/null 2>&1 && pwd ) -cd $DIR -echo $(pwd) - -echo "Generating Static fonts" -mkdir -p ../fonts/ttf -mkdir -p ../fonts/otf -fontmake -m Lora.designspace -i -o ttf --output-dir ../fonts/ttf/ -fontmake -m Lora-Italic.designspace -i -o ttf --output-dir ../fonts/ttf/ -fontmake -m Lora.designspace -i -a -o otf --output-dir ../fonts/otf/ -fontmake -m Lora-Italic.designspace -i -a -o otf --output-dir ../fonts/otf/ - - -echo "Generating VFs" -mkdir -p ../fonts/vf -fontmake -m Lora.designspace -o variable --output-path ../fonts/vf/Lora[wght].ttf -fontmake -m Lora-Italic.designspace -o variable --output-path ../fonts/vf/Lora-Italic[wght].ttf - -rm -rf master_ufo/ instance_ufo/ instance_ufos/ - -echo "Post processing" -ttfs=$(ls ../fonts/ttf/*.ttf) -for ttf in $ttfs -do - gftools fix-dsig -f $ttf; - python3 -m ttfautohint $ttf "$ttf.fix"; - mv "$ttf.fix" $ttf; -done - - -echo "Post processing VFs" -vfs=$(ls ../fonts/vf/*.ttf) -for vf in $vfs -do - gftools fix-dsig -f $vf; -done - -echo "Fixing VF Meta" -gftools fix-vf-meta $vfs; -echo "Dropping MVAR" -for vf in $vfs -do - mv "$vf.fix" $vf; - ttx -f -x "MVAR" $vf; # Drop MVAR. Table has issue in DW - rtrip=$(basename -s .ttf $vf) - new_file=../fonts/vf/$rtrip.ttx; - rm $vf; - ttx $new_file - rm $new_file -done - -echo "Fixing Non-Hinting" -for vf in $vfs -do - gftools fix-nonhinting $vf $vf.fix; - mv "$vf.fix" $vf; -done -for ttf in $ttfs -do - gftools fix-nonhinting $ttf $ttf.fix; - mv "$ttf.fix" $ttf; -done - -rm ../fonts/ttf/*gasp.ttf -rm ../fonts/vf/*gasp.ttf - diff --git a/sources/config.yaml b/sources/config.yaml new file mode 100644 index 00000000..be0297ed --- /dev/null +++ b/sources/config.yaml @@ -0,0 +1,47 @@ +sources: + - Lora.glyphs + - Lora-Italic.glyphs +axisOrder: + - wght +familyName: Lora +stat: + Lora[wght].ttf: + - name: Weight + tag: wght + values: + - name: Regular + value: 400 + linkedValue: 700 + flags: 2 + - name: Medium + value: 500 + - name: SemiBold + value: 600 + - name: Bold + value: 700 + - name: Italic + tag: ital + values: + - name: Roman + value: 0 + linkedValue: 1 + flags: 2 + Lora-Italic[wght].ttf: + - name: Weight + tag: wght + values: + - name: Regular + value: 400 + linkedValue: 700 + flags: 2 + - name: Medium + value: 500 + - name: SemiBold + value: 600 + - name: Bold + value: 700 + - name: Italic + tag: ital + values: + - name: Italic + value: 1 \ No newline at end of file diff --git a/sources/ttfautohint-vf b/sources/ttfautohint-vf deleted file mode 100755 index 3d3c0d1d..00000000 Binary files a/sources/ttfautohint-vf and /dev/null differ