diff --git a/README.md b/README.md
index 9b2f2bf..8fff95a 100644
--- a/README.md
+++ b/README.md
@@ -9,10 +9,9 @@ This repository is open to contributions of new glyph designs intended to be use
## Usage
### View Alternate Glyph Styles
-The `*.glif` source files are located in the `glyphs` directory of this repository and are organized by Unicode code point. A short string is added to the Unicode code point to describe the type of design modification that was performed to the Hack default style. Source files are supplied for regular, bold, italic, and bold italic font variants.
-
-You may view images of the alternate designs in the README.md files at the top level of each alternate glyph directory.
+The `*.glif` source files are located in the `glyphs` directory of this repository. Each one is named to show the character modified along with a short string to describe the type of design modification that was performed to the Hack default style. Source files are supplied for regular, bold, italic, and bold italic font variants.
+You may view images of the alternate designs in the README.md files at the top level of each alternate glyph directory or see an overview of all the modifications in README.md in the `glyphs` directory itself.
### How to Build a Custom Version of Hack
@@ -50,6 +49,8 @@ Alternatively, you can do the copying manually. Copy the alternate glyph source
#### Eliminate existing manual instruction sets for alternate glyphs (if present)
Some of the glyphs in the Hack sets include manual changes to the ttfautohint automated instruction sets ("hints"). These must be eliminated if you replace an existing glyph in the main Hack sets with a stylistic alternate from this repository or your build will fail (or create undesirable rendering changes that are not tuned for the alternate glyph).
+This process is automated within the `patch-hack.sh` script but if you want to manually disable hints, keep reading.
+
The control instructions files that are used to manually modify the hints in the Hack builds are located in the [tt-hinting directory](https://github.com/source-foundry/Hack/tree/master/postbuild_processing/tt-hinting) of the Hack repository. There is one text file per Hack variant (i.e. for Regular, Italic, Bold, and Bold Italic sets). The manual hints are organized by Unicode code point.
Examine these control instructions files before you build your new fonts. If you identify a block of instructions under a heading for a Unicode code point that you intend to replace, either delete all lines associated with that glyph or comment out the block with `#` symbols at the beginning of each line.
diff --git a/create-pngs.sh b/create-pngs.sh
new file mode 100755
index 0000000..e9e4d37
--- /dev/null
+++ b/create-pngs.sh
@@ -0,0 +1,68 @@
+#!/bin/bash
+
+set -euo pipefail
+
+if [ $# -eq 0 ]; then
+ echo "Usage: create-pngs.sh PATH"
+ echo " Create transparent pngs with a consistent size for all, potentially, replaced"
+ echo " characters appropriate for uploading to the github alt-hack page."
+ echo ""
+ echo " PATH A Hack build directory containing Hack-{Regular,Bold,Italic,BoldItalic}.ttf files"
+ echo ""
+ echo "Image files are written to a pngs/ directory"
+ echo ""
+ echo "This tool depends on the \"convert\" tool from ImageMagick"
+ exit 1
+fi
+
+# Map each character to the glif name
+declare -A chars=(
+ ["&"]="ampersand"
+ [">"]="greater"
+ ["<"]="less"
+ ["f"]="f"
+ ["ğ"]="gbreve"
+ ["ǧ"]="gcaron"
+ ["ĝ"]="gcircumflex"
+ ["ġ"]="gdotaccent"
+ ["g"]="g"
+ ["ģ"]="uni0123"
+ ["ı"]="dotlessi"
+ ["í"]="iacute"
+ ["ĭ"]="ibreve"
+ ["î"]="icircumflex"
+ ["ï"]="idieresis"
+ ["i"]="i"
+ ["ì"]="igrave"
+ ["ī"]="imacron"
+ ["į"]="iogonek"
+ ["ĩ"]="itilde"
+ ["і"]="uni0456"
+ ["ї"]="uni0457"
+ ["ĺ"]="lacute"
+ ["ľ"]="lcaron"
+ ["ŀ"]="ldot"
+ ["l"]="l"
+ ["ł"]="lslash"
+ ["ļ"]="uni013C"
+ ["1"]="one"
+ ["("]="parenleft"
+ [")"]="parenright"
+ ["%"]="percent"
+ ["["]="bracketleft"
+ ["]"]="bracketright"
+ ["3"]="three"
+ ["0"]="zero"
+)
+
+mkdir -p pngs
+
+for char in "${!chars[@]}"; do
+ desc="${chars[$char]}"
+ for style in Regular Bold Italic BoldItalic; do
+ filename=./pngs/"${desc}"-"${style}".png
+ echo Creating "${filename}"
+ convert -font "${1}"/Hack-"${style}".ttf -background transparent -size 36x60\
+ label:"${char}" "${filename}"
+ done
+done
diff --git a/glyphs/README.md b/glyphs/README.md
new file mode 100644
index 0000000..a6b937f
--- /dev/null
+++ b/glyphs/README.md
@@ -0,0 +1,20 @@
+
+| Glyph | Original | alt-hack |
+| ------------- | :--: | :--: |
+| ampersand-nogap | ![ampersand](https://user-images.githubusercontent.com/23739434/75572160-872e5480-5a52-11ea-9a4b-f9c6a5b78dbb.png) | ![ampersand-nogap-Regular](https://user-images.githubusercontent.com/23739434/75802555-ca4f3700-5d74-11ea-9838-a31e512f1b71.png) |
+| angle-brackets-wider | ![less](https://user-images.githubusercontent.com/23739434/75572334-a331f600-5a52-11ea-851d-9309830105f1.png)![greater](https://user-images.githubusercontent.com/23739434/75572228-931a1680-5a52-11ea-9318-5cfe3d9d471e.png) | ![less-wider-Regular](https://user-images.githubusercontent.com/23739434/75572342-a3ca8c80-5a52-11ea-81ad-25f40db37800.png)![greater-wider-Regular](https://user-images.githubusercontent.com/23739434/75572235-93b2ad00-5a52-11ea-8fb2-5d4c2dcf7fd1.png) |
+| f-knife | ![f](https://user-images.githubusercontent.com/23739434/75572186-8bf30880-5a52-11ea-9b95-8dd9e2ba4658.png) | ![f-knife-Regular](https://user-images.githubusercontent.com/23739434/75572191-8d243580-5a52-11ea-978c-2170aaa5c65c.png) |
+| g-loop | ![g](https://user-images.githubusercontent.com/23739434/75572193-8d243580-5a52-11ea-8e19-fb31c6b45741.png) | ![g-loop-Regular](https://user-images.githubusercontent.com/23739434/75572226-92818000-5a52-11ea-89db-a867763ae66f.png) |
+| i-slab | ![i](https://user-images.githubusercontent.com/23739434/75572237-93b2ad00-5a52-11ea-9f28-6588e274c9a0.png) | ![i-slab-Regular](https://user-images.githubusercontent.com/23739434/75572301-9d3c1500-5a52-11ea-99cd-80401e0e4454.png) |
+| l-slab | ![l](https://user-images.githubusercontent.com/23739434/75572310-9f05d880-5a52-11ea-9e8a-2cc108269023.png) | ![l-slab-Regular](https://user-images.githubusercontent.com/23739434/75572348-a4fbb980-5a52-11ea-86c4-9cec59415e77.png) |
+| one-noslab | ![one](https://user-images.githubusercontent.com/23739434/75572360-a62ce680-5a52-11ea-9949-55af3f5c115a.png) | ![one-noslab-Regular](https://user-images.githubusercontent.com/23739434/75572365-a75e1380-5a52-11ea-82f8-d0ada608e41c.png) |
+| parentheses-curved | ![parenleft](https://user-images.githubusercontent.com/23739434/75572366-a7f6aa00-5a52-11ea-8447-0185a64fe42f.png)![parenright](https://user-images.githubusercontent.com/23739434/75572378-aa590400-5a52-11ea-8801-ca2cd6b1510e.png) | ![parenleft-curved-Regular](https://user-images.githubusercontent.com/23739434/75572371-a88f4080-5a52-11ea-9c87-bca5a499747e.png)![parenright-curved-Regular](https://user-images.githubusercontent.com/23739434/75572384-ab8a3100-5a52-11ea-8d0f-41cd7856e3e6.png) |
+| parentheses-rounder | ![parenleft](https://user-images.githubusercontent.com/23739434/75572366-a7f6aa00-5a52-11ea-8447-0185a64fe42f.png)![parenright](https://user-images.githubusercontent.com/23739434/75572378-aa590400-5a52-11ea-8801-ca2cd6b1510e.png) | ![parenleft-rounder-Regular](https://user-images.githubusercontent.com/23739434/75572376-aa590400-5a52-11ea-8fc9-51d99b0f14e3.png)![parenright-rounder-Regular](https://user-images.githubusercontent.com/23739434/75572389-ac22c780-5a52-11ea-85da-ed62ccce1699.png) |
+| percent-traditional | ![percent](https://user-images.githubusercontent.com/23739434/75572391-acbb5e00-5a52-11ea-9c4e-7e6088a4078b.png) | ![percent-traditional-Regular](https://user-images.githubusercontent.com/23739434/75572396-ad53f480-5a52-11ea-8510-69b03a0bacf8.png) |
+| square-brackets-oldv3 | ![bracketleft](https://user-images.githubusercontent.com/23739434/75572166-885f8180-5a52-11ea-93d4-0a4d744709fe.png)![bracketright](https://user-images.githubusercontent.com/23739434/75572174-8990ae80-5a52-11ea-87c3-74448dc3a207.png) | ![bracketleft-oldv3-Regular](https://user-images.githubusercontent.com/23739434/75572172-8990ae80-5a52-11ea-89c1-d5e9f3ca7c97.png)![bracketright-oldv3-Regular](https://user-images.githubusercontent.com/23739434/75572179-8ac1db80-5a52-11ea-9214-4df9651949ed.png) |
+| three-flattop | ![three](https://user-images.githubusercontent.com/23739434/75572397-adec8b00-5a52-11ea-826f-b957ab0cc7ee.png) | ![three-flattop-Regular](https://user-images.githubusercontent.com/23739434/75572402-ae852180-5a52-11ea-9d88-2b67b2cc34c0.png) |
+| zero-backslash | ![zero](https://user-images.githubusercontent.com/23739434/75572430-b3e26c00-5a52-11ea-97e4-bc9c5678f458.png) | ![zero-backslash-Regular](https://user-images.githubusercontent.com/23739434/75572435-b5139900-5a52-11ea-8e1a-c76869842da1.png) |
+| zero-diamond | ![zero](https://user-images.githubusercontent.com/23739434/75572430-b3e26c00-5a52-11ea-97e4-bc9c5678f458.png) | ![zero-diamond-Regular](https://user-images.githubusercontent.com/23739434/75572441-b5ac2f80-5a52-11ea-9b15-5997a0ab3949.png) |
+| zero-dotted | ![zero](https://user-images.githubusercontent.com/23739434/75572430-b3e26c00-5a52-11ea-97e4-bc9c5678f458.png) | ![zero-dotted-Regular](https://user-images.githubusercontent.com/23739434/75572447-b6dd5c80-5a52-11ea-952c-813d4d35f430.png) |
+| zero-forwardslash | ![zero](https://user-images.githubusercontent.com/23739434/75572430-b3e26c00-5a52-11ea-97e4-bc9c5678f458.png) | ![zero-forwardslash-Regular](https://user-images.githubusercontent.com/23739434/75572456-b80e8980-5a52-11ea-9bf8-d48d11831a0a.png) |
+
diff --git a/glyphs/ampersand-nogap/README.md b/glyphs/ampersand-nogap/README.md
new file mode 100644
index 0000000..5b5e04f
--- /dev/null
+++ b/glyphs/ampersand-nogap/README.md
@@ -0,0 +1,8 @@
+![ampersand-nogap-Regular](https://user-images.githubusercontent.com/23739434/75802555-ca4f3700-5d74-11ea-9838-a31e512f1b71.png)
+
+![ampersand-nogap-Italic](https://user-images.githubusercontent.com/23739434/75802553-ca4f3700-5d74-11ea-9e52-271e4b9cc6ce.png)
+
+![ampersand-nogap-Bold](https://user-images.githubusercontent.com/23739434/75802548-c9b6a080-5d74-11ea-8a18-2389f0dce149.png)
+
+![ampersand-nogap-BoldItalic](https://user-images.githubusercontent.com/23739434/75802551-ca4f3700-5d74-11ea-87a4-f1b2cddd2355.png)
+
diff --git a/glyphs/ampersand-nogap/bold/ampersand.glif b/glyphs/ampersand-nogap/bold/ampersand.glif
new file mode 100644
index 0000000..9833f6a
--- /dev/null
+++ b/glyphs/ampersand-nogap/bold/ampersand.glif
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/ampersand-nogap/bolditalic/ampersand.glif b/glyphs/ampersand-nogap/bolditalic/ampersand.glif
new file mode 100644
index 0000000..5b45969
--- /dev/null
+++ b/glyphs/ampersand-nogap/bolditalic/ampersand.glif
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/ampersand-nogap/italic/ampersand.glif b/glyphs/ampersand-nogap/italic/ampersand.glif
new file mode 100644
index 0000000..b868536
--- /dev/null
+++ b/glyphs/ampersand-nogap/italic/ampersand.glif
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/ampersand-nogap/regular/ampersand.glif b/glyphs/ampersand-nogap/regular/ampersand.glif
new file mode 100644
index 0000000..22d3bb6
--- /dev/null
+++ b/glyphs/ampersand-nogap/regular/ampersand.glif
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/angle-brackets-wider/README.md b/glyphs/angle-brackets-wider/README.md
new file mode 100644
index 0000000..4c825d8
--- /dev/null
+++ b/glyphs/angle-brackets-wider/README.md
@@ -0,0 +1,16 @@
+![less-wider-Regular](https://user-images.githubusercontent.com/23739434/75572342-a3ca8c80-5a52-11ea-81ad-25f40db37800.png)
+
+![less-wider-Italic](https://user-images.githubusercontent.com/23739434/75572339-a3ca8c80-5a52-11ea-9ce4-2cc0132493f3.png)
+
+![less-wider-Bold](https://user-images.githubusercontent.com/23739434/75572336-a331f600-5a52-11ea-90eb-dd55b28e9cf6.png)
+
+![less-wider-BoldItalic](https://user-images.githubusercontent.com/23739434/75572338-a331f600-5a52-11ea-8278-30ea57d5d2a6.png)
+
+![greater-wider-Regular](https://user-images.githubusercontent.com/23739434/75572235-93b2ad00-5a52-11ea-8fb2-5d4c2dcf7fd1.png)
+
+![greater-wider-Italic](https://user-images.githubusercontent.com/23739434/75572233-93b2ad00-5a52-11ea-96f9-bdf2c608cbda.png)
+
+![greater-wider-Bold](https://user-images.githubusercontent.com/23739434/75572230-931a1680-5a52-11ea-9a56-5eff059f8e73.png)
+
+![greater-wider-BoldItalic](https://user-images.githubusercontent.com/23739434/75572232-931a1680-5a52-11ea-829a-0e9e9c451789.png)
+
diff --git a/glyphs/u003E-wider/bold/greater.glif b/glyphs/angle-brackets-wider/bold/greater.glif
similarity index 100%
rename from glyphs/u003E-wider/bold/greater.glif
rename to glyphs/angle-brackets-wider/bold/greater.glif
diff --git a/glyphs/u003C-wider/bold/less.glif b/glyphs/angle-brackets-wider/bold/less.glif
similarity index 100%
rename from glyphs/u003C-wider/bold/less.glif
rename to glyphs/angle-brackets-wider/bold/less.glif
diff --git a/glyphs/u003E-wider/bolditalic/greater.glif b/glyphs/angle-brackets-wider/bolditalic/greater.glif
similarity index 100%
rename from glyphs/u003E-wider/bolditalic/greater.glif
rename to glyphs/angle-brackets-wider/bolditalic/greater.glif
diff --git a/glyphs/u003C-wider/bolditalic/less.glif b/glyphs/angle-brackets-wider/bolditalic/less.glif
similarity index 100%
rename from glyphs/u003C-wider/bolditalic/less.glif
rename to glyphs/angle-brackets-wider/bolditalic/less.glif
diff --git a/glyphs/u003E-wider/italic/greater.glif b/glyphs/angle-brackets-wider/italic/greater.glif
similarity index 100%
rename from glyphs/u003E-wider/italic/greater.glif
rename to glyphs/angle-brackets-wider/italic/greater.glif
diff --git a/glyphs/u003C-wider/italic/less.glif b/glyphs/angle-brackets-wider/italic/less.glif
similarity index 100%
rename from glyphs/u003C-wider/italic/less.glif
rename to glyphs/angle-brackets-wider/italic/less.glif
diff --git a/glyphs/u003E-wider/regular/greater.glif b/glyphs/angle-brackets-wider/regular/greater.glif
similarity index 100%
rename from glyphs/u003E-wider/regular/greater.glif
rename to glyphs/angle-brackets-wider/regular/greater.glif
diff --git a/glyphs/u003C-wider/regular/less.glif b/glyphs/angle-brackets-wider/regular/less.glif
similarity index 100%
rename from glyphs/u003C-wider/regular/less.glif
rename to glyphs/angle-brackets-wider/regular/less.glif
diff --git a/glyphs/f-knife/README.md b/glyphs/f-knife/README.md
new file mode 100644
index 0000000..2b59cf0
--- /dev/null
+++ b/glyphs/f-knife/README.md
@@ -0,0 +1,10 @@
+![f-knife-Regular](https://user-images.githubusercontent.com/23739434/75572191-8d243580-5a52-11ea-978c-2170aaa5c65c.png)
+
+![f-knife-Italic](https://user-images.githubusercontent.com/23739434/75572190-8c8b9f00-5a52-11ea-840a-348b4d4c4701.png)
+
+![f-knife-Bold](https://user-images.githubusercontent.com/23739434/75572187-8bf30880-5a52-11ea-9f10-237347000820.png)
+
+![f-knife-BoldItalic](https://user-images.githubusercontent.com/23739434/75572189-8c8b9f00-5a52-11ea-907b-95cdd03f4f5f.png)
+
+Author:
+David van Gemeren <@burodepeper>
diff --git a/glyphs/u0066-knife/bold/f.glif b/glyphs/f-knife/bold/f.glif
similarity index 100%
rename from glyphs/u0066-knife/bold/f.glif
rename to glyphs/f-knife/bold/f.glif
diff --git a/glyphs/u0066-knife/bolditalic/f.glif b/glyphs/f-knife/bolditalic/f.glif
similarity index 100%
rename from glyphs/u0066-knife/bolditalic/f.glif
rename to glyphs/f-knife/bolditalic/f.glif
diff --git a/glyphs/u0066-knife/italic/f.glif b/glyphs/f-knife/italic/f.glif
similarity index 100%
rename from glyphs/u0066-knife/italic/f.glif
rename to glyphs/f-knife/italic/f.glif
diff --git a/glyphs/u0066-knife/regular/f.glif b/glyphs/f-knife/regular/f.glif
similarity index 100%
rename from glyphs/u0066-knife/regular/f.glif
rename to glyphs/f-knife/regular/f.glif
diff --git a/glyphs/g-loop/README.md b/glyphs/g-loop/README.md
new file mode 100644
index 0000000..e2916c5
--- /dev/null
+++ b/glyphs/g-loop/README.md
@@ -0,0 +1,48 @@
+![g-loop-Regular](https://user-images.githubusercontent.com/23739434/75572226-92818000-5a52-11ea-89db-a867763ae66f.png)
+
+![g-loop-Italic](https://user-images.githubusercontent.com/23739434/75572224-92818000-5a52-11ea-8f8f-2773bef786fc.png)
+
+![g-loop-Bold](https://user-images.githubusercontent.com/23739434/75572218-91e8e980-5a52-11ea-893a-7f3738c4e951.png)
+
+![g-loop-BoldItalic](https://user-images.githubusercontent.com/23739434/75572221-91e8e980-5a52-11ea-9474-46999a145c5c.png)
+
+![gbreve-loop-Regular](https://user-images.githubusercontent.com/23739434/75572199-8e556280-5a52-11ea-98df-4d9eba743398.png)
+
+![gbreve-loop-Italic](https://user-images.githubusercontent.com/23739434/75572198-8e556280-5a52-11ea-9ba2-efbd2482592b.png)
+
+![gbreve-loop-Bold](https://user-images.githubusercontent.com/23739434/75572196-8dbccc00-5a52-11ea-9c79-4f29d9a53c09.png)
+
+![gbreve-loop-BoldItalic](https://user-images.githubusercontent.com/23739434/75572197-8dbccc00-5a52-11ea-9309-59bf6fbf03e3.png)
+
+![gcaron-loop-Regular](https://user-images.githubusercontent.com/23739434/75572204-8f868f80-5a52-11ea-8e3f-efdaa64e4532.png)
+
+![gcaron-loop-Italic](https://user-images.githubusercontent.com/23739434/75572203-8f868f80-5a52-11ea-973d-78a0f5dc0c7a.png)
+
+![gcaron-loop-Bold](https://user-images.githubusercontent.com/23739434/75572201-8eedf900-5a52-11ea-87ee-94822b9ee5a7.png)
+
+![gcaron-loop-BoldItalic](https://user-images.githubusercontent.com/23739434/75572202-8eedf900-5a52-11ea-874d-cffe2bfe64c3.png)
+
+![gcircumflex-loop-Regular](https://user-images.githubusercontent.com/23739434/75572211-90b7bc80-5a52-11ea-92f8-d8456db5533b.png)
+
+![gcircumflex-loop-Italic](https://user-images.githubusercontent.com/23739434/75572210-901f2600-5a52-11ea-8896-65292b522ad9.png)
+
+![gcircumflex-loop-Bold](https://user-images.githubusercontent.com/23739434/75572207-901f2600-5a52-11ea-88c4-646e34ebf533.png)
+
+![gcircumflex-loop-BoldItalic](https://user-images.githubusercontent.com/23739434/75572209-901f2600-5a52-11ea-8f1d-d134a7cac4be.png)
+
+![gdotaccent-loop-Regular](https://user-images.githubusercontent.com/23739434/75572217-91e8e980-5a52-11ea-8f9d-2d39b0daa58f.png)
+
+![gdotaccent-loop-Italic](https://user-images.githubusercontent.com/23739434/75572216-91505300-5a52-11ea-8a76-027623d2d2a9.png)
+
+![gdotaccent-loop-Bold](https://user-images.githubusercontent.com/23739434/75572213-91505300-5a52-11ea-818d-5d7257982d9c.png)
+
+![gdotaccent-loop-BoldItalic](https://user-images.githubusercontent.com/23739434/75572214-91505300-5a52-11ea-831a-832570d08b63.png)
+
+![uni0123-loop-Regular](https://user-images.githubusercontent.com/23739434/75572417-b1801200-5a52-11ea-9383-004f6592062b.png)
+
+![uni0123-loop-Italic](https://user-images.githubusercontent.com/23739434/75572415-b0e77b80-5a52-11ea-8980-7ad1799ac7a2.png)
+
+![uni0123-loop-Bold](https://user-images.githubusercontent.com/23739434/75572412-b04ee500-5a52-11ea-9f01-b4025e79172d.png)
+
+![uni0123-loop-BoldItalic](https://user-images.githubusercontent.com/23739434/75572414-b0e77b80-5a52-11ea-980f-ca6e8ccaeaca.png)
+
diff --git a/glyphs/g-loop/bold/g.glif b/glyphs/g-loop/bold/g.glif
new file mode 100644
index 0000000..869dada
--- /dev/null
+++ b/glyphs/g-loop/bold/g.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bold/gbreve.glif b/glyphs/g-loop/bold/gbreve.glif
new file mode 100644
index 0000000..514699a
--- /dev/null
+++ b/glyphs/g-loop/bold/gbreve.glif
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bold/gcaron.glif b/glyphs/g-loop/bold/gcaron.glif
new file mode 100644
index 0000000..7b8f4cb
--- /dev/null
+++ b/glyphs/g-loop/bold/gcaron.glif
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bold/gcircumflex.glif b/glyphs/g-loop/bold/gcircumflex.glif
new file mode 100644
index 0000000..bdb5b37
--- /dev/null
+++ b/glyphs/g-loop/bold/gcircumflex.glif
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bold/gdotaccent.glif b/glyphs/g-loop/bold/gdotaccent.glif
new file mode 100644
index 0000000..3814993
--- /dev/null
+++ b/glyphs/g-loop/bold/gdotaccent.glif
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bold/uni0123.glif b/glyphs/g-loop/bold/uni0123.glif
new file mode 100644
index 0000000..dd1ae01
--- /dev/null
+++ b/glyphs/g-loop/bold/uni0123.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bolditalic/g.glif b/glyphs/g-loop/bolditalic/g.glif
new file mode 100644
index 0000000..0f275c0
--- /dev/null
+++ b/glyphs/g-loop/bolditalic/g.glif
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bolditalic/gbreve.glif b/glyphs/g-loop/bolditalic/gbreve.glif
new file mode 100644
index 0000000..0d4fda2
--- /dev/null
+++ b/glyphs/g-loop/bolditalic/gbreve.glif
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bolditalic/gcaron.glif b/glyphs/g-loop/bolditalic/gcaron.glif
new file mode 100644
index 0000000..3e25146
--- /dev/null
+++ b/glyphs/g-loop/bolditalic/gcaron.glif
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bolditalic/gcircumflex.glif b/glyphs/g-loop/bolditalic/gcircumflex.glif
new file mode 100644
index 0000000..7a98a61
--- /dev/null
+++ b/glyphs/g-loop/bolditalic/gcircumflex.glif
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bolditalic/gdotaccent.glif b/glyphs/g-loop/bolditalic/gdotaccent.glif
new file mode 100644
index 0000000..d0edefb
--- /dev/null
+++ b/glyphs/g-loop/bolditalic/gdotaccent.glif
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/bolditalic/uni0123.glif b/glyphs/g-loop/bolditalic/uni0123.glif
new file mode 100644
index 0000000..43dada4
--- /dev/null
+++ b/glyphs/g-loop/bolditalic/uni0123.glif
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/italic/g.glif b/glyphs/g-loop/italic/g.glif
new file mode 100644
index 0000000..ebefcdb
--- /dev/null
+++ b/glyphs/g-loop/italic/g.glif
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/italic/gbreve.glif b/glyphs/g-loop/italic/gbreve.glif
new file mode 100644
index 0000000..0dd5c78
--- /dev/null
+++ b/glyphs/g-loop/italic/gbreve.glif
@@ -0,0 +1,145 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/italic/gcaron.glif b/glyphs/g-loop/italic/gcaron.glif
new file mode 100644
index 0000000..cabb492
--- /dev/null
+++ b/glyphs/g-loop/italic/gcaron.glif
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/italic/gcircumflex.glif b/glyphs/g-loop/italic/gcircumflex.glif
new file mode 100644
index 0000000..10048ff
--- /dev/null
+++ b/glyphs/g-loop/italic/gcircumflex.glif
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/italic/gdotaccent.glif b/glyphs/g-loop/italic/gdotaccent.glif
new file mode 100644
index 0000000..64db6c0
--- /dev/null
+++ b/glyphs/g-loop/italic/gdotaccent.glif
@@ -0,0 +1,147 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/italic/uni0123.glif b/glyphs/g-loop/italic/uni0123.glif
new file mode 100644
index 0000000..86928f7
--- /dev/null
+++ b/glyphs/g-loop/italic/uni0123.glif
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bold/g.glif b/glyphs/g-loop/regular/bold/g.glif
new file mode 100644
index 0000000..869dada
--- /dev/null
+++ b/glyphs/g-loop/regular/bold/g.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bold/gbreve.glif b/glyphs/g-loop/regular/bold/gbreve.glif
new file mode 100644
index 0000000..514699a
--- /dev/null
+++ b/glyphs/g-loop/regular/bold/gbreve.glif
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bold/gcaron.glif b/glyphs/g-loop/regular/bold/gcaron.glif
new file mode 100644
index 0000000..7b8f4cb
--- /dev/null
+++ b/glyphs/g-loop/regular/bold/gcaron.glif
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bold/gcircumflex.glif b/glyphs/g-loop/regular/bold/gcircumflex.glif
new file mode 100644
index 0000000..bdb5b37
--- /dev/null
+++ b/glyphs/g-loop/regular/bold/gcircumflex.glif
@@ -0,0 +1,108 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bold/gdotaccent.glif b/glyphs/g-loop/regular/bold/gdotaccent.glif
new file mode 100644
index 0000000..3814993
--- /dev/null
+++ b/glyphs/g-loop/regular/bold/gdotaccent.glif
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bold/uni0123.glif b/glyphs/g-loop/regular/bold/uni0123.glif
new file mode 100644
index 0000000..dd1ae01
--- /dev/null
+++ b/glyphs/g-loop/regular/bold/uni0123.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bolditalic/g.glif b/glyphs/g-loop/regular/bolditalic/g.glif
new file mode 100644
index 0000000..0f275c0
--- /dev/null
+++ b/glyphs/g-loop/regular/bolditalic/g.glif
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bolditalic/gbreve.glif b/glyphs/g-loop/regular/bolditalic/gbreve.glif
new file mode 100644
index 0000000..0d4fda2
--- /dev/null
+++ b/glyphs/g-loop/regular/bolditalic/gbreve.glif
@@ -0,0 +1,133 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bolditalic/gcaron.glif b/glyphs/g-loop/regular/bolditalic/gcaron.glif
new file mode 100644
index 0000000..3e25146
--- /dev/null
+++ b/glyphs/g-loop/regular/bolditalic/gcaron.glif
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bolditalic/gcircumflex.glif b/glyphs/g-loop/regular/bolditalic/gcircumflex.glif
new file mode 100644
index 0000000..7a98a61
--- /dev/null
+++ b/glyphs/g-loop/regular/bolditalic/gcircumflex.glif
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bolditalic/gdotaccent.glif b/glyphs/g-loop/regular/bolditalic/gdotaccent.glif
new file mode 100644
index 0000000..d0edefb
--- /dev/null
+++ b/glyphs/g-loop/regular/bolditalic/gdotaccent.glif
@@ -0,0 +1,135 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/bolditalic/uni0123.glif b/glyphs/g-loop/regular/bolditalic/uni0123.glif
new file mode 100644
index 0000000..43dada4
--- /dev/null
+++ b/glyphs/g-loop/regular/bolditalic/uni0123.glif
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/g.glif b/glyphs/g-loop/regular/g.glif
new file mode 100644
index 0000000..403daee
--- /dev/null
+++ b/glyphs/g-loop/regular/g.glif
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/gbreve.glif b/glyphs/g-loop/regular/gbreve.glif
new file mode 100644
index 0000000..0963e11
--- /dev/null
+++ b/glyphs/g-loop/regular/gbreve.glif
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/gcaron.glif b/glyphs/g-loop/regular/gcaron.glif
new file mode 100644
index 0000000..375655e
--- /dev/null
+++ b/glyphs/g-loop/regular/gcaron.glif
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/gcircumflex.glif b/glyphs/g-loop/regular/gcircumflex.glif
new file mode 100644
index 0000000..79c6d4b
--- /dev/null
+++ b/glyphs/g-loop/regular/gcircumflex.glif
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/gdotaccent.glif b/glyphs/g-loop/regular/gdotaccent.glif
new file mode 100644
index 0000000..d8cf95d
--- /dev/null
+++ b/glyphs/g-loop/regular/gdotaccent.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/italic/g.glif b/glyphs/g-loop/regular/italic/g.glif
new file mode 100644
index 0000000..ebefcdb
--- /dev/null
+++ b/glyphs/g-loop/regular/italic/g.glif
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/italic/gbreve.glif b/glyphs/g-loop/regular/italic/gbreve.glif
new file mode 100644
index 0000000..0dd5c78
--- /dev/null
+++ b/glyphs/g-loop/regular/italic/gbreve.glif
@@ -0,0 +1,145 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/italic/gcaron.glif b/glyphs/g-loop/regular/italic/gcaron.glif
new file mode 100644
index 0000000..cabb492
--- /dev/null
+++ b/glyphs/g-loop/regular/italic/gcaron.glif
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/italic/gcircumflex.glif b/glyphs/g-loop/regular/italic/gcircumflex.glif
new file mode 100644
index 0000000..10048ff
--- /dev/null
+++ b/glyphs/g-loop/regular/italic/gcircumflex.glif
@@ -0,0 +1,132 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/italic/gdotaccent.glif b/glyphs/g-loop/regular/italic/gdotaccent.glif
new file mode 100644
index 0000000..64db6c0
--- /dev/null
+++ b/glyphs/g-loop/regular/italic/gdotaccent.glif
@@ -0,0 +1,147 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/italic/uni0123.glif b/glyphs/g-loop/regular/italic/uni0123.glif
new file mode 100644
index 0000000..86928f7
--- /dev/null
+++ b/glyphs/g-loop/regular/italic/uni0123.glif
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/regular/g.glif b/glyphs/g-loop/regular/regular/g.glif
new file mode 100644
index 0000000..403daee
--- /dev/null
+++ b/glyphs/g-loop/regular/regular/g.glif
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/regular/gbreve.glif b/glyphs/g-loop/regular/regular/gbreve.glif
new file mode 100644
index 0000000..0963e11
--- /dev/null
+++ b/glyphs/g-loop/regular/regular/gbreve.glif
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/regular/gcircumflex.glif b/glyphs/g-loop/regular/regular/gcircumflex.glif
new file mode 100644
index 0000000..79c6d4b
--- /dev/null
+++ b/glyphs/g-loop/regular/regular/gcircumflex.glif
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/regular/gdotaccent.glif b/glyphs/g-loop/regular/regular/gdotaccent.glif
new file mode 100644
index 0000000..d8cf95d
--- /dev/null
+++ b/glyphs/g-loop/regular/regular/gdotaccent.glif
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/regular/uni0123.glif b/glyphs/g-loop/regular/regular/uni0123.glif
new file mode 100644
index 0000000..bcc0766
--- /dev/null
+++ b/glyphs/g-loop/regular/regular/uni0123.glif
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/g-loop/regular/uni0123.glif b/glyphs/g-loop/regular/uni0123.glif
new file mode 100644
index 0000000..bcc0766
--- /dev/null
+++ b/glyphs/g-loop/regular/uni0123.glif
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/i-slab/README.md b/glyphs/i-slab/README.md
new file mode 100644
index 0000000..5b0de8f
--- /dev/null
+++ b/glyphs/i-slab/README.md
@@ -0,0 +1,96 @@
+![i-slab-Regular](https://user-images.githubusercontent.com/23739434/75572301-9d3c1500-5a52-11ea-99cd-80401e0e4454.png)
+
+![i-slab-Italic](https://user-images.githubusercontent.com/23739434/75572298-9d3c1500-5a52-11ea-9a94-406f08336d88.png)
+
+![i-slab-Bold](https://user-images.githubusercontent.com/23739434/75572295-9ca37e80-5a52-11ea-93a8-a0dcbcc616d5.png)
+
+![i-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572296-9ca37e80-5a52-11ea-9425-a97317542e9b.png)
+
+![dotlessi-slab-Regular](https://user-images.githubusercontent.com/23739434/75572185-8bf30880-5a52-11ea-8549-8d63fbec6bc6.png)
+
+![dotlessi-slab-Italic](https://user-images.githubusercontent.com/23739434/75572184-8b5a7200-5a52-11ea-81ad-639a69c5ebb5.png)
+
+![dotlessi-slab-Bold](https://user-images.githubusercontent.com/23739434/75572181-8b5a7200-5a52-11ea-8385-0b00e30b24a2.png)
+
+![dotlessi-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572183-8b5a7200-5a52-11ea-9eec-497058af982e.png)
+
+![iacute-slab-Regular](https://user-images.githubusercontent.com/23739434/75572242-94e3da00-5a52-11ea-8b48-11da49284c0f.png)
+
+![iacute-slab-Italic](https://user-images.githubusercontent.com/23739434/75572241-94e3da00-5a52-11ea-9a4b-89cdf04cafcd.png)
+
+![iacute-slab-Bold](https://user-images.githubusercontent.com/23739434/75572239-944b4380-5a52-11ea-928e-9637b60c4aa8.png)
+
+![iacute-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572240-94e3da00-5a52-11ea-918d-ef5c28d33ef3.png)
+
+![ibreve-slab-Regular](https://user-images.githubusercontent.com/23739434/75572250-96150700-5a52-11ea-99b8-81c43d17e3db.png)
+
+![ibreve-slab-Italic](https://user-images.githubusercontent.com/23739434/75572249-96150700-5a52-11ea-8a26-3afcf1b074b1.png)
+
+![ibreve-slab-Bold](https://user-images.githubusercontent.com/23739434/75572246-957c7080-5a52-11ea-93b4-cf80c9363636.png)
+
+![ibreve-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572248-957c7080-5a52-11ea-8c51-ba5f629efb7c.png)
+
+![icircumflex-slab-Regular](https://user-images.githubusercontent.com/23739434/75572257-97463400-5a52-11ea-8bde-41196fa1b890.png)
+
+![icircumflex-slab-Italic](https://user-images.githubusercontent.com/23739434/75572256-97463400-5a52-11ea-9ed4-4fde9bfe1200.png)
+
+![icircumflex-slab-Bold](https://user-images.githubusercontent.com/23739434/75572252-96ad9d80-5a52-11ea-9159-c77f1635ebd7.png)
+
+![icircumflex-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572254-96ad9d80-5a52-11ea-8ddd-ee418b73c167.png)
+
+![idieresis-slab-Regular](https://user-images.githubusercontent.com/23739434/75572266-98776100-5a52-11ea-8137-7d776e562a21.png)
+
+![idieresis-slab-Italic](https://user-images.githubusercontent.com/23739434/75572265-98776100-5a52-11ea-8016-efd6970d3e8a.png)
+
+![idieresis-slab-Bold](https://user-images.githubusercontent.com/23739434/75572261-97deca80-5a52-11ea-81f0-111c3f3ea64d.png)
+
+![idieresis-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572263-97deca80-5a52-11ea-8254-0d732a906195.png)
+
+![igrave-slab-Regular](https://user-images.githubusercontent.com/23739434/75572274-9a412480-5a52-11ea-8f5e-7a4ba1d25dcf.png)
+
+![igrave-slab-Italic](https://user-images.githubusercontent.com/23739434/75572273-99a88e00-5a52-11ea-969c-d691195342c0.png)
+
+![igrave-slab-Bold](https://user-images.githubusercontent.com/23739434/75572269-990ff780-5a52-11ea-9f15-92858eb1bf3c.png)
+
+![igrave-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572271-99a88e00-5a52-11ea-9983-7e9f7486fbd4.png)
+
+![imacron-slab-Regular](https://user-images.githubusercontent.com/23739434/75572283-9ad9bb00-5a52-11ea-9e8f-0e4ad3d7f564.png)
+
+![imacron-slab-Italic](https://user-images.githubusercontent.com/23739434/75572282-9ad9bb00-5a52-11ea-9e5f-8eb149881c90.png)
+
+![imacron-slab-Bold](https://user-images.githubusercontent.com/23739434/75572277-9a412480-5a52-11ea-87e6-cbb84dfa5e12.png)
+
+![imacron-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572278-9ad9bb00-5a52-11ea-8b34-adc4e611a12e.png)
+
+![iogonek-slab-Regular](https://user-images.githubusercontent.com/23739434/75572293-9c0ae800-5a52-11ea-9054-1c43b5eb5570.png)
+
+![iogonek-slab-Italic](https://user-images.githubusercontent.com/23739434/75572290-9c0ae800-5a52-11ea-92a6-9d6b57d76215.png)
+
+![iogonek-slab-Bold](https://user-images.githubusercontent.com/23739434/75572286-9b725180-5a52-11ea-8d34-7fa2f043adf2.png)
+
+![iogonek-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572287-9c0ae800-5a52-11ea-89d0-c46d62386921.png)
+
+![itilde-slab-Regular](https://user-images.githubusercontent.com/23739434/75572308-9e6d4200-5a52-11ea-8417-4ca32a4b3982.png)
+
+![itilde-slab-Italic](https://user-images.githubusercontent.com/23739434/75572307-9e6d4200-5a52-11ea-9354-da5e2555c05c.png)
+
+![itilde-slab-Bold](https://user-images.githubusercontent.com/23739434/75572305-9dd4ab80-5a52-11ea-8223-5799b395d090.png)
+
+![itilde-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572306-9dd4ab80-5a52-11ea-8d00-905b5f29deab.png)
+
+![uni0456-slab-Regular](https://user-images.githubusercontent.com/23739434/75572422-b2b13f00-5a52-11ea-86fa-cceed83d28bb.png)
+
+![uni0456-slab-Italic](https://user-images.githubusercontent.com/23739434/75572421-b218a880-5a52-11ea-843d-7a7baca63a23.png)
+
+![uni0456-slab-Bold](https://user-images.githubusercontent.com/23739434/75572419-b1801200-5a52-11ea-9392-d25f3952fd65.png)
+
+![uni0456-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572420-b218a880-5a52-11ea-99d9-91f7ffb03a15.png)
+
+![uni0457-slab-Regular](https://user-images.githubusercontent.com/23739434/75572429-b3e26c00-5a52-11ea-87e3-7a17d268fa9a.png)
+
+![uni0457-slab-Italic](https://user-images.githubusercontent.com/23739434/75572428-b349d580-5a52-11ea-9504-657948bf1db1.png)
+
+![uni0457-slab-Bold](https://user-images.githubusercontent.com/23739434/75572425-b349d580-5a52-11ea-8733-2e9c7fea8924.png)
+
+![uni0457-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572426-b349d580-5a52-11ea-9552-49c6b3c04a82.png)
+
diff --git a/glyphs/u0131-slab/bold/dotlessi.glif b/glyphs/i-slab/bold/dotlessi.glif
similarity index 100%
rename from glyphs/u0131-slab/bold/dotlessi.glif
rename to glyphs/i-slab/bold/dotlessi.glif
diff --git a/glyphs/u0069-slab/bold/i.glif b/glyphs/i-slab/bold/i.glif
similarity index 100%
rename from glyphs/u0069-slab/bold/i.glif
rename to glyphs/i-slab/bold/i.glif
diff --git a/glyphs/u00ED-slab/bold/iacute.glif b/glyphs/i-slab/bold/iacute.glif
similarity index 100%
rename from glyphs/u00ED-slab/bold/iacute.glif
rename to glyphs/i-slab/bold/iacute.glif
diff --git a/glyphs/u012D-slab/bold/ibreve.glif b/glyphs/i-slab/bold/ibreve.glif
similarity index 100%
rename from glyphs/u012D-slab/bold/ibreve.glif
rename to glyphs/i-slab/bold/ibreve.glif
diff --git a/glyphs/u00EE-slab/bold/icircumflex.glif b/glyphs/i-slab/bold/icircumflex.glif
similarity index 100%
rename from glyphs/u00EE-slab/bold/icircumflex.glif
rename to glyphs/i-slab/bold/icircumflex.glif
diff --git a/glyphs/u00EF-slab/bold/idieresis.glif b/glyphs/i-slab/bold/idieresis.glif
similarity index 100%
rename from glyphs/u00EF-slab/bold/idieresis.glif
rename to glyphs/i-slab/bold/idieresis.glif
diff --git a/glyphs/u00EC-slab/bold/igrave.glif b/glyphs/i-slab/bold/igrave.glif
similarity index 100%
rename from glyphs/u00EC-slab/bold/igrave.glif
rename to glyphs/i-slab/bold/igrave.glif
diff --git a/glyphs/u012B-slab/bold/imacron.glif b/glyphs/i-slab/bold/imacron.glif
similarity index 100%
rename from glyphs/u012B-slab/bold/imacron.glif
rename to glyphs/i-slab/bold/imacron.glif
diff --git a/glyphs/u012F-slab/bold/iogonek.glif b/glyphs/i-slab/bold/iogonek.glif
similarity index 100%
rename from glyphs/u012F-slab/bold/iogonek.glif
rename to glyphs/i-slab/bold/iogonek.glif
diff --git a/glyphs/u0129-slab/bold/itilde.glif b/glyphs/i-slab/bold/itilde.glif
similarity index 100%
rename from glyphs/u0129-slab/bold/itilde.glif
rename to glyphs/i-slab/bold/itilde.glif
diff --git a/glyphs/u0456-slab/bold/uni0456.glif b/glyphs/i-slab/bold/uni0456.glif
similarity index 100%
rename from glyphs/u0456-slab/bold/uni0456.glif
rename to glyphs/i-slab/bold/uni0456.glif
diff --git a/glyphs/u0457-slab/bold/uni0457.glif b/glyphs/i-slab/bold/uni0457.glif
similarity index 100%
rename from glyphs/u0457-slab/bold/uni0457.glif
rename to glyphs/i-slab/bold/uni0457.glif
diff --git a/glyphs/u0131-slab/bolditalic/dotlessi.glif b/glyphs/i-slab/bolditalic/dotlessi.glif
similarity index 100%
rename from glyphs/u0131-slab/bolditalic/dotlessi.glif
rename to glyphs/i-slab/bolditalic/dotlessi.glif
diff --git a/glyphs/u0069-slab/bolditalic/i.glif b/glyphs/i-slab/bolditalic/i.glif
similarity index 100%
rename from glyphs/u0069-slab/bolditalic/i.glif
rename to glyphs/i-slab/bolditalic/i.glif
diff --git a/glyphs/u00ED-slab/bolditalic/iacute.glif b/glyphs/i-slab/bolditalic/iacute.glif
similarity index 100%
rename from glyphs/u00ED-slab/bolditalic/iacute.glif
rename to glyphs/i-slab/bolditalic/iacute.glif
diff --git a/glyphs/u012D-slab/bolditalic/ibreve.glif b/glyphs/i-slab/bolditalic/ibreve.glif
similarity index 100%
rename from glyphs/u012D-slab/bolditalic/ibreve.glif
rename to glyphs/i-slab/bolditalic/ibreve.glif
diff --git a/glyphs/u00EE-slab/bolditalic/icircumflex.glif b/glyphs/i-slab/bolditalic/icircumflex.glif
similarity index 100%
rename from glyphs/u00EE-slab/bolditalic/icircumflex.glif
rename to glyphs/i-slab/bolditalic/icircumflex.glif
diff --git a/glyphs/u00EF-slab/bolditalic/idieresis.glif b/glyphs/i-slab/bolditalic/idieresis.glif
similarity index 100%
rename from glyphs/u00EF-slab/bolditalic/idieresis.glif
rename to glyphs/i-slab/bolditalic/idieresis.glif
diff --git a/glyphs/u00EC-slab/bolditalic/igrave.glif b/glyphs/i-slab/bolditalic/igrave.glif
similarity index 100%
rename from glyphs/u00EC-slab/bolditalic/igrave.glif
rename to glyphs/i-slab/bolditalic/igrave.glif
diff --git a/glyphs/u012B-slab/bolditalic/imacron.glif b/glyphs/i-slab/bolditalic/imacron.glif
similarity index 100%
rename from glyphs/u012B-slab/bolditalic/imacron.glif
rename to glyphs/i-slab/bolditalic/imacron.glif
diff --git a/glyphs/u012F-slab/bolditalic/iogonek.glif b/glyphs/i-slab/bolditalic/iogonek.glif
similarity index 100%
rename from glyphs/u012F-slab/bolditalic/iogonek.glif
rename to glyphs/i-slab/bolditalic/iogonek.glif
diff --git a/glyphs/u0129-slab/bolditalic/itilde.glif b/glyphs/i-slab/bolditalic/itilde.glif
similarity index 100%
rename from glyphs/u0129-slab/bolditalic/itilde.glif
rename to glyphs/i-slab/bolditalic/itilde.glif
diff --git a/glyphs/u0456-slab/bolditalic/uni0456.glif b/glyphs/i-slab/bolditalic/uni0456.glif
similarity index 100%
rename from glyphs/u0456-slab/bolditalic/uni0456.glif
rename to glyphs/i-slab/bolditalic/uni0456.glif
diff --git a/glyphs/u0457-slab/bolditalic/uni0457.glif b/glyphs/i-slab/bolditalic/uni0457.glif
similarity index 100%
rename from glyphs/u0457-slab/bolditalic/uni0457.glif
rename to glyphs/i-slab/bolditalic/uni0457.glif
diff --git a/glyphs/u0131-slab/italic/dotlessi.glif b/glyphs/i-slab/italic/dotlessi.glif
similarity index 100%
rename from glyphs/u0131-slab/italic/dotlessi.glif
rename to glyphs/i-slab/italic/dotlessi.glif
diff --git a/glyphs/u0069-slab/italic/i.glif b/glyphs/i-slab/italic/i.glif
similarity index 100%
rename from glyphs/u0069-slab/italic/i.glif
rename to glyphs/i-slab/italic/i.glif
diff --git a/glyphs/u00ED-slab/italic/iacute.glif b/glyphs/i-slab/italic/iacute.glif
similarity index 100%
rename from glyphs/u00ED-slab/italic/iacute.glif
rename to glyphs/i-slab/italic/iacute.glif
diff --git a/glyphs/u012D-slab/italic/ibreve.glif b/glyphs/i-slab/italic/ibreve.glif
similarity index 100%
rename from glyphs/u012D-slab/italic/ibreve.glif
rename to glyphs/i-slab/italic/ibreve.glif
diff --git a/glyphs/u00EE-slab/italic/icircumflex.glif b/glyphs/i-slab/italic/icircumflex.glif
similarity index 100%
rename from glyphs/u00EE-slab/italic/icircumflex.glif
rename to glyphs/i-slab/italic/icircumflex.glif
diff --git a/glyphs/u00EF-slab/italic/idieresis.glif b/glyphs/i-slab/italic/idieresis.glif
similarity index 100%
rename from glyphs/u00EF-slab/italic/idieresis.glif
rename to glyphs/i-slab/italic/idieresis.glif
diff --git a/glyphs/u00EC-slab/italic/igrave.glif b/glyphs/i-slab/italic/igrave.glif
similarity index 100%
rename from glyphs/u00EC-slab/italic/igrave.glif
rename to glyphs/i-slab/italic/igrave.glif
diff --git a/glyphs/u012B-slab/italic/imacron.glif b/glyphs/i-slab/italic/imacron.glif
similarity index 100%
rename from glyphs/u012B-slab/italic/imacron.glif
rename to glyphs/i-slab/italic/imacron.glif
diff --git a/glyphs/u012F-slab/italic/iogonek.glif b/glyphs/i-slab/italic/iogonek.glif
similarity index 100%
rename from glyphs/u012F-slab/italic/iogonek.glif
rename to glyphs/i-slab/italic/iogonek.glif
diff --git a/glyphs/u0129-slab/italic/itilde.glif b/glyphs/i-slab/italic/itilde.glif
similarity index 100%
rename from glyphs/u0129-slab/italic/itilde.glif
rename to glyphs/i-slab/italic/itilde.glif
diff --git a/glyphs/u0456-slab/italic/uni0456.glif b/glyphs/i-slab/italic/uni0456.glif
similarity index 100%
rename from glyphs/u0456-slab/italic/uni0456.glif
rename to glyphs/i-slab/italic/uni0456.glif
diff --git a/glyphs/u0457-slab/italic/uni0457.glif b/glyphs/i-slab/italic/uni0457.glif
similarity index 100%
rename from glyphs/u0457-slab/italic/uni0457.glif
rename to glyphs/i-slab/italic/uni0457.glif
diff --git a/glyphs/u0131-slab/regular/dotlessi.glif b/glyphs/i-slab/regular/dotlessi.glif
similarity index 100%
rename from glyphs/u0131-slab/regular/dotlessi.glif
rename to glyphs/i-slab/regular/dotlessi.glif
diff --git a/glyphs/u0069-slab/regular/i.glif b/glyphs/i-slab/regular/i.glif
similarity index 100%
rename from glyphs/u0069-slab/regular/i.glif
rename to glyphs/i-slab/regular/i.glif
diff --git a/glyphs/u00ED-slab/regular/iacute.glif b/glyphs/i-slab/regular/iacute.glif
similarity index 100%
rename from glyphs/u00ED-slab/regular/iacute.glif
rename to glyphs/i-slab/regular/iacute.glif
diff --git a/glyphs/u012D-slab/regular/ibreve.glif b/glyphs/i-slab/regular/ibreve.glif
similarity index 100%
rename from glyphs/u012D-slab/regular/ibreve.glif
rename to glyphs/i-slab/regular/ibreve.glif
diff --git a/glyphs/u00EE-slab/regular/icircumflex.glif b/glyphs/i-slab/regular/icircumflex.glif
similarity index 100%
rename from glyphs/u00EE-slab/regular/icircumflex.glif
rename to glyphs/i-slab/regular/icircumflex.glif
diff --git a/glyphs/u00EF-slab/regular/idieresis.glif b/glyphs/i-slab/regular/idieresis.glif
similarity index 100%
rename from glyphs/u00EF-slab/regular/idieresis.glif
rename to glyphs/i-slab/regular/idieresis.glif
diff --git a/glyphs/u00EC-slab/regular/igrave.glif b/glyphs/i-slab/regular/igrave.glif
similarity index 100%
rename from glyphs/u00EC-slab/regular/igrave.glif
rename to glyphs/i-slab/regular/igrave.glif
diff --git a/glyphs/u012B-slab/regular/imacron.glif b/glyphs/i-slab/regular/imacron.glif
similarity index 100%
rename from glyphs/u012B-slab/regular/imacron.glif
rename to glyphs/i-slab/regular/imacron.glif
diff --git a/glyphs/u012F-slab/regular/iogonek.glif b/glyphs/i-slab/regular/iogonek.glif
similarity index 100%
rename from glyphs/u012F-slab/regular/iogonek.glif
rename to glyphs/i-slab/regular/iogonek.glif
diff --git a/glyphs/u0129-slab/regular/itilde.glif b/glyphs/i-slab/regular/itilde.glif
similarity index 100%
rename from glyphs/u0129-slab/regular/itilde.glif
rename to glyphs/i-slab/regular/itilde.glif
diff --git a/glyphs/u0456-slab/regular/uni0456.glif b/glyphs/i-slab/regular/uni0456.glif
similarity index 100%
rename from glyphs/u0456-slab/regular/uni0456.glif
rename to glyphs/i-slab/regular/uni0456.glif
diff --git a/glyphs/u0457-slab/regular/uni0457.glif b/glyphs/i-slab/regular/uni0457.glif
similarity index 100%
rename from glyphs/u0457-slab/regular/uni0457.glif
rename to glyphs/i-slab/regular/uni0457.glif
diff --git a/glyphs/l-slab/README.md b/glyphs/l-slab/README.md
new file mode 100644
index 0000000..5d726f0
--- /dev/null
+++ b/glyphs/l-slab/README.md
@@ -0,0 +1,48 @@
+![l-slab-Regular](https://user-images.githubusercontent.com/23739434/75572348-a4fbb980-5a52-11ea-86c4-9cec59415e77.png)
+
+![l-slab-Italic](https://user-images.githubusercontent.com/23739434/75572347-a4632300-5a52-11ea-83c2-7adcdb060a9e.png)
+
+![l-slab-Bold](https://user-images.githubusercontent.com/23739434/75572345-a4632300-5a52-11ea-9196-4cd69cde16b2.png)
+
+![l-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572346-a4632300-5a52-11ea-813e-b307179805ea.png)
+
+![lacute-slab-Regular](https://user-images.githubusercontent.com/23739434/75572317-a0370580-5a52-11ea-8f17-45534d40ed16.png)
+
+![lacute-slab-Italic](https://user-images.githubusercontent.com/23739434/75572316-9f9e6f00-5a52-11ea-9e56-918ca8e1ea44.png)
+
+![lacute-slab-Bold](https://user-images.githubusercontent.com/23739434/75572314-9f9e6f00-5a52-11ea-9f39-94fe6f13ea1e.png)
+
+![lacute-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572315-9f9e6f00-5a52-11ea-8da2-c19eebe5862f.png)
+
+![lcaron-slab-Regular](https://user-images.githubusercontent.com/23739434/75572327-a1683280-5a52-11ea-897e-60a53a439feb.png)
+
+![lcaron-slab-Italic](https://user-images.githubusercontent.com/23739434/75572325-a1683280-5a52-11ea-89a5-c802fd1d5ed2.png)
+
+![lcaron-slab-Bold](https://user-images.githubusercontent.com/23739434/75572322-a0cf9c00-5a52-11ea-8d96-36afc56c5053.png)
+
+![lcaron-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572323-a0cf9c00-5a52-11ea-989e-87b4c2b747d3.png)
+
+![ldot-slab-Regular](https://user-images.githubusercontent.com/23739434/75572333-a2995f80-5a52-11ea-8f45-bf9a166494bc.png)
+
+![ldot-slab-Italic](https://user-images.githubusercontent.com/23739434/75572332-a2995f80-5a52-11ea-8357-fe6f0cf81ed9.png)
+
+![ldot-slab-Bold](https://user-images.githubusercontent.com/23739434/75572330-a200c900-5a52-11ea-9fe6-abffb7e59953.png)
+
+![ldot-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572331-a200c900-5a52-11ea-9e89-6f7021d794fa.png)
+
+![lslash-slab-Regular](https://user-images.githubusercontent.com/23739434/75572358-a62ce680-5a52-11ea-9c07-f92f2834932e.png)
+
+![lslash-slab-Italic](https://user-images.githubusercontent.com/23739434/75572356-a62ce680-5a52-11ea-8096-e31c49e90291.png)
+
+![lslash-slab-Bold](https://user-images.githubusercontent.com/23739434/75572351-a5945000-5a52-11ea-8684-df020c792c1d.png)
+
+![lslash-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572355-a5945000-5a52-11ea-8307-261908813ae9.png)
+
+![uni013C-slab-Regular](https://user-images.githubusercontent.com/23739434/75572410-afb64e80-5a52-11ea-978b-49223692b40e.png)
+
+![uni013C-slab-Italic](https://user-images.githubusercontent.com/23739434/75572408-afb64e80-5a52-11ea-82fb-ef8780a19dc9.png)
+
+![uni013C-slab-Bold](https://user-images.githubusercontent.com/23739434/75572405-af1db800-5a52-11ea-8ae1-a1f767172d9c.png)
+
+![uni013C-slab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572406-afb64e80-5a52-11ea-8c85-6782fc140792.png)
+
diff --git a/glyphs/l-slab/bold/l.glif b/glyphs/l-slab/bold/l.glif
new file mode 100644
index 0000000..906ffa8
--- /dev/null
+++ b/glyphs/l-slab/bold/l.glif
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bold/lacute.glif b/glyphs/l-slab/bold/lacute.glif
new file mode 100644
index 0000000..248c125
--- /dev/null
+++ b/glyphs/l-slab/bold/lacute.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bold/lcaron.glif b/glyphs/l-slab/bold/lcaron.glif
new file mode 100644
index 0000000..dfc2b24
--- /dev/null
+++ b/glyphs/l-slab/bold/lcaron.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bold/ldot.glif b/glyphs/l-slab/bold/ldot.glif
new file mode 100644
index 0000000..feba580
--- /dev/null
+++ b/glyphs/l-slab/bold/ldot.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bold/lslash.glif b/glyphs/l-slab/bold/lslash.glif
new file mode 100644
index 0000000..f9d4ad8
--- /dev/null
+++ b/glyphs/l-slab/bold/lslash.glif
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bold/uni013C_.glif b/glyphs/l-slab/bold/uni013C_.glif
new file mode 100644
index 0000000..1f5f884
--- /dev/null
+++ b/glyphs/l-slab/bold/uni013C_.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bolditalic/l.glif b/glyphs/l-slab/bolditalic/l.glif
new file mode 100644
index 0000000..091c2ec
--- /dev/null
+++ b/glyphs/l-slab/bolditalic/l.glif
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bolditalic/lacute.glif b/glyphs/l-slab/bolditalic/lacute.glif
new file mode 100644
index 0000000..91b8bd4
--- /dev/null
+++ b/glyphs/l-slab/bolditalic/lacute.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bolditalic/lcaron.glif b/glyphs/l-slab/bolditalic/lcaron.glif
new file mode 100644
index 0000000..c2c6d9a
--- /dev/null
+++ b/glyphs/l-slab/bolditalic/lcaron.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bolditalic/ldot.glif b/glyphs/l-slab/bolditalic/ldot.glif
new file mode 100644
index 0000000..3a9f038
--- /dev/null
+++ b/glyphs/l-slab/bolditalic/ldot.glif
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bolditalic/lslash.glif b/glyphs/l-slab/bolditalic/lslash.glif
new file mode 100644
index 0000000..aec6043
--- /dev/null
+++ b/glyphs/l-slab/bolditalic/lslash.glif
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/bolditalic/uni013C_.glif b/glyphs/l-slab/bolditalic/uni013C_.glif
new file mode 100644
index 0000000..8803fd2
--- /dev/null
+++ b/glyphs/l-slab/bolditalic/uni013C_.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/italic/l.glif b/glyphs/l-slab/italic/l.glif
new file mode 100644
index 0000000..98844ac
--- /dev/null
+++ b/glyphs/l-slab/italic/l.glif
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/italic/lacute.glif b/glyphs/l-slab/italic/lacute.glif
new file mode 100644
index 0000000..211da24
--- /dev/null
+++ b/glyphs/l-slab/italic/lacute.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/italic/lcaron.glif b/glyphs/l-slab/italic/lcaron.glif
new file mode 100644
index 0000000..609c224
--- /dev/null
+++ b/glyphs/l-slab/italic/lcaron.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/italic/ldot.glif b/glyphs/l-slab/italic/ldot.glif
new file mode 100644
index 0000000..c92d7de
--- /dev/null
+++ b/glyphs/l-slab/italic/ldot.glif
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/italic/lslash.glif b/glyphs/l-slab/italic/lslash.glif
new file mode 100644
index 0000000..fff6f50
--- /dev/null
+++ b/glyphs/l-slab/italic/lslash.glif
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/italic/uni013C_.glif b/glyphs/l-slab/italic/uni013C_.glif
new file mode 100644
index 0000000..eef793e
--- /dev/null
+++ b/glyphs/l-slab/italic/uni013C_.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/regular/l.glif b/glyphs/l-slab/regular/l.glif
new file mode 100644
index 0000000..b842650
--- /dev/null
+++ b/glyphs/l-slab/regular/l.glif
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/regular/lacute.glif b/glyphs/l-slab/regular/lacute.glif
new file mode 100644
index 0000000..76aa182
--- /dev/null
+++ b/glyphs/l-slab/regular/lacute.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/regular/lcaron.glif b/glyphs/l-slab/regular/lcaron.glif
new file mode 100644
index 0000000..7e1407d
--- /dev/null
+++ b/glyphs/l-slab/regular/lcaron.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/regular/ldot.glif b/glyphs/l-slab/regular/ldot.glif
new file mode 100644
index 0000000..6a01b53
--- /dev/null
+++ b/glyphs/l-slab/regular/ldot.glif
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/regular/lslash.glif b/glyphs/l-slab/regular/lslash.glif
new file mode 100644
index 0000000..2e02a54
--- /dev/null
+++ b/glyphs/l-slab/regular/lslash.glif
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/l-slab/regular/uni013C_.glif b/glyphs/l-slab/regular/uni013C_.glif
new file mode 100644
index 0000000..9a877f0
--- /dev/null
+++ b/glyphs/l-slab/regular/uni013C_.glif
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/one-noslab/README.md b/glyphs/one-noslab/README.md
new file mode 100644
index 0000000..70732c0
--- /dev/null
+++ b/glyphs/one-noslab/README.md
@@ -0,0 +1,8 @@
+![one-noslab-Regular](https://user-images.githubusercontent.com/23739434/75572365-a75e1380-5a52-11ea-82f8-d0ada608e41c.png)
+
+![one-noslab-Italic](https://user-images.githubusercontent.com/23739434/75572364-a75e1380-5a52-11ea-9143-98e11954b613.png)
+
+![one-noslab-Bold](https://user-images.githubusercontent.com/23739434/75572361-a6c57d00-5a52-11ea-88f0-d31d9f6235ff.png)
+
+![one-noslab-BoldItalic](https://user-images.githubusercontent.com/23739434/75572363-a6c57d00-5a52-11ea-8e5d-1aec07b8f2e3.png)
+
diff --git a/glyphs/u0031-noslab/bold/one.glif b/glyphs/one-noslab/bold/one.glif
similarity index 100%
rename from glyphs/u0031-noslab/bold/one.glif
rename to glyphs/one-noslab/bold/one.glif
diff --git a/glyphs/u0031-noslab/bolditalic/one.glif b/glyphs/one-noslab/bolditalic/one.glif
similarity index 100%
rename from glyphs/u0031-noslab/bolditalic/one.glif
rename to glyphs/one-noslab/bolditalic/one.glif
diff --git a/glyphs/u0031-noslab/italic/one.glif b/glyphs/one-noslab/italic/one.glif
similarity index 100%
rename from glyphs/u0031-noslab/italic/one.glif
rename to glyphs/one-noslab/italic/one.glif
diff --git a/glyphs/u0031-noslab/regular/one.glif b/glyphs/one-noslab/regular/one.glif
similarity index 100%
rename from glyphs/u0031-noslab/regular/one.glif
rename to glyphs/one-noslab/regular/one.glif
diff --git a/glyphs/parentheses-curved/README.md b/glyphs/parentheses-curved/README.md
new file mode 100644
index 0000000..072ab2f
--- /dev/null
+++ b/glyphs/parentheses-curved/README.md
@@ -0,0 +1,16 @@
+![parenleft-curved-Regular](https://user-images.githubusercontent.com/23739434/75572371-a88f4080-5a52-11ea-9c87-bca5a499747e.png)
+
+![parenleft-curved-Italic](https://user-images.githubusercontent.com/23739434/75572370-a88f4080-5a52-11ea-89e8-94004b7f269c.png)
+
+![parenleft-curved-Bold](https://user-images.githubusercontent.com/23739434/75572367-a7f6aa00-5a52-11ea-9cdd-aee46e898235.png)
+
+![parenleft-curved-BoldItalic](https://user-images.githubusercontent.com/23739434/75572369-a7f6aa00-5a52-11ea-8452-f4858a9978d6.png)
+
+![parenright-curved-Regular](https://user-images.githubusercontent.com/23739434/75572384-ab8a3100-5a52-11ea-8d0f-41cd7856e3e6.png)
+
+![parenright-curved-Italic](https://user-images.githubusercontent.com/23739434/75572382-aaf19a80-5a52-11ea-9c8d-b70f3701f52c.png)
+
+![parenright-curved-Bold](https://user-images.githubusercontent.com/23739434/75572379-aa590400-5a52-11ea-887c-badbc13c3e4d.png)
+
+![parenright-curved-BoldItalic](https://user-images.githubusercontent.com/23739434/75572380-aaf19a80-5a52-11ea-9ba9-2b3bb11ad8a9.png)
+
diff --git a/glyphs/u0028-curved/bold/parenleft.glif b/glyphs/parentheses-curved/bold/parenleft.glif
similarity index 100%
rename from glyphs/u0028-curved/bold/parenleft.glif
rename to glyphs/parentheses-curved/bold/parenleft.glif
diff --git a/glyphs/u0029-curved/bold/parenright.glif b/glyphs/parentheses-curved/bold/parenright.glif
similarity index 100%
rename from glyphs/u0029-curved/bold/parenright.glif
rename to glyphs/parentheses-curved/bold/parenright.glif
diff --git a/glyphs/u0028-curved/bolditalic/parenleft.glif b/glyphs/parentheses-curved/bolditalic/parenleft.glif
similarity index 100%
rename from glyphs/u0028-curved/bolditalic/parenleft.glif
rename to glyphs/parentheses-curved/bolditalic/parenleft.glif
diff --git a/glyphs/u0029-curved/bolditalic/parenright.glif b/glyphs/parentheses-curved/bolditalic/parenright.glif
similarity index 100%
rename from glyphs/u0029-curved/bolditalic/parenright.glif
rename to glyphs/parentheses-curved/bolditalic/parenright.glif
diff --git a/glyphs/u0028-curved/italic/parenleft.glif b/glyphs/parentheses-curved/italic/parenleft.glif
similarity index 100%
rename from glyphs/u0028-curved/italic/parenleft.glif
rename to glyphs/parentheses-curved/italic/parenleft.glif
diff --git a/glyphs/u0029-curved/italic/parenright.glif b/glyphs/parentheses-curved/italic/parenright.glif
similarity index 100%
rename from glyphs/u0029-curved/italic/parenright.glif
rename to glyphs/parentheses-curved/italic/parenright.glif
diff --git a/glyphs/u0028-curved/regular/parenleft.glif b/glyphs/parentheses-curved/regular/parenleft.glif
similarity index 100%
rename from glyphs/u0028-curved/regular/parenleft.glif
rename to glyphs/parentheses-curved/regular/parenleft.glif
diff --git a/glyphs/u0029-curved/regular/parenright.glif b/glyphs/parentheses-curved/regular/parenright.glif
similarity index 100%
rename from glyphs/u0029-curved/regular/parenright.glif
rename to glyphs/parentheses-curved/regular/parenright.glif
diff --git a/glyphs/parentheses-rounder/README.md b/glyphs/parentheses-rounder/README.md
new file mode 100644
index 0000000..e01724c
--- /dev/null
+++ b/glyphs/parentheses-rounder/README.md
@@ -0,0 +1,16 @@
+![parenleft-rounder-Regular](https://user-images.githubusercontent.com/23739434/75572376-aa590400-5a52-11ea-8fc9-51d99b0f14e3.png)
+
+![parenleft-rounder-Italic](https://user-images.githubusercontent.com/23739434/75572374-a9c06d80-5a52-11ea-9bd0-2287b3a0a970.png)
+
+![parenleft-rounder-Bold](https://user-images.githubusercontent.com/23739434/75572372-a927d700-5a52-11ea-8bef-e3a6e7f74a6e.png)
+
+![parenleft-rounder-BoldItalic](https://user-images.githubusercontent.com/23739434/75572373-a927d700-5a52-11ea-8cfa-8128a7370e08.png)
+
+![parenright-rounder-Regular](https://user-images.githubusercontent.com/23739434/75572389-ac22c780-5a52-11ea-85da-ed62ccce1699.png)
+
+![parenright-rounder-Italic](https://user-images.githubusercontent.com/23739434/75572388-ac22c780-5a52-11ea-90fb-ec10582dbee6.png)
+
+![parenright-rounder-Bold](https://user-images.githubusercontent.com/23739434/75572385-ab8a3100-5a52-11ea-8f77-3ecfc17e71af.png)
+
+![parenright-rounder-BoldItalic](https://user-images.githubusercontent.com/23739434/75572386-ab8a3100-5a52-11ea-948c-6b5a34ecbd6c.png)
+
diff --git a/glyphs/u0028-rounder/bold/parenleft.glif b/glyphs/parentheses-rounder/bold/parenleft.glif
similarity index 100%
rename from glyphs/u0028-rounder/bold/parenleft.glif
rename to glyphs/parentheses-rounder/bold/parenleft.glif
diff --git a/glyphs/u0029-rounder/bold/parenright.glif b/glyphs/parentheses-rounder/bold/parenright.glif
similarity index 100%
rename from glyphs/u0029-rounder/bold/parenright.glif
rename to glyphs/parentheses-rounder/bold/parenright.glif
diff --git a/glyphs/u0028-rounder/bolditalic/parenleft.glif b/glyphs/parentheses-rounder/bolditalic/parenleft.glif
similarity index 100%
rename from glyphs/u0028-rounder/bolditalic/parenleft.glif
rename to glyphs/parentheses-rounder/bolditalic/parenleft.glif
diff --git a/glyphs/u0029-rounder/bolditalic/parenright.glif b/glyphs/parentheses-rounder/bolditalic/parenright.glif
similarity index 100%
rename from glyphs/u0029-rounder/bolditalic/parenright.glif
rename to glyphs/parentheses-rounder/bolditalic/parenright.glif
diff --git a/glyphs/u0028-rounder/italic/parenleft.glif b/glyphs/parentheses-rounder/italic/parenleft.glif
similarity index 100%
rename from glyphs/u0028-rounder/italic/parenleft.glif
rename to glyphs/parentheses-rounder/italic/parenleft.glif
diff --git a/glyphs/u0029-rounder/italic/parenright.glif b/glyphs/parentheses-rounder/italic/parenright.glif
similarity index 100%
rename from glyphs/u0029-rounder/italic/parenright.glif
rename to glyphs/parentheses-rounder/italic/parenright.glif
diff --git a/glyphs/u0028-rounder/regular/parenleft.glif b/glyphs/parentheses-rounder/regular/parenleft.glif
similarity index 100%
rename from glyphs/u0028-rounder/regular/parenleft.glif
rename to glyphs/parentheses-rounder/regular/parenleft.glif
diff --git a/glyphs/u0029-rounder/regular/parenright.glif b/glyphs/parentheses-rounder/regular/parenright.glif
similarity index 100%
rename from glyphs/u0029-rounder/regular/parenright.glif
rename to glyphs/parentheses-rounder/regular/parenright.glif
diff --git a/glyphs/percent-traditional/README.md b/glyphs/percent-traditional/README.md
new file mode 100644
index 0000000..b1af1a2
--- /dev/null
+++ b/glyphs/percent-traditional/README.md
@@ -0,0 +1,8 @@
+![percent-traditional-Regular](https://user-images.githubusercontent.com/23739434/75572396-ad53f480-5a52-11ea-8510-69b03a0bacf8.png)
+
+![percent-traditional-Italic](https://user-images.githubusercontent.com/23739434/75572395-ad53f480-5a52-11ea-879f-2e7b268ffa04.png)
+
+![percent-traditional-Bold](https://user-images.githubusercontent.com/23739434/75572393-acbb5e00-5a52-11ea-8de1-ad60f806b0fd.png)
+
+![percent-traditional-BoldItalic](https://user-images.githubusercontent.com/23739434/75572394-acbb5e00-5a52-11ea-8b13-0e9e4af867c6.png)
+
diff --git a/glyphs/percent-traditional/bold/percent.glif b/glyphs/percent-traditional/bold/percent.glif
new file mode 100644
index 0000000..a6ebb53
--- /dev/null
+++ b/glyphs/percent-traditional/bold/percent.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/percent-traditional/bolditalic/percent.glif b/glyphs/percent-traditional/bolditalic/percent.glif
new file mode 100644
index 0000000..332c7de
--- /dev/null
+++ b/glyphs/percent-traditional/bolditalic/percent.glif
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/percent-traditional/italic/percent.glif b/glyphs/percent-traditional/italic/percent.glif
new file mode 100644
index 0000000..c0fa749
--- /dev/null
+++ b/glyphs/percent-traditional/italic/percent.glif
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/percent-traditional/regular/percent.glif b/glyphs/percent-traditional/regular/percent.glif
new file mode 100644
index 0000000..65d1fc7
--- /dev/null
+++ b/glyphs/percent-traditional/regular/percent.glif
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/glyphs/square-brackets-oldv3/README.md b/glyphs/square-brackets-oldv3/README.md
new file mode 100644
index 0000000..16159ec
--- /dev/null
+++ b/glyphs/square-brackets-oldv3/README.md
@@ -0,0 +1,16 @@
+![bracketleft-oldv3-Regular](https://user-images.githubusercontent.com/23739434/75572172-8990ae80-5a52-11ea-89c1-d5e9f3ca7c97.png)
+
+![bracketleft-oldv3-Italic](https://user-images.githubusercontent.com/23739434/75572170-88f81800-5a52-11ea-9c56-11148687597c.png)
+
+![bracketleft-oldv3-Bold](https://user-images.githubusercontent.com/23739434/75572167-885f8180-5a52-11ea-98b1-d38de2c16ec9.png)
+
+![bracketleft-oldv3-BoldItalic](https://user-images.githubusercontent.com/23739434/75572169-88f81800-5a52-11ea-82dd-e8efba792e72.png)
+
+![bracketright-oldv3-Regular](https://user-images.githubusercontent.com/23739434/75572179-8ac1db80-5a52-11ea-9214-4df9651949ed.png)
+
+![bracketright-oldv3-Italic](https://user-images.githubusercontent.com/23739434/75572177-8a294500-5a52-11ea-8fa9-ed753ceb4486.png)
+
+![bracketright-oldv3-Bold](https://user-images.githubusercontent.com/23739434/75572175-8a294500-5a52-11ea-9132-7fe91bae6fe4.png)
+
+![bracketright-oldv3-BoldItalic](https://user-images.githubusercontent.com/23739434/75572176-8a294500-5a52-11ea-9a79-b2f7606a3447.png)
+
diff --git a/glyphs/u005B-oldv3/bold/bracketleft.glif b/glyphs/square-brackets-oldv3/bold/bracketleft.glif
similarity index 100%
rename from glyphs/u005B-oldv3/bold/bracketleft.glif
rename to glyphs/square-brackets-oldv3/bold/bracketleft.glif
diff --git a/glyphs/u005D-oldv3/bold/bracketright.glif b/glyphs/square-brackets-oldv3/bold/bracketright.glif
similarity index 100%
rename from glyphs/u005D-oldv3/bold/bracketright.glif
rename to glyphs/square-brackets-oldv3/bold/bracketright.glif
diff --git a/glyphs/u005B-oldv3/bolditalic/bracketleft.glif b/glyphs/square-brackets-oldv3/bolditalic/bracketleft.glif
similarity index 100%
rename from glyphs/u005B-oldv3/bolditalic/bracketleft.glif
rename to glyphs/square-brackets-oldv3/bolditalic/bracketleft.glif
diff --git a/glyphs/u005D-oldv3/bolditalic/bracketright.glif b/glyphs/square-brackets-oldv3/bolditalic/bracketright.glif
similarity index 100%
rename from glyphs/u005D-oldv3/bolditalic/bracketright.glif
rename to glyphs/square-brackets-oldv3/bolditalic/bracketright.glif
diff --git a/glyphs/u005B-oldv3/italic/bracketleft.glif b/glyphs/square-brackets-oldv3/italic/bracketleft.glif
similarity index 100%
rename from glyphs/u005B-oldv3/italic/bracketleft.glif
rename to glyphs/square-brackets-oldv3/italic/bracketleft.glif
diff --git a/glyphs/u005D-oldv3/italic/bracketright.glif b/glyphs/square-brackets-oldv3/italic/bracketright.glif
similarity index 100%
rename from glyphs/u005D-oldv3/italic/bracketright.glif
rename to glyphs/square-brackets-oldv3/italic/bracketright.glif
diff --git a/glyphs/u005B-oldv3/regular/bracketleft.glif b/glyphs/square-brackets-oldv3/regular/bracketleft.glif
similarity index 100%
rename from glyphs/u005B-oldv3/regular/bracketleft.glif
rename to glyphs/square-brackets-oldv3/regular/bracketleft.glif
diff --git a/glyphs/u005D-oldv3/regular/bracketright.glif b/glyphs/square-brackets-oldv3/regular/bracketright.glif
similarity index 100%
rename from glyphs/u005D-oldv3/regular/bracketright.glif
rename to glyphs/square-brackets-oldv3/regular/bracketright.glif
diff --git a/glyphs/three-flattop/README.md b/glyphs/three-flattop/README.md
new file mode 100644
index 0000000..903aed3
--- /dev/null
+++ b/glyphs/three-flattop/README.md
@@ -0,0 +1,8 @@
+![three-flattop-Regular](https://user-images.githubusercontent.com/23739434/75572402-ae852180-5a52-11ea-9d88-2b67b2cc34c0.png)
+
+![three-flattop-Italic](https://user-images.githubusercontent.com/23739434/75572401-ae852180-5a52-11ea-9bab-d9f47522e340.png)
+
+![three-flattop-Bold](https://user-images.githubusercontent.com/23739434/75572398-adec8b00-5a52-11ea-82e2-8c0b4f80b497.png)
+
+![three-flattop-BoldItalic](https://user-images.githubusercontent.com/23739434/75572400-adec8b00-5a52-11ea-89d1-1772b5628e12.png)
+
diff --git a/glyphs/u0033-flattop/bold/three.glif b/glyphs/three-flattop/bold/three.glif
similarity index 100%
rename from glyphs/u0033-flattop/bold/three.glif
rename to glyphs/three-flattop/bold/three.glif
diff --git a/glyphs/u0033-flattop/bolditalic/three.glif b/glyphs/three-flattop/bolditalic/three.glif
similarity index 100%
rename from glyphs/u0033-flattop/bolditalic/three.glif
rename to glyphs/three-flattop/bolditalic/three.glif
diff --git a/glyphs/u0033-flattop/italic/three.glif b/glyphs/three-flattop/italic/three.glif
similarity index 100%
rename from glyphs/u0033-flattop/italic/three.glif
rename to glyphs/three-flattop/italic/three.glif
diff --git a/glyphs/u0033-flattop/regular/three.glif b/glyphs/three-flattop/regular/three.glif
similarity index 100%
rename from glyphs/u0033-flattop/regular/three.glif
rename to glyphs/three-flattop/regular/three.glif
diff --git a/glyphs/u0028-curved/README.md b/glyphs/u0028-curved/README.md
deleted file mode 100644
index 646a5fe..0000000
--- a/glyphs/u0028-curved/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/glyphs/u0028-rounder/README.md b/glyphs/u0028-rounder/README.md
deleted file mode 100644
index d4e2a59..0000000
--- a/glyphs/u0028-rounder/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/glyphs/u0029-curved/README.md b/glyphs/u0029-curved/README.md
deleted file mode 100644
index bbd2836..0000000
--- a/glyphs/u0029-curved/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/glyphs/u0029-rounder/README.md b/glyphs/u0029-rounder/README.md
deleted file mode 100644
index f8534d3..0000000
--- a/glyphs/u0029-rounder/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/glyphs/u0030-backslash/README.md b/glyphs/u0030-backslash/README.md
deleted file mode 100644
index 1b5ccc2..0000000
--- a/glyphs/u0030-backslash/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/glyphs/u0030-diamond/README.md b/glyphs/u0030-diamond/README.md
deleted file mode 100644
index 74ac465..0000000
--- a/glyphs/u0030-diamond/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/glyphs/u0030-dotted/README.md b/glyphs/u0030-dotted/README.md
deleted file mode 100644
index 8262c2c..0000000
--- a/glyphs/u0030-dotted/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/glyphs/u0030-forwardslash/README.md b/glyphs/u0030-forwardslash/README.md
deleted file mode 100644
index b0cab1b..0000000
--- a/glyphs/u0030-forwardslash/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/glyphs/u0031-noslab/README.md b/glyphs/u0031-noslab/README.md
deleted file mode 100644
index 9feb148..0000000
--- a/glyphs/u0031-noslab/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/glyphs/u0033-flattop/README.MD b/glyphs/u0033-flattop/README.MD
deleted file mode 100644
index cd44c5c..0000000
--- a/glyphs/u0033-flattop/README.MD
+++ /dev/null
@@ -1,8 +0,0 @@
-![r](https://user-images.githubusercontent.com/6161120/41245215-ddf49f7a-6dc0-11e8-8607-f72eefff789e.png)
-
-![i](https://user-images.githubusercontent.com/6161120/41245214-ddcdb356-6dc0-11e8-98ac-2e0ffbf22638.png)
-
-![b](https://user-images.githubusercontent.com/6161120/41245212-dd729ade-6dc0-11e8-9e9f-bf317caa9268.png)
-
-![bi](https://user-images.githubusercontent.com/6161120/41245213-dda6ace8-6dc0-11e8-8061-77b7dde742fb.png)
-
diff --git a/glyphs/u003C-wider/README.md b/glyphs/u003C-wider/README.md
deleted file mode 100644
index f3bb9a5..0000000
--- a/glyphs/u003C-wider/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/glyphs/u003E-wider/README.md b/glyphs/u003E-wider/README.md
deleted file mode 100644
index a31c175..0000000
--- a/glyphs/u003E-wider/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/glyphs/u0066-knife/README.md b/glyphs/u0066-knife/README.md
deleted file mode 100644
index b1ac876..0000000
--- a/glyphs/u0066-knife/README.md
+++ /dev/null
@@ -1,18 +0,0 @@
-Regular:
-
-
-
-Italic:
-
-
-
-Bold:
-
-
-
-Bold Italic:
-
-
-
-Author:
-David van Gemeren <@burodepeper>
diff --git a/glyphs/u0069-slab/README.md b/glyphs/u0069-slab/README.md
deleted file mode 100644
index b043263..0000000
--- a/glyphs/u0069-slab/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
diff --git a/glyphs/u00EC-slab/README.md b/glyphs/u00EC-slab/README.md
deleted file mode 100644
index 08ef171..0000000
--- a/glyphs/u00EC-slab/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/glyphs/u00ED-slab/README.md b/glyphs/u00ED-slab/README.md
deleted file mode 100644
index 2f476d5..0000000
--- a/glyphs/u00ED-slab/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/glyphs/u00EE-slab/README.md b/glyphs/u00EE-slab/README.md
deleted file mode 100644
index eec3d49..0000000
--- a/glyphs/u00EE-slab/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/glyphs/u00EF-slab/README.md b/glyphs/u00EF-slab/README.md
deleted file mode 100644
index 6cbbc09..0000000
--- a/glyphs/u00EF-slab/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/glyphs/u0129-slab/README.md b/glyphs/u0129-slab/README.md
deleted file mode 100644
index fb04b33..0000000
--- a/glyphs/u0129-slab/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/glyphs/u012B-slab/README.md b/glyphs/u012B-slab/README.md
deleted file mode 100644
index 4d54f21..0000000
--- a/glyphs/u012B-slab/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/glyphs/u012D-slab/README.md b/glyphs/u012D-slab/README.md
deleted file mode 100644
index eafd3a1..0000000
--- a/glyphs/u012D-slab/README.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/glyphs/u012F-slab/README.md b/glyphs/u012F-slab/README.md
deleted file mode 100644
index 1fe85d5..0000000
--- a/glyphs/u012F-slab/README.md
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/glyphs/u0131-slab/README.md b/glyphs/u0131-slab/README.md
deleted file mode 100644
index e5e3d66..0000000
--- a/glyphs/u0131-slab/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/glyphs/u0456-slab/README.md b/glyphs/u0456-slab/README.md
deleted file mode 100644
index 179d6e3..0000000
--- a/glyphs/u0456-slab/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/glyphs/u0457-slab/README.md b/glyphs/u0457-slab/README.md
deleted file mode 100644
index 9912f0f..0000000
--- a/glyphs/u0457-slab/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/glyphs/zero-backslash/README.md b/glyphs/zero-backslash/README.md
new file mode 100644
index 0000000..e7d05b7
--- /dev/null
+++ b/glyphs/zero-backslash/README.md
@@ -0,0 +1,8 @@
+![zero-backslash-Regular](https://user-images.githubusercontent.com/23739434/75572435-b5139900-5a52-11ea-8e1a-c76869842da1.png)
+
+![zero-backslash-Italic](https://user-images.githubusercontent.com/23739434/75572433-b47b0280-5a52-11ea-80da-52d2b75bd5ac.png)
+
+![zero-backslash-Bold](https://user-images.githubusercontent.com/23739434/75572431-b47b0280-5a52-11ea-9ffe-c3fc247e5f63.png)
+
+![zero-backslash-BoldItalic](https://user-images.githubusercontent.com/23739434/75572432-b47b0280-5a52-11ea-8d9e-9863cba5817f.png)
+
diff --git a/glyphs/u0030-backslash/bold/zero.glif b/glyphs/zero-backslash/bold/zero.glif
similarity index 100%
rename from glyphs/u0030-backslash/bold/zero.glif
rename to glyphs/zero-backslash/bold/zero.glif
diff --git a/glyphs/u0030-backslash/bolditalic/zero.glif b/glyphs/zero-backslash/bolditalic/zero.glif
similarity index 100%
rename from glyphs/u0030-backslash/bolditalic/zero.glif
rename to glyphs/zero-backslash/bolditalic/zero.glif
diff --git a/glyphs/u0030-backslash/italic/zero.glif b/glyphs/zero-backslash/italic/zero.glif
similarity index 100%
rename from glyphs/u0030-backslash/italic/zero.glif
rename to glyphs/zero-backslash/italic/zero.glif
diff --git a/glyphs/u0030-backslash/regular/zero.glif b/glyphs/zero-backslash/regular/zero.glif
similarity index 100%
rename from glyphs/u0030-backslash/regular/zero.glif
rename to glyphs/zero-backslash/regular/zero.glif
diff --git a/glyphs/zero-diamond/README.md b/glyphs/zero-diamond/README.md
new file mode 100644
index 0000000..5f6ef7c
--- /dev/null
+++ b/glyphs/zero-diamond/README.md
@@ -0,0 +1,8 @@
+![zero-diamond-Regular](https://user-images.githubusercontent.com/23739434/75572441-b5ac2f80-5a52-11ea-9b15-5997a0ab3949.png)
+
+![zero-diamond-Italic](https://user-images.githubusercontent.com/23739434/75572440-b5ac2f80-5a52-11ea-9210-348889fa76ee.png)
+
+![zero-diamond-Bold](https://user-images.githubusercontent.com/23739434/75572437-b5139900-5a52-11ea-87f8-0de8dc5be598.png)
+
+![zero-diamond-BoldItalic](https://user-images.githubusercontent.com/23739434/75572438-b5ac2f80-5a52-11ea-8375-10552ac9c6b4.png)
+
diff --git a/glyphs/u0030-diamond/bold/zero.glif b/glyphs/zero-diamond/bold/zero.glif
similarity index 100%
rename from glyphs/u0030-diamond/bold/zero.glif
rename to glyphs/zero-diamond/bold/zero.glif
diff --git a/glyphs/u0030-diamond/bolditalic/zero.glif b/glyphs/zero-diamond/bolditalic/zero.glif
similarity index 100%
rename from glyphs/u0030-diamond/bolditalic/zero.glif
rename to glyphs/zero-diamond/bolditalic/zero.glif
diff --git a/glyphs/u0030-diamond/italic/zero.glif b/glyphs/zero-diamond/italic/zero.glif
similarity index 100%
rename from glyphs/u0030-diamond/italic/zero.glif
rename to glyphs/zero-diamond/italic/zero.glif
diff --git a/glyphs/u0030-diamond/regular/zero.glif b/glyphs/zero-diamond/regular/zero.glif
similarity index 100%
rename from glyphs/u0030-diamond/regular/zero.glif
rename to glyphs/zero-diamond/regular/zero.glif
diff --git a/glyphs/zero-dotted/README.md b/glyphs/zero-dotted/README.md
new file mode 100644
index 0000000..7a9ee6f
--- /dev/null
+++ b/glyphs/zero-dotted/README.md
@@ -0,0 +1,8 @@
+![zero-dotted-Regular](https://user-images.githubusercontent.com/23739434/75572447-b6dd5c80-5a52-11ea-952c-813d4d35f430.png)
+
+![zero-dotted-Italic](https://user-images.githubusercontent.com/23739434/75572445-b6dd5c80-5a52-11ea-87eb-1675fa697864.png)
+
+![zero-dotted-Bold](https://user-images.githubusercontent.com/23739434/75572442-b644c600-5a52-11ea-9f05-af1e719d57ff.png)
+
+![zero-dotted-BoldItalic](https://user-images.githubusercontent.com/23739434/75572443-b644c600-5a52-11ea-925c-80704b8221e6.png)
+
diff --git a/glyphs/u0030-dotted/bold/zero.glif b/glyphs/zero-dotted/bold/zero.glif
similarity index 100%
rename from glyphs/u0030-dotted/bold/zero.glif
rename to glyphs/zero-dotted/bold/zero.glif
diff --git a/glyphs/u0030-dotted/bolditalic/zero.glif b/glyphs/zero-dotted/bolditalic/zero.glif
similarity index 100%
rename from glyphs/u0030-dotted/bolditalic/zero.glif
rename to glyphs/zero-dotted/bolditalic/zero.glif
diff --git a/glyphs/u0030-dotted/italic/zero.glif b/glyphs/zero-dotted/italic/zero.glif
similarity index 100%
rename from glyphs/u0030-dotted/italic/zero.glif
rename to glyphs/zero-dotted/italic/zero.glif
diff --git a/glyphs/u0030-dotted/regular/zero.glif b/glyphs/zero-dotted/regular/zero.glif
similarity index 100%
rename from glyphs/u0030-dotted/regular/zero.glif
rename to glyphs/zero-dotted/regular/zero.glif
diff --git a/glyphs/zero-forwardslash/README.md b/glyphs/zero-forwardslash/README.md
new file mode 100644
index 0000000..3651cb1
--- /dev/null
+++ b/glyphs/zero-forwardslash/README.md
@@ -0,0 +1,8 @@
+![zero-forwardslash-Regular](https://user-images.githubusercontent.com/23739434/75572456-b80e8980-5a52-11ea-9bf8-d48d11831a0a.png)
+
+![zero-forwardslash-Italic](https://user-images.githubusercontent.com/23739434/75572455-b80e8980-5a52-11ea-9b46-8d74746ba9cf.png)
+
+![zero-forwardslash-Bold](https://user-images.githubusercontent.com/23739434/75572450-b775f300-5a52-11ea-8ac8-49ef980329be.png)
+
+![zero-forwardslash-BoldItalic](https://user-images.githubusercontent.com/23739434/75572453-b775f300-5a52-11ea-8901-5911f3d309ed.png)
+
diff --git a/glyphs/u0030-forwardslash/bold/zero.glif b/glyphs/zero-forwardslash/bold/zero.glif
similarity index 100%
rename from glyphs/u0030-forwardslash/bold/zero.glif
rename to glyphs/zero-forwardslash/bold/zero.glif
diff --git a/glyphs/u0030-forwardslash/bolditalic/zero.glif b/glyphs/zero-forwardslash/bolditalic/zero.glif
similarity index 100%
rename from glyphs/u0030-forwardslash/bolditalic/zero.glif
rename to glyphs/zero-forwardslash/bolditalic/zero.glif
diff --git a/glyphs/u0030-forwardslash/italic/zero.glif b/glyphs/zero-forwardslash/italic/zero.glif
similarity index 100%
rename from glyphs/u0030-forwardslash/italic/zero.glif
rename to glyphs/zero-forwardslash/italic/zero.glif
diff --git a/glyphs/u0030-forwardslash/regular/zero.glif b/glyphs/zero-forwardslash/regular/zero.glif
similarity index 100%
rename from glyphs/u0030-forwardslash/regular/zero.glif
rename to glyphs/zero-forwardslash/regular/zero.glif
diff --git a/patch-hack.sh b/patch-hack.sh
index 76fa7ba..8cffe1c 100755
--- a/patch-hack.sh
+++ b/patch-hack.sh
@@ -6,31 +6,41 @@
# Source: https://github.com/source-foundry/alt-hack
# ---------------------------------------------------
-# 1. Set the path to the downloaded Hack repo here first
-HACK_PATH=""
+# 1. Set the path to the downloaded Hack repo, or set HACK_PATH environment variable
+HACK_PATH="${HACK_PATH:=""}"
-# 2. List your alternate glyphs here
+# 2. List your alternate glyphs here, or specify them on the command line
declare -a alternates=(
- "u00EC-slab"
- "u00ED-slab"
- "u00EF-slab"
- "u012B-slab"
- "u012D-slab"
- "u012F-slab"
- "u0030-diamond"
- "u0069-slab"
- "u0129-slab"
- "u0131-slab"
- "u0456-slab"
- "u0457-slab"
+ "ampersand-nogap"
+# "angle-brackets-wider"
+# "f-knife"
+ "g-loop"
+ "i-slab"
+ "l-slab"
+ "one-noslab"
+# "parentheses-curved"
+ "parentheses-rounder"
+ "percent-traditional"
+# "square-brackets-oldv3"
+# "three-flattop"
+# "zero-dotted"
+ "zero-forwardslash"
+# "zero-backslash"
+# "zero-diamond"
)
# 3. Run this script and enjoy!
# ------------------------------------------------------------------------------------------------ #
-if [ -z $HACK_PATH ]; then
- echo "❌ Set the HACK_PATH variable in this script to your downloaded Hack repo root."
+# If arguments provided, use them as alternates instead
+if [ $# -gt 0 ]; then
+ alternates=("$@")
+fi
+
+if [ -z "$HACK_PATH" ]; then
+ echo "❌ Set the HACK_PATH variable in this script or via an environment variable to your"\
+ "downloaded Hack repo root."
exit 1
fi
@@ -44,14 +54,22 @@ do
lowercaseStyle=$(echo "$style" | tr '[:upper:]' '[:lower:]')
alternatePath="./glyphs/${alternate}/${lowercaseStyle}"
- if ! cp "$alternatePath"/*.glif "$stylePath"; then
+ if ! cp "${alternatePath}"/*.glif "${stylePath}"; then
echo "❌ Aborting patching of Hack, check errors above."
exit 1
fi
+
+ # Extract the unicode hex values from each glif
+ while read -r hexcode
+ do
+ # Remove hinting of patched glyphs
+ sed -i "s/^\(uni${hexcode}\)/#\1/" \
+ "${HACK_PATH}"/postbuild_processing/tt-hinting/Hack-"${style}"-TA.txt
+ done < <(grep "unicode hex=" "${alternatePath}"/*.glif | sed 's/.*"\(.*\)".*/\1/' | sort -u)
done
- echo "✅ Patched $alternate"
+ echo "✅ Patched ${alternate}"
done
echo
-echo "All done! Now go to the Hack repo and build the font files."
\ No newline at end of file
+echo "All done! Now go to the Hack repo and build the font files."
diff --git a/prebuilt/hack-droid/HackDroid-Bold.ttf b/prebuilt/hack-droid/HackDroid-Bold.ttf
new file mode 100644
index 0000000..a72af52
Binary files /dev/null and b/prebuilt/hack-droid/HackDroid-Bold.ttf differ
diff --git a/prebuilt/hack-droid/HackDroid-BoldItalic.ttf b/prebuilt/hack-droid/HackDroid-BoldItalic.ttf
new file mode 100644
index 0000000..2dcd327
Binary files /dev/null and b/prebuilt/hack-droid/HackDroid-BoldItalic.ttf differ
diff --git a/prebuilt/hack-droid/HackDroid-Italic.ttf b/prebuilt/hack-droid/HackDroid-Italic.ttf
new file mode 100644
index 0000000..f606c8a
Binary files /dev/null and b/prebuilt/hack-droid/HackDroid-Italic.ttf differ
diff --git a/prebuilt/hack-droid/HackDroid-Regular.ttf b/prebuilt/hack-droid/HackDroid-Regular.ttf
new file mode 100644
index 0000000..d3d659c
Binary files /dev/null and b/prebuilt/hack-droid/HackDroid-Regular.ttf differ
diff --git a/prebuilt/hack-droid/README.md b/prebuilt/hack-droid/README.md
new file mode 100644
index 0000000..c6d5606
--- /dev/null
+++ b/prebuilt/hack-droid/README.md
@@ -0,0 +1,17 @@
+Designed to mimic the feel of Droid Sans Mono with the awesome extras of Hack.
+
+Modifications applied: `ampersand-nogap` `g-loop` `i-slab` `l-slab` `one-noslab` `parentheses-rounder` `percent-traditional` `zero-forwardslash`
+
+Font renamed to `Hack Droid`.
+
+Hack (original):
+
+![hack-sample](https://user-images.githubusercontent.com/23739434/75803136-d38cd380-5d75-11ea-9b9b-4a09642447e9.png)
+
+Droid Sans Mono:
+
+![droid-sans-mono-sample](https://user-images.githubusercontent.com/23739434/75803134-d2f43d00-5d75-11ea-96d5-728bf249d930.png)
+
+Hack Droid:
+
+![hackdroid-sample](https://user-images.githubusercontent.com/23739434/75803135-d38cd380-5d75-11ea-8edf-5fb1cc1b5eda.png)
diff --git a/prebuilt/zero-dotted-slabs/Hack-Bold.ttf b/prebuilt/zero-dotted-slabs/Hack-Bold.ttf
new file mode 100644
index 0000000..ae31c8c
Binary files /dev/null and b/prebuilt/zero-dotted-slabs/Hack-Bold.ttf differ
diff --git a/prebuilt/zero-dotted-slabs/Hack-BoldItalic.ttf b/prebuilt/zero-dotted-slabs/Hack-BoldItalic.ttf
new file mode 100644
index 0000000..2afd723
Binary files /dev/null and b/prebuilt/zero-dotted-slabs/Hack-BoldItalic.ttf differ
diff --git a/prebuilt/zero-dotted-slabs/Hack-Italic.ttf b/prebuilt/zero-dotted-slabs/Hack-Italic.ttf
new file mode 100644
index 0000000..00798ad
Binary files /dev/null and b/prebuilt/zero-dotted-slabs/Hack-Italic.ttf differ
diff --git a/prebuilt/zero-dotted-slabs/Hack-Regular.ttf b/prebuilt/zero-dotted-slabs/Hack-Regular.ttf
new file mode 100644
index 0000000..053287a
Binary files /dev/null and b/prebuilt/zero-dotted-slabs/Hack-Regular.ttf differ
diff --git a/prebuilt/zero-dotted-slabs/README.md b/prebuilt/zero-dotted-slabs/README.md
new file mode 100644
index 0000000..031d253
--- /dev/null
+++ b/prebuilt/zero-dotted-slabs/README.md
@@ -0,0 +1,9 @@
+Modifications applied: `i-slab` `l-slab` `one-noslab` `zero-dotted`
+
+Hack (original):
+
+![hack-sample](https://user-images.githubusercontent.com/23739434/75803136-d38cd380-5d75-11ea-9b9b-4a09642447e9.png)
+
+Variation:
+
+![zero-dotted-slabs-sample](https://user-images.githubusercontent.com/23739434/75803139-d4256a00-5d75-11ea-9920-695ae71a02be.png)
diff --git a/prebuilt/zero-dotted/Hack-Bold.ttf b/prebuilt/zero-dotted/Hack-Bold.ttf
new file mode 100644
index 0000000..1b54fcb
Binary files /dev/null and b/prebuilt/zero-dotted/Hack-Bold.ttf differ
diff --git a/prebuilt/zero-dotted/Hack-BoldItalic.ttf b/prebuilt/zero-dotted/Hack-BoldItalic.ttf
new file mode 100644
index 0000000..6095670
Binary files /dev/null and b/prebuilt/zero-dotted/Hack-BoldItalic.ttf differ
diff --git a/prebuilt/zero-dotted/Hack-Italic.ttf b/prebuilt/zero-dotted/Hack-Italic.ttf
new file mode 100644
index 0000000..4f86cee
Binary files /dev/null and b/prebuilt/zero-dotted/Hack-Italic.ttf differ
diff --git a/prebuilt/zero-dotted/Hack-Regular.ttf b/prebuilt/zero-dotted/Hack-Regular.ttf
new file mode 100644
index 0000000..e591859
Binary files /dev/null and b/prebuilt/zero-dotted/Hack-Regular.ttf differ
diff --git a/prebuilt/zero-dotted/README.md b/prebuilt/zero-dotted/README.md
new file mode 100644
index 0000000..38d5c70
--- /dev/null
+++ b/prebuilt/zero-dotted/README.md
@@ -0,0 +1,9 @@
+Modifications applied: `zero-dotted`
+
+Hack (original):
+
+![hack-sample](https://user-images.githubusercontent.com/23739434/75803136-d38cd380-5d75-11ea-9b9b-4a09642447e9.png)
+
+Variation:
+
+![zero-dotted-sample](https://user-images.githubusercontent.com/23739434/75803137-d4256a00-5d75-11ea-90b5-222e2825600e.png)
diff --git a/prebuilt/zero-forwardslash-slabs/Hack-Bold.ttf b/prebuilt/zero-forwardslash-slabs/Hack-Bold.ttf
new file mode 100644
index 0000000..630267c
Binary files /dev/null and b/prebuilt/zero-forwardslash-slabs/Hack-Bold.ttf differ
diff --git a/prebuilt/zero-forwardslash-slabs/Hack-BoldItalic.ttf b/prebuilt/zero-forwardslash-slabs/Hack-BoldItalic.ttf
new file mode 100644
index 0000000..4be5294
Binary files /dev/null and b/prebuilt/zero-forwardslash-slabs/Hack-BoldItalic.ttf differ
diff --git a/prebuilt/zero-forwardslash-slabs/Hack-Italic.ttf b/prebuilt/zero-forwardslash-slabs/Hack-Italic.ttf
new file mode 100644
index 0000000..90860d3
Binary files /dev/null and b/prebuilt/zero-forwardslash-slabs/Hack-Italic.ttf differ
diff --git a/prebuilt/zero-forwardslash-slabs/Hack-Regular.ttf b/prebuilt/zero-forwardslash-slabs/Hack-Regular.ttf
new file mode 100644
index 0000000..648c871
Binary files /dev/null and b/prebuilt/zero-forwardslash-slabs/Hack-Regular.ttf differ
diff --git a/prebuilt/zero-forwardslash-slabs/README.md b/prebuilt/zero-forwardslash-slabs/README.md
new file mode 100644
index 0000000..6c5fae2
--- /dev/null
+++ b/prebuilt/zero-forwardslash-slabs/README.md
@@ -0,0 +1,9 @@
+Modifications applied: `i-slab` `l-slab` `one-noslab` `zero-forwardslash`
+
+Hack (original):
+
+![hack-sample](https://user-images.githubusercontent.com/23739434/75803136-d38cd380-5d75-11ea-9b9b-4a09642447e9.png)
+
+Variation:
+
+![zero-forwardslash-slabs-sample](https://user-images.githubusercontent.com/23739434/75803142-d4be0080-5d75-11ea-9648-40a6a5224c75.png)
diff --git a/prebuilt/zero-forwardslash/Hack-Bold.ttf b/prebuilt/zero-forwardslash/Hack-Bold.ttf
new file mode 100644
index 0000000..c5647e2
Binary files /dev/null and b/prebuilt/zero-forwardslash/Hack-Bold.ttf differ
diff --git a/prebuilt/zero-forwardslash/Hack-BoldItalic.ttf b/prebuilt/zero-forwardslash/Hack-BoldItalic.ttf
new file mode 100644
index 0000000..f00af4a
Binary files /dev/null and b/prebuilt/zero-forwardslash/Hack-BoldItalic.ttf differ
diff --git a/prebuilt/zero-forwardslash/Hack-Italic.ttf b/prebuilt/zero-forwardslash/Hack-Italic.ttf
new file mode 100644
index 0000000..221e4d6
Binary files /dev/null and b/prebuilt/zero-forwardslash/Hack-Italic.ttf differ
diff --git a/prebuilt/zero-forwardslash/Hack-Regular.ttf b/prebuilt/zero-forwardslash/Hack-Regular.ttf
new file mode 100644
index 0000000..1fd36c3
Binary files /dev/null and b/prebuilt/zero-forwardslash/Hack-Regular.ttf differ
diff --git a/prebuilt/zero-forwardslash/README.md b/prebuilt/zero-forwardslash/README.md
new file mode 100644
index 0000000..4bd3e51
--- /dev/null
+++ b/prebuilt/zero-forwardslash/README.md
@@ -0,0 +1,9 @@
+Modifications applied: `zero-forwardslash`
+
+Hack (original):
+
+![hack-sample](https://user-images.githubusercontent.com/23739434/75803136-d38cd380-5d75-11ea-9b9b-4a09642447e9.png)
+
+Variation:
+
+![zero-forwardslash-sample](https://user-images.githubusercontent.com/23739434/75803140-d4256a00-5d75-11ea-95a9-965c4bee6f4e.png)